diff --git a/Makefile b/Makefile index d01eb42bc..f6a1ecc49 100644 --- a/Makefile +++ b/Makefile @@ -59,7 +59,7 @@ C = $(wildcard *.c) $(wildcard *.cpp) INCLUDES = -I/usr/local/include -I. -Iclipper2/include LIBS = -L/usr/local/lib -tippecanoe: geojson.o jsonpull/jsonpull.o tile.o pool.o mbtiles.o geometry.o projection.o memfile.o mvt.o serial.o main.o text.o dirtiles.o pmtiles_file.o plugin.o read_json.o write_json.o geobuf.o flatgeobuf.o evaluator.o geocsv.o csv.o geojson-loop.o json_logger.o visvalingam.o compression.o clip.o sort.o attribute.o thread.o shared_borders.o clipper2/src/clipper.engine.o +tippecanoe: geojson.o jsonpull/jsonpull.o tile.o pool.o mbtiles.o geometry.o projection.o memfile.o mvt.o serial.o main.o text.o dirtiles.o pmtiles_file.o plugin.o read_json.o write_json.o geobuf.o flatgeobuf.o evaluator.o geocsv.o csv.o geojson-loop.o json_logger.o visvalingam.o compression.o clip.o sort.o attribute.o thread.o shared_borders.o clipper2/src/clipper.engine.o drop.o $(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 -lpthread tippecanoe-enumerate: enumerate.o @@ -74,7 +74,7 @@ tile-join: tile-join.o projection.o mbtiles.o mvt.o memfile.o dirtiles.o jsonpul tippecanoe-json-tool: jsontool.o jsonpull/jsonpull.o csv.o text.o geojson-loop.o $(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 -lpthread -unit: unit.o text.o sort.o mvt.o projection.o clip.o attribute.o jsonpull/jsonpull.o evaluator.o read_json.o clipper2/src/clipper.engine.o +unit: unit.o text.o sort.o mvt.o projection.o clip.o attribute.o jsonpull/jsonpull.o evaluator.o read_json.o clipper2/src/clipper.engine.o drop.o $(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 -lpthread tippecanoe-overzoom: overzoom.o mvt.o clip.o evaluator.o jsonpull/jsonpull.o text.o attribute.o read_json.o projection.o read_json.o clipper2/src/clipper.engine.o diff --git a/drop.cpp b/drop.cpp new file mode 100644 index 000000000..fc6c6beca --- /dev/null +++ b/drop.cpp @@ -0,0 +1,87 @@ +#include +#include "drop.hpp" +#include "options.hpp" +#include "geometry.hpp" + +unsigned long long preserve_point_density_threshold = 0; + +int calc_feature_minzoom(struct index *ix, struct drop_state ds[], int maxzoom, double gamma) { + int feature_minzoom = 0; + + if (gamma >= 0 && (ix->t == VT_POINT || + (additional[A_LINE_DROP] && ix->t == VT_LINE) || + (additional[A_POLYGON_DROP] && ix->t == VT_POLYGON))) { + for (ssize_t i = 0; i <= maxzoom; i++) { + // This zoom level is now lighter on features + ds[i].error -= 1.0; + } + + ssize_t chosen = maxzoom + 1; + for (ssize_t i = 0; i <= maxzoom; i++) { + if (ds[i].error < 0) { + // this zoom level is too light, so it is time to emit a feature. + feature_minzoom = i; + + // this feature now appears in this zoom level and all higher zoom levels, + // so each of them has this feature as its last feature, and each of them + // is now one feature (which has a weight of `interval`) heavier than before. + for (ssize_t j = i; j <= maxzoom; j++) { + ds[j].previndex = ix->ix; + ds[j].error += ds[j].interval; + } + + chosen = i; + break; + } + } + + // If this feature has been chosen only for a high zoom level, + // check whether at a low zoom level it is nevertheless too far + // from the last feature chosen for that low zoom, in which case + // we will go ahead and push it out. + + if (preserve_point_density_threshold > 0) { + for (ssize_t i = 0; i < chosen && i < maxzoom; i++) { + if (ix->ix - ds[i].previndex > ((1LL << (32 - i)) / preserve_point_density_threshold) * ((1LL << (32 - i)) / preserve_point_density_threshold)) { + feature_minzoom = i; + + // this feature now appears in this zoom level and all higher zoom levels + // (below `chosen`, beyond which were already credited with this feature) + // so each of them has this feature as its last feature, and each of them + // is now one feature (which has a weight of `interval`) heavier than before. + for (ssize_t j = i; j < chosen; j++) { + ds[j].previndex = ix->ix; + ds[j].error += ds[j].interval; + } + + break; + } + } + } + } + + return feature_minzoom; +} + +void prep_drop_states(struct drop_state ds[], int maxzoom, int basezoom, double droprate) { + // Needs to be signed for interval calculation + for (ssize_t i = 0; i <= maxzoom; i++) { + ds[i].previndex = 0; + ds[i].interval = 1; // every feature appears in every zoom level at or above the basezoom + + if (i < basezoom) { + // at zoom levels below the basezoom, the fraction of points that are dropped is + // the drop rate to the power of the number of zooms this zoom is below the basezoom + // + // for example: + // basezoom: 1 (droprate ^ 0) + // basezoom - 1: 2.5 (droprate ^ 1) + // basezoom - 2: 6.25 (droprate ^ 2) + // ... + // basezoom - n: (droprate ^ n) + ds[i].interval = std::pow(droprate, basezoom - i); + } + + ds[i].error = 0; + } +} diff --git a/drop.hpp b/drop.hpp new file mode 100644 index 000000000..0a1f5bb58 --- /dev/null +++ b/drop.hpp @@ -0,0 +1,65 @@ +#ifndef DROP_HPP +#define DROP_HPP + +// As features are read during the input phase, each one is represented by +// an index entry giving its geometry type, its spatial index, and the location +// in the geometry file of the rest of its data. +// +// Note that the fields are in a specific order so that `segment` and `t` will +// packed together with `seq` so that the total structure size will be only 32 bytes +// instead of 40. (Could we save a few more, perhaps, by tracking `len` instead of +// `end` and limiting the size of individual features to 2^32 bytes?) + +struct index { + // first and last+1 byte of the feature in the geometry temp file + long long start = 0; + long long end = 0; + + // z-index or hilbert index of the feature + unsigned long long ix = 0; + + // which thread's geometry temp file this feature is in + short segment = 0; + + // geometry type + unsigned short t : 2; + + // sequence number (sometimes with gaps in numbering) of the feature in the original input file + unsigned long long seq : (64 - 16 - 2); // pack with segment and t to stay in 32 bytes + + index() + : t(0), + seq(0) { + } +}; + +// Each zoom level has a drop_state that is used to account for the fraction of +// point features that are supposed to be dropped in that zoom level. As it goes +// through the spatially-sorted features, it is basically doing a diffusion dither +// to keep the density of features in each vicinity at each zoom level +// approximately correct by including or excluding individual features +// to maintain the balance. + +struct drop_state { + // the z-index or hilbert index of the last feature that was placed in this zoom level + unsigned long long previndex; + + // the preservation rate (1 or more) for features in this zoom level. + // 1 would be to keep all the features; 2 would drop every other feature; + // 4 every fourth feature, and so on. + double interval; + + // the current accumulated error in this zoom level: + // positive if too many features have been dropped; + // negative if not enough features have been dropped. + // + // this is floating-point because the interval is. + double error; +}; + +extern unsigned long long preserve_point_density_threshold; + +int calc_feature_minzoom(struct index *ix, struct drop_state ds[], int maxzoom, double gamma); +void prep_drop_states(struct drop_state ds[], int maxzoom, int basezoom, double droprate); + +#endif diff --git a/main.cpp b/main.cpp index 0d0a9ed37..8c6732b7e 100644 --- a/main.cpp +++ b/main.cpp @@ -67,6 +67,7 @@ #include "sort.hpp" #include "attribute.hpp" #include "thread.hpp" +#include "drop.hpp" static int low_detail = 12; static int full_detail = -1; @@ -92,7 +93,6 @@ size_t limit_tile_feature_count = 0; size_t limit_tile_feature_count_at_maxzoom = 0; unsigned int drop_denser = 0; std::map set_attributes; -unsigned long long preserve_point_density_threshold = 0; unsigned long long preserve_multiplier_density_threshold = 0; long long extend_zooms_max = 0; int retain_points_multiplier = 1; @@ -283,13 +283,6 @@ static void insert(struct mergelist *m, struct mergelist **head, unsigned char * *head = m; } -struct drop_state { - double gap; - unsigned long long previndex; - double interval; - double seq; // floating point because interval is -}; - struct drop_densest { unsigned long long gap; size_t seq; @@ -300,59 +293,6 @@ struct drop_densest { } }; -int calc_feature_minzoom(struct index *ix, struct drop_state *ds, int maxzoom, double gamma) { - int feature_minzoom = 0; - - if (gamma >= 0 && (ix->t == VT_POINT || - (additional[A_LINE_DROP] && ix->t == VT_LINE) || - (additional[A_POLYGON_DROP] && ix->t == VT_POLYGON))) { - for (ssize_t i = maxzoom; i >= 0; i--) { - ds[i].seq++; - } - for (ssize_t i = maxzoom; i >= 0; i--) { - if (ds[i].seq < 0) { - feature_minzoom = i + 1; - - // The feature we are pushing out - // appears in zooms i + 1 through maxzoom, - // so track where that was so we can make sure - // not to cluster something else that is *too* - // far away into it. - for (ssize_t j = i + 1; j <= maxzoom; j++) { - ds[j].previndex = ix->ix; - } - - break; - } else { - ds[i].seq -= ds[i].interval; - } - } - - // If this feature has been chosen only for a high zoom level, - // check whether at a low zoom level it is nevertheless too far - // from the last feature chosen for that low zoom, in which case - // we will go ahead and push it out. - - if (preserve_point_density_threshold > 0) { - for (ssize_t i = 0; i < feature_minzoom && i < maxzoom; i++) { - if (ix->ix - ds[i].previndex > ((1LL << (32 - i)) / preserve_point_density_threshold) * ((1LL << (32 - i)) / preserve_point_density_threshold)) { - feature_minzoom = i; - - for (ssize_t j = i; j <= maxzoom; j++) { - ds[j].previndex = ix->ix; - } - - break; - } - } - } - - // XXX manage_gap - } - - return feature_minzoom; -} - static void merge(struct mergelist *merges, size_t nmerges, unsigned char *map, FILE *indexfile, int bytes, char *geom_map, FILE *geom_out, std::atomic *geompos, long long *progress, long long *progress_max, long long *progress_reported, int maxzoom, double gamma, struct drop_state *ds) { struct mergelist *head = NULL; @@ -1054,21 +994,6 @@ void radix1(int *geomfds_in, int *indexfds_in, int inputs, int prefix, int split } } -void prep_drop_states(struct drop_state *ds, int maxzoom, int basezoom, double droprate) { - // Needs to be signed for interval calculation - for (ssize_t i = 0; i <= maxzoom; i++) { - ds[i].gap = 0; - ds[i].previndex = 0; - ds[i].interval = 0; - - if (i < basezoom) { - ds[i].interval = std::exp(std::log(droprate) * (basezoom - i)); - } - - ds[i].seq = 0; - } -} - static size_t calc_memsize() { size_t mem; @@ -1140,7 +1065,11 @@ void radix(std::vector &readers, int nreaders, FILE *geomfile, FI } struct drop_state ds[maxzoom + 1]; - prep_drop_states(ds, maxzoom, basezoom, droprate); + if (maxzoom < 0 || droprate <= 0) { // not guessed with -zg yet + prep_drop_states(ds, 0, 0, 1); + } else { + prep_drop_states(ds, maxzoom, basezoom, droprate); + } long long progress = 0, progress_max = geom_total, progress_reported = -1; long long availfiles_before = availfiles; diff --git a/main.hpp b/main.hpp index 714af5c31..871411954 100644 --- a/main.hpp +++ b/main.hpp @@ -10,20 +10,6 @@ #include "json_logger.hpp" #include "serial.hpp" -struct index { - long long start = 0; - long long end = 0; - unsigned long long ix = 0; - short segment = 0; - unsigned short t : 2; - unsigned long long seq : (64 - 18); // pack with segment and t to stay in 32 bytes - - index() - : t(0), - seq(0) { - } -}; - extern std::vector clipbboxes; void checkdisk(std::vector *r); diff --git a/serial.hpp b/serial.hpp index 91cdac5ce..b45450caa 100644 --- a/serial.hpp +++ b/serial.hpp @@ -10,6 +10,7 @@ #include #include "geometry.hpp" #include "mbtiles.hpp" +#include "drop.hpp" // for struct index #include "jsonpull/jsonpull.h" size_t fwrite_check(const void *ptr, size_t size, size_t nitems, FILE *stream, std::atomic *fpos, const char *fname); diff --git a/tests/accumulate/out/-z3_--accumulate-attribute_%7b%22thesum%22%3a%22sum%22,%22theproduct%22%3a%22product%22}.json b/tests/accumulate/out/-z3_--accumulate-attribute_%7b%22thesum%22%3a%22sum%22,%22theproduct%22%3a%22product%22}.json index a545f3a3f..3b4e3bec4 100644 --- a/tests/accumulate/out/-z3_--accumulate-attribute_%7b%22thesum%22%3a%22sum%22,%22theproduct%22%3a%22product%22}.json +++ b/tests/accumulate/out/-z3_--accumulate-attribute_%7b%22thesum%22%3a%22sum%22,%22theproduct%22%3a%22product%22}.json @@ -5,65 +5,63 @@ "description": "tests/accumulate/out/-z3_--accumulate-attribute_%7b%22thesum%22%3a%22sum%22,%22theproduct%22%3a%22product%22}.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o 'tests/accumulate/out/-z3_--accumulate-attribute_%7b%22thesum%22%3a%22sum%22,%22theproduct%22%3a%22product%22}.json.check.mbtiles' -z3 --accumulate-attribute '{\"thesum\":\"sum\",\"theproduct\":\"product\"}' tests/accumulate/in.json", -"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":3,\"fields\":{\"thecomma\":\"Number\",\"theconcat\":\"Number\",\"themax\":\"Number\",\"themean\":\"Number\",\"themin\":\"Number\",\"theproduct\":\"Number\",\"thesum\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":100,\"geometry\":\"Point\",\"attributeCount\":7,\"attributes\":[{\"attribute\":\"thecomma\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"theconcat\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"themax\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"themean\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"themin\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"theproduct\",\"count\":152,\"type\":\"number\",\"values\":[1,10,100,10070754193500,1054,1087851840,11,112791609,114192,12,121030,13,14,1452,15,1519,16,165165,17,18,1862,1890,19,1938,19784309935782710000,19920,2,2.6704416630885583e+28,20,20448,20485594649520,2088,21,2109,2112,22,22667752800,23,2314,2322,24,2478,25,26,2624,27,2765,28,288600,29,3,30,31,32,3276,33,34,35,36,3601800,3648,37,38,39,3956,4,4.486244263022014e+22,40,41,42,43,4366178626824,44,4480,45,46,47,47480256,48,4810,49,5,50,50914289664,51,52,523390802429214700,53,54,55,5589,56,57,58,59,596410,6,60,61,6145776],\"min\":1,\"max\":2.6704416630885583e+28},{\"attribute\":\"thesum\",\"count\":138,\"type\":\"number\",\"values\":[1,10,100,101,11,111,112,114,115,117,12,124,13,132,134,139,14,146,149,15,150,152,156,16,17,178,179,18,183,19,190,191,199,2,20,209,21,216,22,23,237,24,25,254,26,27,28,281,29,3,30,31,32,33,34,35,352,36,369,37,377,38,39,398,4,40,41,42,43,44,45,459,46,47,473,48,49,5,50,51,52,53,54,55,56,57,58,582,59,6,60,61,611,62,63,64,65,66,67,68],\"min\":1,\"max\":935}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":3,\"fields\":{\"thecomma\":\"Number\",\"theconcat\":\"Number\",\"themax\":\"Number\",\"themean\":\"Number\",\"themin\":\"Number\",\"theproduct\":\"Number\",\"thesum\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":100,\"geometry\":\"Point\",\"attributeCount\":7,\"attributes\":[{\"attribute\":\"thecomma\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"theconcat\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"themax\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"themean\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"themin\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"theproduct\",\"count\":145,\"type\":\"number\",\"values\":[1,1.8118594494816077e+22,10,100,1054,11,112791609,114192,115257600,12,13,1312,14,1452,15,156864,157200865668000,16,1634,164862,17,1793610,18,1862,19,19336200,19920,2,20,2088,21,2109,22,23,24,2426343933653640,247800,25,26,264,27,2762757396,2765,28,29,3,3.906944963845347e+46,30,3003,300656,31,3165162,32,33,34,35,3528,35840,36,37,38,39,39123,3956,4,40,402696,40435200,41,42,43,436905,44,45,46,47,474974794933294660000,48,482724,484416,49,5,50,51,52,523390802429214700,53,54,55,55200,56,57,57850,58,5868467244057600000,59,6,6.703399647941327e+24,60,61],\"min\":1,\"max\":3.906944963845347e+46},{\"attribute\":\"thesum\",\"count\":137,\"type\":\"number\",\"values\":[1,10,100,101,105,11,114,117,12,121,123,124,13,130,132,14,140,142,144,149,15,1502,157,16,168,17,18,19,197,2,20,200,201,203,208,21,22,223,229,23,231,24,241,244,25,26,264,27,28,281,29,3,30,31,32,33,34,35,36,37,373,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,520,53,54,548,55,559,56,57,575,58,582,59,6,60,61,614,62,63,64,65,66,67],\"min\":1,\"max\":1502}]}]}}", "maxzoom": "3", "minzoom": "0", "name": "tests/accumulate/out/-z3_--accumulate-attribute_%7b%22thesum%22%3a%22sum%22,%22theproduct%22%3a%22product%22}.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":78},{\"dropped_by_rate\":78},{\"dropped_by_rate\":43},{}]", +"strategies": "[{\"dropped_by_rate\":79},{\"dropped_by_rate\":77},{\"dropped_by_rate\":50},{}]", "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": { "themax": 3, "themin": 3, "themean": 3, "theconcat": 3, "thecomma": 3, "thesum": 819, "theproduct": 7.744164208626863e+24 }, "geometry": { "type": "Point", "coordinates": [ -147.392578, 84.778533 ] } } +{ "type": "Feature", "properties": { "themax": 3, "themin": 3, "themean": 3, "theconcat": 3, "thecomma": 3, "thesum": 575, "theproduct": 714250198330905600 }, "geometry": { "type": "Point", "coordinates": [ -147.392578, 84.778533 ] } } , -{ "type": "Feature", "properties": { "themax": 92, "themin": 92, "themean": 92, "theconcat": 92, "thecomma": 92, "thesum": 611, "theproduct": 19784309935782710000 }, "geometry": { "type": "Point", "coordinates": [ -63.369141, 57.984808 ] } } +{ "type": "Feature", "properties": { "themax": 57, "themin": 57, "themean": 57, "theconcat": 57, "thecomma": 57, "thesum": 823, "theproduct": 6.703399647941327e+24 }, "geometry": { "type": "Point", "coordinates": [ -71.806641, 83.004844 ] } } , -{ "type": "Feature", "properties": { "themax": 75, "themin": 75, "themean": 75, "theconcat": 75, "thecomma": 75, "thesum": 935, "theproduct": 2.6704416630885583e+28 }, "geometry": { "type": "Point", "coordinates": [ -157.236328, -62.915233 ] } } +{ "type": "Feature", "properties": { "themax": 32, "themin": 32, "themean": 32, "theconcat": 32, "thecomma": 32, "thesum": 751, "theproduct": 1.8118594494816077e+22 }, "geometry": { "type": "Point", "coordinates": [ -156.357422, -54.162434 ] } } , -{ "type": "Feature", "properties": { "themax": 26, "themin": 26, "themean": 26, "theconcat": 26, "thecomma": 26, "thesum": 398, "theproduct": 10070754193500 }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 42.747012 ] } } +{ "type": "Feature", "properties": { "themax": 86, "themin": 86, "themean": 86, "theconcat": 86, "thecomma": 86, "thesum": 614, "theproduct": 474974794933294660000 }, "geometry": { "type": "Point", "coordinates": [ -0.263672, -32.694866 ] } } , -{ "type": "Feature", "properties": { "themax": 69, "themin": 69, "themean": 69, "theconcat": 69, "thecomma": 69, "thesum": 774, "theproduct": 8.708721003108196e+23 }, "geometry": { "type": "Point", "coordinates": [ 113.642578, 13.838080 ] } } -, -{ "type": "Feature", "properties": { "themax": 35, "themin": 35, "themean": 35, "theconcat": 35, "thecomma": 35, "thesum": 728, "theproduct": 4.486244263022014e+22 }, "geometry": { "type": "Point", "coordinates": [ 57.919922, -82.226115 ] } } +{ "type": "Feature", "properties": { "themax": 69, "themin": 69, "themean": 69, "theconcat": 69, "thecomma": 69, "thesum": 1502, "theproduct": 3.906944963845347e+46 }, "geometry": { "type": "Point", "coordinates": [ 113.642578, 13.838080 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "themax": 65, "themin": 65, "themean": 65, "theconcat": 65, "thecomma": 65, "thesum": 152, "theproduct": 121030 }, "geometry": { "type": "Point", "coordinates": [ -166.420898, 2.767478 ] } } +{ "type": "Feature", "properties": { "thesum": 65, "themax": 65, "themin": 65, "theproduct": 65, "themean": 65, "theconcat": 65, "thecomma": 65 }, "geometry": { "type": "Point", "coordinates": [ -166.420898, 2.767478 ] } } , -{ "type": "Feature", "properties": { "themax": 43, "themin": 43, "themean": 43, "theconcat": 43, "thecomma": 43, "thesum": 209, "theproduct": 47480256 }, "geometry": { "type": "Point", "coordinates": [ -168.134766, -37.370157 ] } } +{ "type": "Feature", "properties": { "themax": 38, "themin": 38, "themean": 38, "theconcat": 38, "thecomma": 38, "thesum": 264, "theproduct": 2762757396 }, "geometry": { "type": "Point", "coordinates": [ -176.484375, -1.186439 ] } } , -{ "type": "Feature", "properties": { "themax": 75, "themin": 75, "themean": 75, "theconcat": 75, "thecomma": 75, "thesum": 199, "theproduct": 3601800 }, "geometry": { "type": "Point", "coordinates": [ -157.236328, -62.935235 ] } } +{ "type": "Feature", "properties": { "themax": 32, "themin": 32, "themean": 32, "theconcat": 32, "thecomma": 32, "thesum": 231, "theproduct": 115257600 }, "geometry": { "type": "Point", "coordinates": [ -156.357422, -54.162434 ] } } , -{ "type": "Feature", "properties": { "themax": 59, "themin": 59, "themean": 59, "theconcat": 59, "thecomma": 59, "thesum": 352, "theproduct": 22667752800 }, "geometry": { "type": "Point", "coordinates": [ -146.909180, -72.906723 ] } } +{ "type": "Feature", "properties": { "themax": 59, "themin": 59, "themean": 59, "theconcat": 59, "thecomma": 59, "thesum": 520, "theproduct": 157200865668000 }, "geometry": { "type": "Point", "coordinates": [ -146.909180, -72.906723 ] } } , -{ "type": "Feature", "properties": { "themax": 95, "themin": 95, "themean": 95, "theconcat": 95, "thecomma": 95, "thesum": 369, "theproduct": 1087851840 }, "geometry": { "type": "Point", "coordinates": [ -56.689453, -62.552857 ] } } +{ "type": "Feature", "properties": { "themax": 86, "themin": 86, "themean": 86, "theconcat": 86, "thecomma": 86, "thesum": 201, "theproduct": 156864 }, "geometry": { "type": "Point", "coordinates": [ -0.263672, -32.694866 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "themax": 3, "themin": 3, "themean": 3, "theconcat": 3, "thecomma": 3, "thesum": 190, "theproduct": 6145776 }, "geometry": { "type": "Point", "coordinates": [ -147.348633, 84.782531 ] } } +{ "type": "Feature", "properties": { "themax": 3, "themin": 3, "themean": 3, "theconcat": 3, "thecomma": 3, "thesum": 123, "theproduct": 91728 }, "geometry": { "type": "Point", "coordinates": [ -147.348633, 84.782531 ] } } +, +{ "type": "Feature", "properties": { "themax": 67, "themin": 67, "themean": 67, "theconcat": 67, "thecomma": 67, "thesum": 223, "theproduct": 19336200 }, "geometry": { "type": "Point", "coordinates": [ -177.451172, 22.268764 ] } } , -{ "type": "Feature", "properties": { "themax": 74, "themin": 74, "themean": 74, "theconcat": 74, "thecomma": 74, "thesum": 156, "theproduct": 288600 }, "geometry": { "type": "Point", "coordinates": [ -159.609375, 33.504759 ] } } +{ "type": "Feature", "properties": { "themax": 94, "themin": 94, "themean": 94, "theconcat": 94, "thecomma": 94, "thesum": 229, "theproduct": 402696 }, "geometry": { "type": "Point", "coordinates": [ -132.495117, 18.062312 ] } } , -{ "type": "Feature", "properties": { "themax": 94, "themin": 94, "themean": 94, "theconcat": 94, "thecomma": 94, "thesum": 473, "theproduct": 4366178626824 }, "geometry": { "type": "Point", "coordinates": [ -132.495117, 18.062312 ] } } +{ "type": "Feature", "properties": { "themax": 57, "themin": 57, "themean": 57, "theconcat": 57, "thecomma": 57, "thesum": 559, "theproduct": 2426343933653640 }, "geometry": { "type": "Point", "coordinates": [ -71.762695, 83.010194 ] } } , -{ "type": "Feature", "properties": { "themax": 92, "themin": 92, "themean": 92, "theconcat": 92, "thecomma": 92, "thesum": 459, "theproduct": 20485594649520 }, "geometry": { "type": "Point", "coordinates": [ -63.369141, 58.008098 ] } } +{ "type": "Feature", "properties": { "themax": 38, "themin": 38, "themean": 38, "theconcat": 38, "thecomma": 38, "thesum": 144, "theproduct": 91542 }, "geometry": { "type": "Point", "coordinates": [ -176.484375, -1.186439 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "themax": 49, "themin": 49, "themean": 49, "theconcat": 49, "thecomma": 49, "thesum": 377, "theproduct": 50914289664 }, "geometry": { "type": "Point", "coordinates": [ 181.450195, -18.020528 ] } } -, -{ "type": "Feature", "properties": { "themax": 18, "themin": 18, "themean": 18, "theconcat": 18, "thecomma": 18, "thesum": 237, "theproduct": 71604000 }, "geometry": { "type": "Point", "coordinates": [ 6.591797, -44.809122 ] } } +{ "type": "Feature", "properties": { "themax": 49, "themin": 49, "themean": 49, "theconcat": 49, "thecomma": 49, "thesum": 121, "theproduct": 3528 }, "geometry": { "type": "Point", "coordinates": [ 181.450195, -18.020528 ] } } , -{ "type": "Feature", "properties": { "themax": 24, "themin": 24, "themean": 24, "theconcat": 24, "thecomma": 24, "thesum": 117, "theproduct": 19920 }, "geometry": { "type": "Point", "coordinates": [ 13.447266, -81.544159 ] } } +{ "type": "Feature", "properties": { "themax": 86, "themin": 86, "themean": 86, "theconcat": 86, "thecomma": 86, "thesum": 208, "theproduct": 300656 }, "geometry": { "type": "Point", "coordinates": [ -0.263672, -32.694866 ] } } , -{ "type": "Feature", "properties": { "themax": 35, "themin": 35, "themean": 35, "theconcat": 35, "thecomma": 35, "thesum": 146, "theproduct": 85715 }, "geometry": { "type": "Point", "coordinates": [ 57.963867, -82.232057 ] } } +{ "type": "Feature", "properties": { "themax": 48, "themin": 48, "themean": 48, "theconcat": 48, "thecomma": 48, "thesum": 548, "theproduct": 5868467244057600000 }, "geometry": { "type": "Point", "coordinates": [ 3.779297, -46.950262 ] } } , { "type": "Feature", "properties": { "themax": 70, "themin": 70, "themean": 70, "theconcat": 70, "thecomma": 70, "thesum": 582, "theproduct": 523390802429214700 }, "geometry": { "type": "Point", "coordinates": [ 147.041016, -21.616579 ] } } ] } @@ -71,9 +69,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "themax": 67, "themin": 67, "themean": 67, "theconcat": 67, "thecomma": 67, "thesum": 216, "theproduct": 73487744 }, "geometry": { "type": "Point", "coordinates": [ 182.548828, 22.268764 ] } } +{ "type": "Feature", "properties": { "themax": 67, "themin": 67, "themean": 67, "theconcat": 67, "thecomma": 67, "thesum": 373, "theproduct": 6153148144000 }, "geometry": { "type": "Point", "coordinates": [ 182.548828, 22.268764 ] } } , -{ "type": "Feature", "properties": { "themax": 26, "themin": 26, "themean": 26, "theconcat": 26, "thecomma": 26, "thesum": 398, "theproduct": 10070754193500 }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 42.747012 ] } } +{ "type": "Feature", "properties": { "themax": 91, "themin": 91, "themean": 91, "theconcat": 91, "thecomma": 91, "thesum": 203, "theproduct": 3165162 }, "geometry": { "type": "Point", "coordinates": [ 114.960938, 84.178705 ] } } , { "type": "Feature", "properties": { "themax": 69, "themin": 69, "themean": 69, "theconcat": 69, "thecomma": 69, "thesum": 281, "theproduct": 112791609 }, "geometry": { "type": "Point", "coordinates": [ 113.598633, 13.838080 ] } } ] } @@ -83,9 +81,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "themax": 72, "themin": 72, "themean": 72, "theconcat": 72, "thecomma": 72, "thesum": 101, "theproduct": 2088 }, "geometry": { "type": "Point", "coordinates": [ -179.318848, -69.029279 ] } } , -{ "type": "Feature", "properties": { "themax": 59, "themin": 59, "themean": 59, "theconcat": 59, "thecomma": 59, "thesum": 101, "theproduct": 2478 }, "geometry": { "type": "Point", "coordinates": [ -146.887207, -72.900264 ] } } -, -{ "type": "Feature", "properties": { "thesum": 100, "themax": 100, "themin": 100, "theproduct": 100, "themean": 100, "theconcat": 100, "thecomma": 100 }, "geometry": { "type": "Point", "coordinates": [ -123.947754, -81.873641 ] } } +{ "type": "Feature", "properties": { "themax": 59, "themin": 59, "themean": 59, "theconcat": 59, "thecomma": 59, "thesum": 201, "theproduct": 247800 }, "geometry": { "type": "Point", "coordinates": [ -146.887207, -72.900264 ] } } ] } ] } , @@ -93,35 +89,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "themax": 38, "themin": 38, "themean": 38, "theconcat": 38, "thecomma": 38, "thesum": 87, "theproduct": 1862 }, "geometry": { "type": "Point", "coordinates": [ -176.462402, -1.186439 ] } } , -{ "type": "Feature", "properties": { "themax": 43, "themin": 43, "themean": 43, "theconcat": 43, "thecomma": 43, "thesum": 97, "theproduct": 2322 }, "geometry": { "type": "Point", "coordinates": [ -168.134766, -37.387617 ] } } +{ "type": "Feature", "properties": { "themax": 43, "themin": 43, "themean": 43, "theconcat": 43, "thecomma": 43, "thesum": 168, "theproduct": 164862 }, "geometry": { "type": "Point", "coordinates": [ -168.134766, -37.387617 ] } } , -{ "type": "Feature", "properties": { "themax": 71, "themin": 71, "themean": 71, "theconcat": 71, "thecomma": 71, "thesum": 112, "theproduct": 20448 }, "geometry": { "type": "Point", "coordinates": [ -171.826172, -55.028022 ] } } +{ "type": "Feature", "properties": { "thesum": 9, "themax": 9, "themin": 9, "theproduct": 9, "themean": 9, "theconcat": 9, "thecomma": 9 }, "geometry": { "type": "Point", "coordinates": [ -168.574219, -52.643063 ] } } , -{ "type": "Feature", "properties": { "thesum": 75, "themax": 75, "themin": 75, "theproduct": 75, "themean": 75, "theconcat": 75, "thecomma": 75 }, "geometry": { "type": "Point", "coordinates": [ -157.214355, -62.925236 ] } } -, -{ "type": "Feature", "properties": { "thesum": 23, "themax": 23, "themin": 23, "theproduct": 23, "themean": 23, "theconcat": 23, "thecomma": 23 }, "geometry": { "type": "Point", "coordinates": [ -131.418457, -48.661943 ] } } +{ "type": "Feature", "properties": { "themax": 32, "themin": 32, "themean": 32, "theconcat": 32, "thecomma": 32, "thesum": 130, "theproduct": 55200 }, "geometry": { "type": "Point", "coordinates": [ -156.335449, -54.162434 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 67, "themax": 67, "themin": 67, "theproduct": 67, "themean": 67, "theconcat": 67, "thecomma": 67 }, "geometry": { "type": "Point", "coordinates": [ -177.451172, 22.268764 ] } } -, -{ "type": "Feature", "properties": { "themax": 74, "themin": 74, "themean": 74, "theconcat": 74, "thecomma": 74, "thesum": 139, "theproduct": 4810 }, "geometry": { "type": "Point", "coordinates": [ -159.587402, 33.504759 ] } } +{ "type": "Feature", "properties": { "themax": 67, "themin": 67, "themean": 67, "theconcat": 67, "thecomma": 67, "thesum": 223, "theproduct": 19336200 }, "geometry": { "type": "Point", "coordinates": [ -177.451172, 22.268764 ] } } , -{ "type": "Feature", "properties": { "themax": 5, "themin": 5, "themean": 5, "theconcat": 5, "thecomma": 5, "thesum": 17, "theproduct": 60 }, "geometry": { "type": "Point", "coordinates": [ -153.413086, 29.075375 ] } } +{ "type": "Feature", "properties": { "themax": 94, "themin": 94, "themean": 94, "theconcat": 94, "thecomma": 94, "thesum": 229, "theproduct": 402696 }, "geometry": { "type": "Point", "coordinates": [ -132.495117, 18.083201 ] } } , -{ "type": "Feature", "properties": { "themax": 94, "themin": 94, "themean": 94, "theconcat": 94, "thecomma": 94, "thesum": 178, "theproduct": 7896 }, "geometry": { "type": "Point", "coordinates": [ -132.495117, 18.083201 ] } } -, -{ "type": "Feature", "properties": { "themax": 51, "themin": 51, "themean": 51, "theconcat": 51, "thecomma": 51, "thesum": 89, "theproduct": 1938 }, "geometry": { "type": "Point", "coordinates": [ -105.314941, 25.819672 ] } } +{ "type": "Feature", "properties": { "thesum": 38, "themax": 38, "themin": 38, "theproduct": 38, "themean": 38, "theconcat": 38, "thecomma": 38 }, "geometry": { "type": "Point", "coordinates": [ -176.462402, -1.186439 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "themax": 3, "themin": 3, "themean": 3, "theconcat": 3, "thecomma": 3, "thesum": 95, "theproduct": 3276 }, "geometry": { "type": "Point", "coordinates": [ -147.370605, 84.780532 ] } } -, -{ "type": "Feature", "properties": { "thesum": 28, "themax": 28, "themin": 28, "theproduct": 28, "themean": 28, "theconcat": 28, "thecomma": 28 }, "geometry": { "type": "Point", "coordinates": [ -108.413086, 69.854762 ] } } +{ "type": "Feature", "properties": { "themax": 3, "themin": 3, "themean": 3, "theconcat": 3, "thecomma": 3, "thesum": 123, "theproduct": 91728 }, "geometry": { "type": "Point", "coordinates": [ -147.370605, 84.780532 ] } } ] } ] } , @@ -129,23 +117,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "themax": 66, "themin": 66, "themean": 66, "theconcat": 66, "thecomma": 66, "thesum": 88, "theproduct": 1452 }, "geometry": { "type": "Point", "coordinates": [ -68.071289, -6.860985 ] } } , -{ "type": "Feature", "properties": { "thesum": 63, "themax": 63, "themin": 63, "theproduct": 63, "themean": 63, "theconcat": 63, "thecomma": 63 }, "geometry": { "type": "Point", "coordinates": [ -50.734863, -49.052270 ] } } +{ "type": "Feature", "properties": { "themax": 63, "themin": 63, "themean": 63, "theconcat": 63, "thecomma": 63, "thesum": 231, "theproduct": 436905 }, "geometry": { "type": "Point", "coordinates": [ -50.734863, -49.052270 ] } } , -{ "type": "Feature", "properties": { "themax": 95, "themin": 95, "themean": 95, "theconcat": 95, "thecomma": 95, "thesum": 254, "theproduct": 596410 }, "geometry": { "type": "Point", "coordinates": [ -56.667480, -62.562983 ] } } -, -{ "type": "Feature", "properties": { "thesum": 19, "themax": 19, "themin": 19, "theproduct": 19, "themean": 19, "theconcat": 19, "thecomma": 19 }, "geometry": { "type": "Point", "coordinates": [ -25.136719, -41.195190 ] } } +{ "type": "Feature", "properties": { "themax": 86, "themin": 86, "themean": 86, "theconcat": 86, "thecomma": 86, "thesum": 105, "theproduct": 1634 }, "geometry": { "type": "Point", "coordinates": [ -0.241699, -32.694866 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 53, "themax": 53, "themin": 53, "theproduct": 53, "themean": 53, "theconcat": 53, "thecomma": 53 }, "geometry": { "type": "Point", "coordinates": [ -84.902344, 62.165502 ] } } -, -{ "type": "Feature", "properties": { "themax": 92, "themin": 92, "themean": 92, "theconcat": 92, "thecomma": 92, "thesum": 191, "theproduct": 9108 }, "geometry": { "type": "Point", "coordinates": [ -63.347168, 58.008098 ] } } +{ "type": "Feature", "properties": { "themax": 53, "themin": 53, "themean": 53, "theconcat": 53, "thecomma": 53, "thesum": 244, "theproduct": 482724 }, "geometry": { "type": "Point", "coordinates": [ -84.902344, 62.165502 ] } } , -{ "type": "Feature", "properties": { "themax": 90, "themin": 90, "themean": 90, "theconcat": 90, "thecomma": 90, "thesum": 111, "theproduct": 1890 }, "geometry": { "type": "Point", "coordinates": [ -29.003906, 48.458352 ] } } -, -{ "type": "Feature", "properties": { "themax": 13, "themin": 13, "themean": 13, "theconcat": 13, "thecomma": 13, "thesum": 86, "theproduct": 949 }, "geometry": { "type": "Point", "coordinates": [ -3.713379, 47.353711 ] } } +{ "type": "Feature", "properties": { "themax": 90, "themin": 90, "themean": 90, "theconcat": 90, "thecomma": 90, "thesum": 197, "theproduct": 1793610 }, "geometry": { "type": "Point", "coordinates": [ -29.003906, 48.458352 ] } } ] } ] } , @@ -171,19 +153,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "themax": 86, "themin": 86, "themean": 86, "theconcat": 86, "thecomma": 86, "thesum": 132, "theproduct": 3956 }, "geometry": { "type": "Point", "coordinates": [ -0.263672, -32.694866 ] } } , -{ "type": "Feature", "properties": { "themax": 76, "themin": 76, "themean": 76, "theconcat": 76, "thecomma": 76, "thesum": 124, "theproduct": 3648 }, "geometry": { "type": "Point", "coordinates": [ 35.463867, -21.555284 ] } } +{ "type": "Feature", "properties": { "thesum": 76, "themax": 76, "themin": 76, "theproduct": 76, "themean": 76, "theconcat": 76, "thecomma": 76 }, "geometry": { "type": "Point", "coordinates": [ 35.463867, -21.555284 ] } } , -{ "type": "Feature", "properties": { "themax": 18, "themin": 18, "themean": 18, "theconcat": 18, "thecomma": 18, "thesum": 152, "theproduct": 842400 }, "geometry": { "type": "Point", "coordinates": [ 6.569824, -44.809122 ] } } +{ "type": "Feature", "properties": { "themax": 48, "themin": 48, "themean": 48, "theconcat": 48, "thecomma": 48, "thesum": 200, "theproduct": 40435200 }, "geometry": { "type": "Point", "coordinates": [ 3.757324, -46.965259 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "themax": 2, "themin": 2, "themean": 2, "theconcat": 2, "thecomma": 2, "thesum": 100, "theproduct": 2624 }, "geometry": { "type": "Point", "coordinates": [ 14.062500, 46.724800 ] } } +{ "type": "Feature", "properties": { "thesum": 2, "themax": 2, "themin": 2, "theproduct": 2, "themean": 2, "theconcat": 2, "thecomma": 2 }, "geometry": { "type": "Point", "coordinates": [ 14.062500, 46.724800 ] } } , -{ "type": "Feature", "properties": { "themax": 26, "themin": 26, "themean": 26, "theconcat": 26, "thecomma": 26, "thesum": 115, "theproduct": 2314 }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 42.747012 ] } } +{ "type": "Feature", "properties": { "themax": 16, "themin": 16, "themean": 16, "theconcat": 16, "thecomma": 16, "thesum": 98, "theproduct": 1312 }, "geometry": { "type": "Point", "coordinates": [ 24.675293, 60.294299 ] } } , -{ "type": "Feature", "properties": { "thesum": 25, "themax": 25, "themin": 25, "theproduct": 25, "themean": 25, "theconcat": 25, "thecomma": 25 }, "geometry": { "type": "Point", "coordinates": [ 49.372559, 54.033586 ] } } +{ "type": "Feature", "properties": { "themax": 26, "themin": 26, "themean": 26, "theconcat": 26, "thecomma": 26, "thesum": 140, "theproduct": 57850 }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 42.747012 ] } } ] } ] } , @@ -199,19 +181,19 @@ , { "type": "Feature", "properties": { "themax": 52, "themin": 52, "themean": 52, "theconcat": 52, "thecomma": 52, "thesum": 149, "theproduct": 114192 }, "geometry": { "type": "Point", "coordinates": [ 116.477051, -73.175897 ] } } , -{ "type": "Feature", "properties": { "themax": 87, "themin": 87, "themean": 87, "theconcat": 87, "thecomma": 87, "thesum": 183, "theproduct": 8352 }, "geometry": { "type": "Point", "coordinates": [ 165.541992, -69.862328 ] } } -, -{ "type": "Feature", "properties": { "thesum": 58, "themax": 58, "themin": 58, "theproduct": 58, "themean": 58, "theconcat": 58, "thecomma": 58 }, "geometry": { "type": "Point", "coordinates": [ 141.635742, -84.970875 ] } } +{ "type": "Feature", "properties": { "themax": 87, "themin": 87, "themean": 87, "theconcat": 87, "thecomma": 87, "thesum": 241, "theproduct": 484416 }, "geometry": { "type": "Point", "coordinates": [ 165.541992, -69.862328 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "themax": 49, "themin": 49, "themean": 49, "theconcat": 49, "thecomma": 49, "thesum": 81, "theproduct": 1519 }, "geometry": { "type": "Point", "coordinates": [ 181.450195, -17.999632 ] } } +{ "type": "Feature", "properties": { "thesum": 49, "themax": 49, "themin": 49, "theproduct": 49, "themean": 49, "theconcat": 49, "thecomma": 49 }, "geometry": { "type": "Point", "coordinates": [ 181.450195, -17.999632 ] } } +, +{ "type": "Feature", "properties": { "themax": 1, "themin": 1, "themean": 1, "theconcat": 1, "thecomma": 1, "thesum": 32, "theproduct": 31 }, "geometry": { "type": "Point", "coordinates": [ 134.208984, -54.303704 ] } } , -{ "type": "Feature", "properties": { "themax": 70, "themin": 70, "themean": 70, "theconcat": 70, "thecomma": 70, "thesum": 134, "theproduct": 4480 }, "geometry": { "type": "Point", "coordinates": [ 147.041016, -21.637005 ] } } +{ "type": "Feature", "properties": { "themax": 70, "themin": 70, "themean": 70, "theconcat": 70, "thecomma": 70, "thesum": 142, "theproduct": 35840 }, "geometry": { "type": "Point", "coordinates": [ 147.041016, -21.637005 ] } } , -{ "type": "Feature", "properties": { "themax": 8, "themin": 8, "themean": 8, "theconcat": 8, "thecomma": 8, "thesum": 58, "theproduct": 2112 }, "geometry": { "type": "Point", "coordinates": [ 161.455078, -40.380028 ] } } +{ "type": "Feature", "properties": { "themax": 44, "themin": 44, "themean": 44, "theconcat": 44, "thecomma": 44, "thesum": 50, "theproduct": 264 }, "geometry": { "type": "Point", "coordinates": [ 146.601562, -65.118395 ] } } ] } ] } , @@ -219,15 +201,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "themax": 17, "themin": 17, "themean": 17, "theconcat": 17, "thecomma": 17, "thesum": 79, "theproduct": 1054 }, "geometry": { "type": "Point", "coordinates": [ 110.434570, 38.358888 ] } } , -{ "type": "Feature", "properties": { "themax": 69, "themin": 69, "themean": 69, "theconcat": 69, "thecomma": 69, "thesum": 150, "theproduct": 5589 }, "geometry": { "type": "Point", "coordinates": [ 113.620605, 13.838080 ] } } +{ "type": "Feature", "properties": { "themax": 69, "themin": 69, "themean": 69, "theconcat": 69, "thecomma": 69, "thesum": 157, "theproduct": 39123 }, "geometry": { "type": "Point", "coordinates": [ 113.620605, 13.838080 ] } } , -{ "type": "Feature", "properties": { "themax": 7, "themin": 7, "themean": 7, "theconcat": 7, "thecomma": 7, "thesum": 100, "theproduct": 651 }, "geometry": { "type": "Point", "coordinates": [ 126.606445, 8.711359 ] } } +{ "type": "Feature", "properties": { "thesum": 93, "themax": 93, "themin": 93, "theproduct": 93, "themean": 93, "theconcat": 93, "thecomma": 93 }, "geometry": { "type": "Point", "coordinates": [ 169.760742, 17.853290 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "themax": 55, "themin": 55, "themean": 55, "theconcat": 55, "thecomma": 55, "thesum": 179, "theproduct": 165165 }, "geometry": { "type": "Point", "coordinates": [ 96.042480, 83.713139 ] } } +{ "type": "Feature", "properties": { "thesum": 55, "themax": 55, "themin": 55, "theproduct": 55, "themean": 55, "theconcat": 55, "thecomma": 55 }, "geometry": { "type": "Point", "coordinates": [ 96.042480, 83.713139 ] } } +, +{ "type": "Feature", "properties": { "themax": 91, "themin": 91, "themean": 91, "theconcat": 91, "thecomma": 91, "thesum": 124, "theproduct": 3003 }, "geometry": { "type": "Point", "coordinates": [ 114.982910, 84.176476 ] } } ] } ] } , diff --git a/tests/accumulate/out/-z5_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma.json b/tests/accumulate/out/-z5_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma.json index 9328c90c0..72b226540 100644 --- a/tests/accumulate/out/-z5_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma.json +++ b/tests/accumulate/out/-z5_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma.json @@ -5,23 +5,27 @@ "description": "tests/accumulate/out/-z5_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o tests/accumulate/out/-z5_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma.json.check.mbtiles -z5 -Ethesum:sum -Etheproduct:product -Ethemax:max -Ethemin:min -Ethemean:mean -Etheconcat:concat -Ethecomma:comma tests/accumulate/in.json", -"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":5,\"fields\":{\"thecomma\":\"Mixed\",\"theconcat\":\"Mixed\",\"themax\":\"Number\",\"themean\":\"Number\",\"themin\":\"Number\",\"theproduct\":\"Number\",\"thesum\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":100,\"geometry\":\"Point\",\"attributeCount\":7,\"attributes\":[{\"attribute\":\"thecomma\",\"count\":152,\"type\":\"mixed\",\"values\":[1,\"1,8,44,6\",10,100,11,12,13,14,15,16,\"16,82\",17,\"17,62\",18,\"18,39\",\"18,39,15\",19,2,\"2,16,82\",20,21,22,23,24,\"24,83\",25,26,\"26,89,25\",\"26,89,25,55,91,33,17,62,69,81,7,93,31\",27,28,29,3,\"3,14\",\"3,14,78,28\",\"3,14,78,28,67,74,65,5,12,94,84,51,57,37,97,53,92,99,90,21,13,38,49,43,54,71,9,32,75,23,72,29,59,42,100,66,22,63,95,73,86,19,11,2,16,82,26,89,25,55,91,33,17,62,69,81,7,93,46,76,48,18,39,15,80,85,24,83,10,35,79,1,31,70,64,8,44,6,52,61,36,87,96,58\",\"3,14,78,28,67,74,65,5,12,94,84,51,57,37,97,53,92,99,90,21,13,38,73,33\",30,31,32,33,34,35,\"35,79\",\"35,79,1,31,70,64,8,44,6,52,61,36,87,96,58\",36,37,38,\"38,49\",\"38,49,43,54,71,9,32\",39,4,40,41,42,43,\"43,54\",44,45,46,47,48,49,\"49,1,31,70,64,8,44,6\",\"49,72,86,46,76,48,18,39,15,80,85,24,83,10\",5,\"5,12\",50,51,52,53,54,55,\"55,91\",\"55,91,33\",56,57,\"57,37\",\"57,37,97\",58,59,6,60,61,\"61,36\",62,63,64,65,\"65,38,49,43,54,71,9,32,75,23,72,29,59,42,100,66,22,63,95,73,86,19,96\",66,\"66,22\",\"66,22,63,95,73,86,19\",67,\"67,38,11,2,16,82\",\"67,65\",\"67,74,65,5,12,94,84,51,38\",68,69,\"69,81\"],\"min\":1,\"max\":100},{\"attribute\":\"theconcat\",\"count\":152,\"type\":\"mixed\",\"values\":[1,10,100,11,12,13,14,15,16,\"1682\",17,\"1762\",18,\"1839\",\"183915\",\"18446\",19,2,20,21,\"21682\",22,23,24,\"2483\",25,26,\"268925\",\"2689255591331762698179331\",27,28,29,3,30,31,\"314\",\"3147828\",\"31478286774655129484515737975392999021133849435471932752372295942100662263957386191121682268925559133176269817934676481839158085248310357913170648446526136879658\",\"3147828677465512948451573797539299902113387333\",32,33,34,35,\"3579\",\"357913170648446526136879658\",36,37,38,\"3849\",\"3849435471932\",39,4,40,41,42,43,\"4354\",44,45,46,47,48,49,\"4913170648446\",\"4972864676481839158085248310\",5,50,51,\"512\",52,53,54,55,\"5591\",\"559133\",56,57,\"5737\",\"573797\",58,59,6,60,61,\"6136\",62,63,64,65,\"6538494354719327523722959421006622639573861996\",66,\"6622\",\"66226395738619\",67,\"67381121682\",\"6765\",\"67746551294845138\",68,69,\"6981\"],\"min\":1,\"max\":100},{\"attribute\":\"themax\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"themean\",\"count\":134,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,14.75,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,28.5,29,3,30,30.75,31,32,33,33.333333333333339,34,34.125,35,36,37,37.333333333333339,38,39,39.5,4,40,41,42,42.285714285714288,43,43.5,44,45,46,46.666666666666667,47,47.333333333333339,48,48.5,48.53333333333333,49,5,50,50.5,50.773809523809529,51,52,52.214285714285718,52.23076923076923,52.333333333333339,53,53.25,53.5,54,54.44444444444444,55,55.69565217391305,55.75,56,57,58,59,59.333333333333339,59.666666666666667,6,60,60.4,60.57142857142857,61,62,62.5,63,63.666666666666667,64,64.66666666666667,65,66,67,68,69,69.33333333333333,7,70],\"min\":1,\"max\":100},{\"attribute\":\"themin\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"theproduct\",\"count\":150,\"type\":\"number\",\"values\":[1,1.1358965693283625e+21,1.5864380887725077e+38,1.6098219495357537e+132,10,100,1036586822040,10530,1054,11,119282,12,12157085491200,13,1312,1320551424,14,14372413440,1452,15,16,16336199880,165165,1693200,17,1725,18,1862,19,1992,2,20,20448,204573,2088,21,2109,2112,2196,22,23,2322,24,2432430,25,26,2624,27,2765,28,288600,29,295891195017600,3,30,300656,31,32,33,34,35,35840,36,3638439,37,38,39,39123,3982783094784,4,4.486244263022014e+22,40,402696,41,42,43,4355,44,45,46,47,48,49,5,5.103920456870841e+38,50,5005,51,517406400,52,53,54,55,5589,56,57,57850,58,59,6],\"min\":1,\"max\":1.6098219495357537e+132},{\"attribute\":\"thesum\",\"count\":136,\"type\":\"number\",\"values\":[1,10,100,101,107,11,112,114,12,123,1278,1281,13,132,14,140,142,146,15,150,156,157,16,17,178,179,18,19,191,2,20,202,208,21,216,22,223,229,23,24,25,250,26,27,273,28,29,296,3,30,302,31,32,33,34,35,352,36,37,38,388,39,4,40,408,41,42,424,4265,43,44,45,46,462,47,48,49,490,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,679,68],\"min\":1,\"max\":4265}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":5,\"fields\":{\"thecomma\":\"Mixed\",\"theconcat\":\"Mixed\",\"themax\":\"Number\",\"themean\":\"Number\",\"themin\":\"Number\",\"theproduct\":\"Number\",\"thesum\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":100,\"geometry\":\"Point\",\"attributeCount\":7,\"attributes\":[{\"attribute\":\"thecomma\",\"count\":155,\"type\":\"mixed\",\"values\":[1,\"1,8,44,6\",10,100,\"100,66,22,63,95,73,86,19,96\",11,12,13,14,15,16,\"16,82\",\"16,82,26\",17,\"17,62\",18,19,2,\"2,16,82,26,89,25\",20,21,\"21,13\",22,23,24,25,26,27,28,29,3,\"3,14\",\"3,14,78,28\",\"3,14,78,28,67,74,65,5,12,94,84,51,57,37,97,53,92,99,90,21,13,38,49,43,54,71,9,32,75,23,72,29,59,42,100,66,22,63,95,73,86,19,11,2,16,82,26,89,25,55,91,33,17,62,69,81,7,93,46,76,48,18,39,15,80,85,24,83,10,35,79,1,31,70,64,8,44,6,52,61,36\",\"3,14,78,28,67,74,65,5,12,94,84,51,57,37,97,53,92,99,90,21,13,38,73,33\",30,31,32,\"32,75\",\"32,75,23\",33,34,35,\"35,79\",36,37,38,\"38,49\",\"38,49,43,54\",\"38,49,43,54,71,9\",39,4,40,41,42,43,44,45,46,47,48,\"48,18,39\",\"48,18,39,15\",49,\"49,1,31,70,64,8,44,6\",\"49,72,86,46,76,48,18,39,15,80,85,24,83,10,35,79,1,31,70,64,8,44,6,52,61,36\",5,\"5,12\",50,51,52,53,\"53,92\",\"53,92,99,90,21,13,73\",54,55,\"55,91,33\",56,57,\"57,37\",\"57,37,97\",58,59,6,60,61,\"61,36\",62,63,\"63,95\",64,65,\"65,38,49,43,54,71,9,32,75,23,72,29,59,42\",66,\"66,22\",\"66,22,63,95,73,86,19\",67,\"67,38,11,2,16,82,26,89,25,55,91,33,17,62,69,81,7,93,31\",\"67,65\",\"67,74\"],\"min\":1,\"max\":100},{\"attribute\":\"theconcat\",\"count\":155,\"type\":\"mixed\",\"values\":[1,10,100,\"1006622639573861996\",11,12,13,14,15,16,\"1682\",\"168226\",17,\"1762\",18,\"18446\",19,2,20,21,\"2113\",\"21682268925\",22,23,24,25,26,27,28,29,3,30,31,\"314\",\"3147828\",\"31478286774655129484515737975392999021133849435471932752372295942100662263957386191121682268925559133176269817934676481839158085248310357913170648446526136\",\"3147828677465512948451573797539299902113387333\",32,\"3275\",\"327523\",33,34,35,\"3579\",36,37,38,\"3849\",\"38494354\",\"38494354719\",39,4,40,41,42,43,44,45,46,47,48,\"481839\",\"48183915\",49,\"4913170648446\",\"4972864676481839158085248310357913170648446526136\",5,50,51,\"512\",52,53,\"5392\",\"53929990211373\",54,55,\"559133\",56,57,\"5737\",\"573797\",58,59,6,60,61,\"6136\",62,63,\"6395\",64,65,\"653849435471932752372295942\",66,\"6622\",\"66226395738619\",67,\"673811216822689255591331762698179331\",\"6765\",\"6774\"],\"min\":1,\"max\":100},{\"attribute\":\"themax\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"themean\",\"count\":136,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,14.75,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,30.75,31,32,33,34,34.125,35,36,37,38,39,39.5,4,40,41,41.333333333333339,42,43,43.333333333333339,43.5,44,44.6,45,46,46.84615384615385,47,47.10526315789474,47.214285714285718,47.333333333333339,48,48.5,49,49.67901234567901,5,50,50.5,51,52,52.333333333333339,52.666666666666667,53,53.25,53.5,54,54.44444444444444,55,55.25,55.75,56,56.333333333333339,57,58,59,59.333333333333339,59.666666666666667,6,60,60.57142857142857,61,62,62.5,63,63.666666666666667,64,65,66,67,68,68.88888888888889,69,69.33333333333333,7,70,70.5],\"min\":1,\"max\":100},{\"attribute\":\"themin\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"theproduct\",\"count\":153,\"type\":\"number\",\"values\":[1,1.5864380887725077e+38,10,100,1036586822040,1054,11,119282,12,12157085491200,13,1312,14,14372413440,1452,15,151798400,158112,16,165165,169320,17,18,1862,19,19336200,2,20,204573,2088,21,2109,2112,2196,22,23,24,2400,2432430,25,26,27,273,2762757396,2765,28,29,295891195017600,3,3.323222085017327e+126,30,300656,31,32,33,33696,34,34112,35,35840,36,3638439,37,38,39,39123,4,40,402696,41,42,43,4323564,4355,44,45,46,4681698000,47,48,484416,4876,49,4958,5,5.128932469715791e+22,50,505440,51,5174064,52,53,54,55,55200,56,57,58,59,5985],\"min\":1,\"max\":3.323222085017327e+126},{\"attribute\":\"thesum\",\"count\":142,\"type\":\"number\",\"values\":[1,10,100,101,105,107,11,114,12,120,1218,123,124,1278,13,130,132,14,141,142,145,15,157,158,16,169,17,178,179,18,183,184,19,191,192,2,20,202,208,21,22,221,223,229,23,24,240,241,25,250,26,264,27,273,28,29,3,30,31,316,32,33,34,35,36,37,38,39,4,40,4024,408,41,42,424,43,44,441,45,46,47,48,49,490,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,620],\"min\":1,\"max\":4024}]}]}}", "maxzoom": "5", "minzoom": "0", "name": "tests/accumulate/out/-z5_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":83},{\"dropped_by_rate\":89},{\"dropped_by_rate\":69},{\"dropped_by_rate\":39},{\"dropped_by_rate\":11},{}]", +"strategies": "[{\"dropped_by_rate\":82},{\"dropped_by_rate\":89},{\"dropped_by_rate\":70},{\"dropped_by_rate\":43},{\"dropped_by_rate\":14},{}]", "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": { "thesum": 4265, "themax": 100, "themin": 1, "theproduct": 1.6098219495357537e+132, "themean": 50.773809523809529, "theconcat": "31478286774655129484515737975392999021133849435471932752372295942100662263957386191121682268925559133176269817934676481839158085248310357913170648446526136879658", "thecomma": "3,14,78,28,67,74,65,5,12,94,84,51,57,37,97,53,92,99,90,21,13,38,49,43,54,71,9,32,75,23,72,29,59,42,100,66,22,63,95,73,86,19,11,2,16,82,26,89,25,55,91,33,17,62,69,81,7,93,46,76,48,18,39,15,80,85,24,83,10,35,79,1,31,70,64,8,44,6,52,61,36,87,96,58" }, "geometry": { "type": "Point", "coordinates": [ -147.392578, 84.778533 ] } } +{ "type": "Feature", "properties": { "thesum": 4024, "themax": 100, "themin": 1, "theproduct": 3.323222085017327e+126, "themean": 49.67901234567901, "theconcat": "31478286774655129484515737975392999021133849435471932752372295942100662263957386191121682268925559133176269817934676481839158085248310357913170648446526136", "thecomma": "3,14,78,28,67,74,65,5,12,94,84,51,57,37,97,53,92,99,90,21,13,38,49,43,54,71,9,32,75,23,72,29,59,42,100,66,22,63,95,73,86,19,11,2,16,82,26,89,25,55,91,33,17,62,69,81,7,93,46,76,48,18,39,15,80,85,24,83,10,35,79,1,31,70,64,8,44,6,52,61,36" }, "geometry": { "type": "Point", "coordinates": [ -147.392578, 84.778533 ] } } +, +{ "type": "Feature", "properties": { "thesum": 241, "themax": 96, "themin": 58, "theproduct": 484416, "themean": 80.33333333333333, "theconcat": "879658", "thecomma": "87,96,58" }, "geometry": { "type": "Point", "coordinates": [ 165.498047, -69.869892 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 1281, "themax": 100, "themin": 9, "theproduct": 5.103920456870841e+38, "themean": 55.69565217391305, "theconcat": "6538494354719327523722959421006622639573861996", "thecomma": "65,38,49,43,54,71,9,32,75,23,72,29,59,42,100,66,22,63,95,73,86,19,96" }, "geometry": { "type": "Point", "coordinates": [ -166.420898, 2.767478 ] } } +{ "type": "Feature", "properties": { "thesum": 661, "themax": 75, "themin": 9, "theproduct": 5.128932469715791e+22, "themean": 47.214285714285718, "theconcat": "653849435471932752372295942", "thecomma": "65,38,49,43,54,71,9,32,75,23,72,29,59,42" }, "geometry": { "type": "Point", "coordinates": [ -166.420898, 2.767478 ] } } +, +{ "type": "Feature", "properties": { "thesum": 620, "themax": 100, "themin": 19, "theproduct": 9951233491584000, "themean": 68.88888888888889, "theconcat": "1006622639573861996", "thecomma": "100,66,22,63,95,73,86,19,96" }, "geometry": { "type": "Point", "coordinates": [ -123.925781, -81.873641 ] } } ] } ] } , @@ -33,31 +37,31 @@ , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 731, "themax": 86, "themin": 10, "theproduct": 7.2621682598253038e+22, "themean": 52.214285714285718, "theconcat": "4972864676481839158085248310", "thecomma": "49,72,86,46,76,48,18,39,15,80,85,24,83,10" }, "geometry": { "type": "Point", "coordinates": [ 181.450195, -18.020528 ] } } +{ "type": "Feature", "properties": { "thesum": 1218, "themax": 86, "themin": 1, "theproduct": 6.725595499063168e+39, "themean": 46.84615384615385, "theconcat": "4972864676481839158085248310357913170648446526136", "thecomma": "49,72,86,46,76,48,18,39,15,80,85,24,83,10,35,79,1,31,70,64,8,44,6,52,61,36" }, "geometry": { "type": "Point", "coordinates": [ 181.450195, -18.020528 ] } } , -{ "type": "Feature", "properties": { "thesum": 728, "themax": 96, "themin": 1, "theproduct": 4.486244263022014e+22, "themean": 48.53333333333333, "theconcat": "357913170648446526136879658", "thecomma": "35,79,1,31,70,64,8,44,6,52,61,36,87,96,58" }, "geometry": { "type": "Point", "coordinates": [ 57.963867, -82.232057 ] } } +{ "type": "Feature", "properties": { "thesum": 241, "themax": 96, "themin": 58, "theproduct": 484416, "themean": 80.33333333333333, "theconcat": "879658", "thecomma": "87,96,58" }, "geometry": { "type": "Point", "coordinates": [ 165.541992, -69.869892 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 216, "themax": 82, "themin": 2, "theproduct": 73487744, "themean": 36, "theconcat": "67381121682", "thecomma": "67,38,11,2,16,82" }, "geometry": { "type": "Point", "coordinates": [ 182.548828, 22.268764 ] } } -, -{ "type": "Feature", "properties": { "thesum": 679, "themax": 93, "themin": 7, "theproduct": 1.1358965693283625e+21, "themean": 52.23076923076923, "theconcat": "2689255591331762698179331", "thecomma": "26,89,25,55,91,33,17,62,69,81,7,93,31" }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 42.747012 ] } } +{ "type": "Feature", "properties": { "thesum": 895, "themax": 93, "themin": 2, "theproduct": 8.347447629728093e+28, "themean": 47.10526315789474, "theconcat": "673811216822689255591331762698179331", "thecomma": "67,38,11,2,16,82,26,89,25,55,91,33,17,62,69,81,7,93,31" }, "geometry": { "type": "Point", "coordinates": [ 182.548828, 22.268764 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 302, "themax": 100, "themin": 29, "theproduct": 517406400, "themean": 60.4, "theconcat": "72295942100", "thecomma": "72,29,59,42,100" }, "geometry": { "type": "Point", "coordinates": [ -179.318848, -69.029279 ] } } +{ "type": "Feature", "properties": { "thesum": 202, "themax": 72, "themin": 29, "theproduct": 5174064, "themean": 50.5, "theconcat": "72295942", "thecomma": "72,29,59,42" }, "geometry": { "type": "Point", "coordinates": [ -179.318848, -69.029279 ] } } +, +{ "type": "Feature", "properties": { "thesum": 100, "themax": 100, "themin": 100, "theproduct": 100, "themean": 100, "theconcat": 100, "thecomma": 100 }, "geometry": { "type": "Point", "coordinates": [ -123.947754, -81.873641 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 296, "themax": 71, "themin": 9, "theproduct": 88408236672, "themean": 42.285714285714288, "theconcat": "3849435471932", "thecomma": "38,49,43,54,71,9,32" }, "geometry": { "type": "Point", "coordinates": [ -176.462402, -1.186439 ] } } +{ "type": "Feature", "properties": { "thesum": 264, "themax": 71, "themin": 9, "theproduct": 2762757396, "themean": 44, "theconcat": "38494354719", "thecomma": "38,49,43,54,71,9" }, "geometry": { "type": "Point", "coordinates": [ -176.462402, -1.186439 ] } } , -{ "type": "Feature", "properties": { "thesum": 98, "themax": 75, "themin": 23, "theproduct": 1725, "themean": 49, "theconcat": "7523", "thecomma": "75,23" }, "geometry": { "type": "Point", "coordinates": [ -157.214355, -62.925236 ] } } +{ "type": "Feature", "properties": { "thesum": 130, "themax": 75, "themin": 23, "theproduct": 55200, "themean": 43.333333333333339, "theconcat": "327523", "thecomma": "32,75,23" }, "geometry": { "type": "Point", "coordinates": [ -156.335449, -54.162434 ] } } ] } ] } , @@ -81,9 +85,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 53, "themax": 53, "themin": 53, "theproduct": 53, "themean": 53, "theconcat": 53, "thecomma": 53 }, "geometry": { "type": "Point", "coordinates": [ -84.902344, 62.165502 ] } } -, -{ "type": "Feature", "properties": { "thesum": 388, "themax": 99, "themin": 13, "theproduct": 16336199880, "themean": 64.66666666666667, "theconcat": "929990211373", "thecomma": "92,99,90,21,13,73" }, "geometry": { "type": "Point", "coordinates": [ -63.369141, 58.008098 ] } } +{ "type": "Feature", "properties": { "thesum": 441, "themax": 99, "themin": 13, "theproduct": 865818593640, "themean": 63, "theconcat": "53929990211373", "thecomma": "53,92,99,90,21,13,73" }, "geometry": { "type": "Point", "coordinates": [ -84.902344, 62.165502 ] } } ] } ] } , @@ -95,9 +97,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 202, "themax": 85, "themin": 10, "theproduct": 1693200, "themean": 50.5, "theconcat": "85248310", "thecomma": "85,24,83,10" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, -80.386396 ] } } -, -{ "type": "Feature", "properties": { "thesum": 114, "themax": 79, "themin": 35, "theproduct": 2765, "themean": 57, "theconcat": "3579", "thecomma": "35,79" }, "geometry": { "type": "Point", "coordinates": [ 57.963867, -82.229086 ] } } +{ "type": "Feature", "properties": { "thesum": 316, "themax": 85, "themin": 10, "theproduct": 4681698000, "themean": 52.666666666666667, "theconcat": "852483103579", "thecomma": "85,24,83,10,35,79" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, -80.386396 ] } } ] } ] } , @@ -109,9 +109,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 100, "themax": 82, "themin": 2, "theproduct": 2624, "themean": 33.333333333333339, "theconcat": "21682", "thecomma": "2,16,82" }, "geometry": { "type": "Point", "coordinates": [ 14.062500, 46.724800 ] } } -, -{ "type": "Feature", "properties": { "thesum": 140, "themax": 89, "themin": 25, "theproduct": 57850, "themean": 46.666666666666667, "theconcat": "268925", "thecomma": "26,89,25" }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 42.747012 ] } } +{ "type": "Feature", "properties": { "thesum": 240, "themax": 89, "themin": 2, "theproduct": 151798400, "themean": 40, "theconcat": "21682268925", "thecomma": "2,16,82,26,89,25" }, "geometry": { "type": "Point", "coordinates": [ 14.062500, 46.724800 ] } } ] } ] } , @@ -123,7 +121,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 462, "themax": 96, "themin": 36, "theproduct": 3982783094784, "themean": 66, "theconcat": "72526136879658", "thecomma": "72,52,61,36,87,96,58" }, "geometry": { "type": "Point", "coordinates": [ 180.681152, -69.029279 ] } } +{ "type": "Feature", "properties": { "thesum": 221, "themax": 72, "themin": 36, "theproduct": 8221824, "themean": 55.25, "theconcat": "72526136", "thecomma": "72,52,61,36" }, "geometry": { "type": "Point", "coordinates": [ 180.681152, -69.029279 ] } } +, +{ "type": "Feature", "properties": { "thesum": 241, "themax": 96, "themin": 58, "theproduct": 484416, "themean": 80.33333333333333, "theconcat": "879658", "thecomma": "87,96,58" }, "geometry": { "type": "Point", "coordinates": [ 165.520020, -69.862328 ] } } ] } ] } , @@ -157,25 +157,21 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 112, "themax": 71, "themin": 9, "theproduct": 20448, "themean": 37.333333333333339, "theconcat": "71932", "thecomma": "71,9,32" }, "geometry": { "type": "Point", "coordinates": [ -171.837158, -55.021725 ] } } +{ "type": "Feature", "properties": { "thesum": 80, "themax": 71, "themin": 9, "theproduct": 639, "themean": 40, "theconcat": "719", "thecomma": "71,9" }, "geometry": { "type": "Point", "coordinates": [ -171.837158, -55.021725 ] } } , -{ "type": "Feature", "properties": { "thesum": 75, "themax": 75, "themin": 75, "theproduct": 75, "themean": 75, "theconcat": 75, "thecomma": 75 }, "geometry": { "type": "Point", "coordinates": [ -157.214355, -62.925236 ] } } +{ "type": "Feature", "properties": { "thesum": 107, "themax": 75, "themin": 32, "theproduct": 2400, "themean": 53.5, "theconcat": "3275", "thecomma": "32,75" }, "geometry": { "type": "Point", "coordinates": [ -156.346436, -54.156001 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 87, "themax": 49, "themin": 38, "theproduct": 1862, "themean": 43.5, "theconcat": "3849", "thecomma": "38,49" }, "geometry": { "type": "Point", "coordinates": [ -176.462402, -1.175455 ] } } -, -{ "type": "Feature", "properties": { "thesum": 97, "themax": 54, "themin": 43, "theproduct": 2322, "themean": 48.5, "theconcat": "4354", "thecomma": "43,54" }, "geometry": { "type": "Point", "coordinates": [ -168.145752, -37.378888 ] } } +{ "type": "Feature", "properties": { "thesum": 184, "themax": 54, "themin": 38, "theproduct": 4323564, "themean": 46, "theconcat": "38494354", "thecomma": "38,49,43,54" }, "geometry": { "type": "Point", "coordinates": [ -176.462402, -1.175455 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 67, "themax": 67, "themin": 67, "theproduct": 67, "themean": 67, "theconcat": 67, "thecomma": 67 }, "geometry": { "type": "Point", "coordinates": [ -177.440186, 22.268764 ] } } -, -{ "type": "Feature", "properties": { "thesum": 156, "themax": 74, "themin": 5, "theproduct": 288600, "themean": 39, "theconcat": "7465512", "thecomma": "74,65,5,12" }, "geometry": { "type": "Point", "coordinates": [ -159.598389, 33.513919 ] } } +{ "type": "Feature", "properties": { "thesum": 223, "themax": 74, "themin": 5, "theproduct": 19336200, "themean": 44.6, "theconcat": "677465512", "thecomma": "67,74,65,5,12" }, "geometry": { "type": "Point", "coordinates": [ -177.440186, 22.268764 ] } } ] } ] } , @@ -223,9 +219,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 63, "themax": 63, "themin": 63, "theproduct": 63, "themean": 63, "theconcat": 63, "thecomma": 63 }, "geometry": { "type": "Point", "coordinates": [ -50.734863, -49.045070 ] } } -, -{ "type": "Feature", "properties": { "thesum": 95, "themax": 95, "themin": 95, "theproduct": 95, "themean": 95, "theconcat": 95, "thecomma": 95 }, "geometry": { "type": "Point", "coordinates": [ -56.678467, -62.557920 ] } } +{ "type": "Feature", "properties": { "thesum": 158, "themax": 95, "themin": 63, "theproduct": 5985, "themean": 79, "theconcat": "6395", "thecomma": "63,95" }, "geometry": { "type": "Point", "coordinates": [ -50.734863, -49.045070 ] } } ] } ] } , @@ -237,9 +231,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 53, "themax": 53, "themin": 53, "theproduct": 53, "themean": 53, "theconcat": 53, "thecomma": 53 }, "geometry": { "type": "Point", "coordinates": [ -84.902344, 62.165502 ] } } -, -{ "type": "Feature", "properties": { "thesum": 92, "themax": 92, "themin": 92, "theproduct": 92, "themean": 92, "theconcat": 92, "thecomma": 92 }, "geometry": { "type": "Point", "coordinates": [ -63.358154, 58.008098 ] } } +{ "type": "Feature", "properties": { "thesum": 145, "themax": 92, "themin": 53, "theproduct": 4876, "themean": 72.5, "theconcat": "5392", "thecomma": "53,92" }, "geometry": { "type": "Point", "coordinates": [ -84.902344, 62.165502 ] } } ] } ] } , @@ -281,17 +273,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 85, "themax": 85, "themin": 85, "theproduct": 85, "themean": 85, "theconcat": 85, "thecomma": 85 }, "geometry": { "type": "Point", "coordinates": [ 7.393799, -80.388230 ] } } -, -{ "type": "Feature", "properties": { "thesum": 107, "themax": 83, "themin": 24, "theproduct": 1992, "themean": 53.5, "theconcat": "2483", "thecomma": "24,83" }, "geometry": { "type": "Point", "coordinates": [ 13.458252, -81.542544 ] } } +{ "type": "Feature", "properties": { "thesum": 192, "themax": 85, "themin": 24, "theproduct": 169320, "themean": 64, "theconcat": "852483", "thecomma": "85,24,83" }, "geometry": { "type": "Point", "coordinates": [ 7.393799, -80.388230 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 48, "themax": 48, "themin": 48, "theproduct": 48, "themean": 48, "theconcat": 48, "thecomma": 48 }, "geometry": { "type": "Point", "coordinates": [ 3.757324, -46.957761 ] } } -, -{ "type": "Feature", "properties": { "thesum": 72, "themax": 39, "themin": 15, "theproduct": 10530, "themean": 24, "theconcat": "183915", "thecomma": "18,39,15" }, "geometry": { "type": "Point", "coordinates": [ 6.569824, -44.801327 ] } } +{ "type": "Feature", "properties": { "thesum": 120, "themax": 48, "themin": 15, "theproduct": 505440, "themean": 30, "theconcat": "48183915", "thecomma": "48,18,39,15" }, "geometry": { "type": "Point", "coordinates": [ 3.757324, -46.957761 ] } } ] } ] } , @@ -309,9 +297,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 100, "themax": 82, "themin": 2, "theproduct": 2624, "themean": 33.333333333333339, "theconcat": "21682", "thecomma": "2,16,82" }, "geometry": { "type": "Point", "coordinates": [ 14.062500, 46.724800 ] } } +{ "type": "Feature", "properties": { "thesum": 2, "themax": 2, "themin": 2, "theproduct": 2, "themean": 2, "theconcat": 2, "thecomma": 2 }, "geometry": { "type": "Point", "coordinates": [ 14.062500, 46.724800 ] } } , -{ "type": "Feature", "properties": { "thesum": 26, "themax": 26, "themin": 26, "theproduct": 26, "themean": 26, "theconcat": 26, "thecomma": 26 }, "geometry": { "type": "Point", "coordinates": [ 44.022217, 42.747012 ] } } +{ "type": "Feature", "properties": { "thesum": 124, "themax": 82, "themin": 16, "theproduct": 34112, "themean": 41.333333333333339, "theconcat": "168226", "thecomma": "16,82,26" }, "geometry": { "type": "Point", "coordinates": [ 24.664307, 60.294299 ] } } ] } ] } , @@ -367,7 +355,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 146, "themax": 91, "themin": 55, "theproduct": 5005, "themean": 73, "theconcat": "5591", "thecomma": "55,91" }, "geometry": { "type": "Point", "coordinates": [ 96.031494, 83.713139 ] } } +{ "type": "Feature", "properties": { "thesum": 55, "themax": 55, "themin": 55, "theproduct": 55, "themean": 55, "theconcat": 55, "thecomma": 55 }, "geometry": { "type": "Point", "coordinates": [ 96.031494, 83.713139 ] } } +, +{ "type": "Feature", "properties": { "thesum": 91, "themax": 91, "themin": 91, "theproduct": 91, "themean": 91, "theconcat": 91, "thecomma": 91 }, "geometry": { "type": "Point", "coordinates": [ 114.971924, 84.177591 ] } } ] } ] } , @@ -379,7 +369,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 352, "themax": 96, "themin": 36, "theproduct": 1320551424, "themean": 70.4, "theconcat": "7261368796", "thecomma": "72,61,36,87,96" }, "geometry": { "type": "Point", "coordinates": [ 180.681152, -69.033211 ] } } +{ "type": "Feature", "properties": { "thesum": 169, "themax": 72, "themin": 36, "theproduct": 158112, "themean": 56.333333333333339, "theconcat": "726136", "thecomma": "72,61,36" }, "geometry": { "type": "Point", "coordinates": [ 180.681152, -69.033211 ] } } +, +{ "type": "Feature", "properties": { "thesum": 183, "themax": 96, "themin": 87, "theproduct": 8352, "themean": 91.5, "theconcat": "8796", "thecomma": "87,96" }, "geometry": { "type": "Point", "coordinates": [ 165.531006, -69.862328 ] } } ] } ] } , @@ -423,7 +415,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 80, "themax": 71, "themin": 9, "theproduct": 639, "themean": 40, "theconcat": "719", "thecomma": "71,9" }, "geometry": { "type": "Point", "coordinates": [ -171.837158, -55.021725 ] } } +{ "type": "Feature", "properties": { "thesum": 71, "themax": 71, "themin": 71, "theproduct": 71, "themean": 71, "theconcat": 71, "thecomma": 71 }, "geometry": { "type": "Point", "coordinates": [ -171.837158, -55.021725 ] } } +, +{ "type": "Feature", "properties": { "thesum": 9, "themax": 9, "themin": 9, "theproduct": 9, "themean": 9, "theconcat": 9, "thecomma": 9 }, "geometry": { "type": "Point", "coordinates": [ -168.585205, -52.643063 ] } } ] } ] } , @@ -447,9 +441,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 67, "themax": 67, "themin": 67, "theproduct": 67, "themean": 67, "theconcat": 67, "thecomma": 67 }, "geometry": { "type": "Point", "coordinates": [ -177.445679, 22.268764 ] } } -, -{ "type": "Feature", "properties": { "thesum": 74, "themax": 74, "themin": 74, "theproduct": 74, "themean": 74, "theconcat": 74, "thecomma": 74 }, "geometry": { "type": "Point", "coordinates": [ -159.598389, 33.513919 ] } } +{ "type": "Feature", "properties": { "thesum": 141, "themax": 74, "themin": 67, "theproduct": 4958, "themean": 70.5, "theconcat": "6774", "thecomma": "67,74" }, "geometry": { "type": "Point", "coordinates": [ -177.445679, 22.268764 ] } } ] } ] } , @@ -619,9 +611,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 21, "themax": 21, "themin": 21, "theproduct": 21, "themean": 21, "theconcat": 21, "thecomma": 21 }, "geometry": { "type": "Point", "coordinates": [ -15.166626, 44.154622 ] } } -, -{ "type": "Feature", "properties": { "thesum": 13, "themax": 13, "themin": 13, "theproduct": 13, "themean": 13, "theconcat": 13, "thecomma": 13 }, "geometry": { "type": "Point", "coordinates": [ -3.707886, 47.349989 ] } } +{ "type": "Feature", "properties": { "thesum": 34, "themax": 21, "themin": 13, "theproduct": 273, "themean": 17, "theconcat": "2113", "thecomma": "21,13" }, "geometry": { "type": "Point", "coordinates": [ -15.166626, 44.154622 ] } } ] } ] } , @@ -647,9 +637,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 48, "themax": 48, "themin": 48, "theproduct": 48, "themean": 48, "theconcat": 48, "thecomma": 48 }, "geometry": { "type": "Point", "coordinates": [ 3.757324, -46.957761 ] } } -, -{ "type": "Feature", "properties": { "thesum": 57, "themax": 39, "themin": 18, "theproduct": 702, "themean": 28.5, "theconcat": "1839", "thecomma": "18,39" }, "geometry": { "type": "Point", "coordinates": [ 6.564331, -44.805224 ] } } +{ "type": "Feature", "properties": { "thesum": 105, "themax": 48, "themin": 18, "theproduct": 33696, "themean": 35, "theconcat": "481839", "thecomma": "48,18,39" }, "geometry": { "type": "Point", "coordinates": [ 3.757324, -46.957761 ] } } ] } ] } , @@ -767,9 +755,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 150, "themax": 81, "themin": 69, "theproduct": 5589, "themean": 75, "theconcat": "6981", "thecomma": "69,81" }, "geometry": { "type": "Point", "coordinates": [ 113.615112, 13.838080 ] } } -, -{ "type": "Feature", "properties": { "thesum": 7, "themax": 7, "themin": 7, "theproduct": 7, "themean": 7, "theconcat": 7, "thecomma": 7 }, "geometry": { "type": "Point", "coordinates": [ 126.606445, 8.722218 ] } } +{ "type": "Feature", "properties": { "thesum": 157, "themax": 81, "themin": 7, "theproduct": 39123, "themean": 52.333333333333339, "theconcat": "69817", "thecomma": "69,81,7" }, "geometry": { "type": "Point", "coordinates": [ 113.615112, 13.838080 ] } } ] } ] } , diff --git a/tests/epsg-3857/out/-yNAME_-z5_-sEPSG%3a3857.json b/tests/epsg-3857/out/-yNAME_-z5_-sEPSG%3a3857.json index c7002f265..c5860ec2d 100644 --- a/tests/epsg-3857/out/-yNAME_-z5_-sEPSG%3a3857.json +++ b/tests/epsg-3857/out/-yNAME_-z5_-sEPSG%3a3857.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/epsg-3857/out/-yNAME_-z5_-sEPSG%3a3857.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":239},{\"dropped_by_rate\":208},{\"dropped_by_rate\":121},{}]", +"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":240},{\"dropped_by_rate\":209},{\"dropped_by_rate\":124},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,9 +17,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -33,7 +33,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } ] } ] } , @@ -41,9 +41,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -51,11 +49,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.847573 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.487513 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -68,8 +68,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -83,11 +81,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -97,9 +95,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } ] } ] } , @@ -107,19 +103,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -127,7 +123,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -136,6 +132,8 @@ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , @@ -149,9 +147,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -165,7 +161,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } ] } ] } , @@ -175,11 +171,11 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.298199 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.906006, 18.469189 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.143678 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -190,6 +186,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -203,17 +201,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.912938 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } ] } ] } , @@ -221,13 +219,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -235,15 +233,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.888813 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.987504 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } ] } ] } , @@ -251,17 +251,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.910889, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } ] } @@ -277,31 +277,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -309,11 +305,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.570705 ] } } ] } ] } , @@ -333,15 +331,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.470736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } ] } ] } , @@ -368,8 +364,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.440694 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.620794 ] } } ] } ] } , @@ -377,7 +371,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.671236 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } ] } ] } , @@ -390,8 +384,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } -, -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } ] } ] } , @@ -399,11 +391,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.764038, 17.250990 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.203491, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270142, 12.152116 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535522, 8.966471 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.900513, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } ] } @@ -415,7 +407,7 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.008667, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -423,7 +415,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701294, 45.417732 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -438,6 +432,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.916870, -15.781682 ] } } ] } ] } , @@ -445,11 +441,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.715454, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.386108, 15.300081 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.737671, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.210327, 13.149027 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.504016 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167847, 5.834616 ] } } ] } @@ -471,15 +467,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.473755, 14.716448 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.530332 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -487,7 +481,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.600894 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.651489, 26.115986 ] } } ] } @@ -508,6 +502,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.920572 ] } } ] } ] } , @@ -515,7 +511,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.335081 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.329979 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } ] } ] } , @@ -525,11 +521,13 @@ , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.521362, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389282, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783569, 3.749153 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.561401, 4.362843 ] } } ] } ] } , @@ -539,7 +537,7 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.518433, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.893426 ] } } ] } ] } , @@ -549,23 +547,23 @@ , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.916382, 52.352119 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.334106, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.519653, 47.133688 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.410278, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.000366, 52.251346 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.001587, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453003, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.442017, 43.933506 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.820812 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165161, 42.666281 ] } } ] } @@ -574,6 +572,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.750122, 59.919237 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } ] } ] } , @@ -583,7 +583,7 @@ , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.229370, -25.705888 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.318037 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.590942, -25.953106 ] } } ] } @@ -595,11 +595,11 @@ , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.360962, -3.376340 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.041870, -17.816686 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.800990 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } ] } ] } , @@ -607,11 +607,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.536011, 15.591293 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.580200, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.203491, 15.353059 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.699341, 9.031578 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.368042, 2.064982 ] } } ] } ] } , @@ -619,13 +621,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.009399, 41.108330 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.983175 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.250610, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.874976 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511108, 40.183070 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.930786, 31.952162 ] } } ] } @@ -635,11 +635,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.317993, 54.683359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.433017 ] } } +{ "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.318481, 42.682435 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.726230 ] } } ] } ] } , @@ -647,7 +647,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.933472, 60.177038 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.947970 ] } } ] } ] } , @@ -655,7 +657,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.453491, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -669,13 +671,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.861450, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.670685 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.586548, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.365845, 24.467151 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.595581, 23.614329 ] } } ] } ] } , @@ -689,7 +689,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855835, 19.015384 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.504028, 4.165637 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.953003, 6.899161 ] } } ] } @@ -701,11 +701,9 @@ , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.598992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.324585, 22.497332 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.163452, 33.701493 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.642944, 27.474161 ] } } ] } ] } , @@ -714,8 +712,6 @@ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.179343 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.296265, 41.310824 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.806783 ] } } ] } ] } , @@ -729,13 +725,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.168823, 16.783506 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.963058 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.167940 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } ] } ] } , @@ -743,7 +735,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.670991 ] } } ] } ] } , @@ -762,10 +754,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.186401, 22.309426 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , @@ -775,7 +763,9 @@ , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.437378, 31.217499 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.755005, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.569214, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.566351 ] } } ] } ] } , @@ -823,7 +813,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.445435, -18.135412 ] } } ] } ] } , @@ -831,7 +821,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.153687, 6.915521 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.381226, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.018188, 1.334718 ] } } ] } ] } , diff --git a/tests/multilayer/out/-ltogether_-z3.json b/tests/multilayer/out/-ltogether_-z3.json index 6a4148c44..cf75f75e8 100644 --- a/tests/multilayer/out/-ltogether_-z3.json +++ b/tests/multilayer/out/-ltogether_-z3.json @@ -9,7 +9,7 @@ "maxzoom": "3", "minzoom": "0", "name": "tests/multilayer/out/-ltogether_-z3.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":8},{\"dropped_by_rate\":7},{\"dropped_by_rate\":5},{}]", +"strategies": "[{\"dropped_by_rate\":8},{\"dropped_by_rate\":7},{\"dropped_by_rate\":4},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -441,12 +441,12 @@ , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -81.474609, 30.713504 ], [ -81.914062, 30.826781 ], [ -82.001953, 30.789037 ], [ -82.001953, 30.448674 ], [ -82.133789, 30.334954 ], [ -82.221680, 30.524413 ], [ -84.858398, 30.713504 ], [ -84.990234, 30.977609 ] ] } } , +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272 }, "geometry": { "type": "Point", "coordinates": [ -80.200195, 25.799891 ] } } +, { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -77.124023, 38.925229 ], [ -77.519531, 39.095963 ], [ -77.431641, 39.198205 ], [ -77.739258, 39.334297 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -75.761719, 39.707187 ], [ -79.453125, 39.707187 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -76.992188, 38.891033 ] } } -, { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -77.036133, 38.788345 ], [ -77.124023, 38.925229 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -77.036133, 38.788345 ], [ -76.904297, 38.891033 ], [ -77.036133, 38.993572 ], [ -77.124023, 38.925229 ] ] } } @@ -681,6 +681,8 @@ , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -84.309082, 34.976002 ], [ -85.627441, 34.976002 ] ] } } , +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "LATITUDE": 33.830014, "LONGITUDE": -84.399949, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128, "MAX_POP20": 3896411, "MAX_POP50": 3910939, "MAX_POP300": 3910939, "MAX_POP310": 3910939, "MAX_NATSCA": 300, "MIN_AREAKM": 2761, "MAX_AREAKM": 4086, "MIN_AREAMI": 1066, "MAX_AREAMI": 1578, "MIN_PERKM": 1494, "MAX_PERKM": 2459, "MIN_PERMI": 929, "MAX_PERMI": 1528, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.608333, "MIN_BBXMAX": -83.879976, "MAX_BBXMAX": -83.858333, "MIN_BBYMIN": 33.383333, "MAX_BBYMIN": 33.383333, "MIN_BBYMAX": 34.202715, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.328739, "MEAN_BBYC": 33.851552, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 422908, "ELEVATION": 320, "GTOPO30": 305, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513, "POP1955": 631, "POP1960": 776, "POP1965": 959, "POP1970": 1182, "POP1975": 1386, "POP1980": 1625, "POP1985": 1879, "POP1990": 2184, "POP1995": 2781, "POP2000": 3542, "POP2005": 4307, "POP2010": 4506, "POP2015": 4695, "POP2020": 4888, "POP2025": 5035, "POP2050": 5151 }, "geometry": { "type": "Point", "coordinates": [ -84.396973, 33.833920 ] } } +, { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -84.990234, 30.977609 ], [ -85.122070, 31.222197 ], [ -85.056152, 31.578535 ], [ -85.122070, 31.765537 ], [ -85.056152, 32.082575 ], [ -84.902344, 32.249974 ], [ -85.122070, 32.750323 ], [ -85.627441, 34.976002 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -84.814453, 39.095963 ], [ -84.484863, 39.078908 ], [ -84.309082, 38.976492 ], [ -84.023438, 38.754083 ], [ -83.825684, 38.685510 ], [ -83.671875, 38.599700 ], [ -83.430176, 38.634036 ], [ -83.254395, 38.582526 ], [ -82.858887, 38.651198 ], [ -82.770996, 38.513788 ], [ -82.573242, 38.410558 ] ] } } @@ -715,12 +717,12 @@ , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -81.474609, 30.732393 ], [ -81.694336, 30.751278 ], [ -81.892090, 30.807911 ], [ -82.023926, 30.789037 ], [ -82.023926, 30.429730 ], [ -82.155762, 30.353916 ], [ -82.221680, 30.524413 ], [ -83.847656, 30.675715 ], [ -84.858398, 30.713504 ], [ -84.990234, 30.977609 ] ] } } , +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272 }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.780107 ] } } +, { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -77.124023, 38.925229 ], [ -77.299805, 39.044786 ], [ -77.519531, 39.095963 ], [ -77.431641, 39.215231 ], [ -77.563477, 39.283294 ], [ -77.717285, 39.317300 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -75.783691, 39.724089 ], [ -79.475098, 39.724089 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.891033 ] } } -, { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -77.036133, 38.788345 ], [ -77.036133, 38.839708 ], [ -77.124023, 38.925229 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -77.036133, 38.788345 ], [ -76.904297, 38.873929 ], [ -77.036133, 38.976492 ], [ -77.124023, 38.925229 ] ] } } diff --git a/tests/multilayer/out/-nseparate_-z3.json b/tests/multilayer/out/-nseparate_-z3.json index 7ebbbcdce..0d302b9d8 100644 --- a/tests/multilayer/out/-nseparate_-z3.json +++ b/tests/multilayer/out/-nseparate_-z3.json @@ -9,7 +9,7 @@ "maxzoom": "3", "minzoom": "0", "name": "separate", -"strategies": "[{\"dropped_by_rate\":8},{\"dropped_by_rate\":7},{\"dropped_by_rate\":5},{}]", +"strategies": "[{\"dropped_by_rate\":8},{\"dropped_by_rate\":7},{\"dropped_by_rate\":4},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -467,7 +467,7 @@ { "type": "FeatureCollection", "properties": { "layer": "places", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.740008, "LONGITUDE": -122.459978, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -76.992188, 38.891033 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272 }, "geometry": { "type": "Point", "coordinates": [ -80.200195, 25.799891 ] } } ] } ] } , @@ -745,7 +745,9 @@ { "type": "FeatureCollection", "properties": { "layer": "places", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "LATITUDE": 41.829991, "LONGITUDE": -87.750055, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798, "MAX_POP20": 5069998, "MAX_POP50": 8416660, "MAX_POP300": 8416660, "MAX_POP310": 8450289, "MAX_NATSCA": 300, "MIN_AREAKM": 1345, "MAX_AREAKM": 4804, "MIN_AREAMI": 519, "MAX_AREAMI": 1855, "MIN_PERKM": 471, "MAX_PERKM": 2946, "MIN_PERMI": 293, "MAX_PERMI": 1830, "MIN_BBXMIN": -88.408333, "MAX_BBXMIN": -88.03629, "MIN_BBXMAX": -87.528138, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.391667, "MAX_BBYMIN": 41.458333, "MIN_BBYMAX": 42.000972, "MAX_BBYMAX": 42.491667, "MEAN_BBXC": -87.85874, "MEAN_BBYC": 41.832719, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2841952, "ELEVATION": 179, "GTOPO30": 181, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999, "POP1955": 5565, "POP1960": 6183, "POP1965": 6639, "POP1970": 7106, "POP1975": 7160, "POP1980": 7216, "POP1985": 7285, "POP1990": 7374, "POP1995": 7839, "POP2000": 8333, "POP2005": 8820, "POP2010": 8990, "POP2015": 9211, "POP2020": 9516, "POP2025": 9756, "POP2050": 9932 }, "geometry": { "type": "Point", "coordinates": [ -87.736816, 41.820455 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.891033 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "LATITUDE": 33.830014, "LONGITUDE": -84.399949, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128, "MAX_POP20": 3896411, "MAX_POP50": 3910939, "MAX_POP300": 3910939, "MAX_POP310": 3910939, "MAX_NATSCA": 300, "MIN_AREAKM": 2761, "MAX_AREAKM": 4086, "MIN_AREAMI": 1066, "MAX_AREAMI": 1578, "MIN_PERKM": 1494, "MAX_PERKM": 2459, "MIN_PERMI": 929, "MAX_PERMI": 1528, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.608333, "MIN_BBXMAX": -83.879976, "MAX_BBXMAX": -83.858333, "MIN_BBYMIN": 33.383333, "MAX_BBYMIN": 33.383333, "MIN_BBYMAX": 34.202715, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.328739, "MEAN_BBYC": 33.851552, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 422908, "ELEVATION": 320, "GTOPO30": 305, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513, "POP1955": 631, "POP1960": 776, "POP1965": 959, "POP1970": 1182, "POP1975": 1386, "POP1980": 1625, "POP1985": 1879, "POP1990": 2184, "POP1995": 2781, "POP2000": 3542, "POP2005": 4307, "POP2010": 4506, "POP2015": 4695, "POP2020": 4888, "POP2025": 5035, "POP2050": 5151 }, "geometry": { "type": "Point", "coordinates": [ -84.396973, 33.833920 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272 }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.780107 ] } } ] } ] } , diff --git a/tests/muni/out/-Z11_-z13_-B15.json b/tests/muni/out/-Z11_-z13_-B15.json index a09f30cda..65c6c8f4c 100644 --- a/tests/muni/out/-Z11_-z13_-B15.json +++ b/tests/muni/out/-Z11_-z13_-B15.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-B15.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4727},{\"dropped_by_rate\":4643},{\"dropped_by_rate\":4210}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":651},{\"dropped_by_rate\":472},{}]", "tippecanoe_decisions": "{\"basezoom\":15,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" @@ -17,2588 +17,27136 @@ { "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" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } -] } -] } -, -{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532363, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527213, 37.832463 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524381, 37.830362 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831412 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529702, 37.821819 ] } } ] } ] } , -{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.796695 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512021, 37.779025 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.720729 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.779161 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744521 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742519 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721068 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.780789 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758196 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457948, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.786284 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762539 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743062 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.720050 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722358 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721068 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.802019 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800459 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800120 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796187 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795915 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793202 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792321 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825175 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.786793 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778686 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774955 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783978 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764778 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.719167 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429452, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.721272 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732813 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.747270 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734170 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.735664 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729215 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } -] } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.788692 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "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" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 653, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832378 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1584 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.720933 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478311, 37.715841 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.716197 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 37.710697 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708728 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720797 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713210 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716706 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788471 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512043, 37.779025 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780043 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775243 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779144 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758654 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.783418 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714754 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.771970 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716316 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.781959 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476251, 37.780365 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.762488 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759129 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717470 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754040 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505562, 37.752886 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716791 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504489, 37.741823 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505348, 37.735528 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709118 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502515, 37.726754 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487667, 37.746150 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744504 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715908 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484577, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742536 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741280 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733950 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477238, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.715026 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476122, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475350, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470586, 37.780840 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 37.780772 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470222, 37.714754 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784876 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783961 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713600 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714075 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 37.777143 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764286 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.713091 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761911 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.712989 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.758196 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713532 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457948, 37.765982 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714415 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453506, 37.786335 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782231 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714279 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778228 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467389, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778754 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710341 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.776804 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.710273 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439988, 37.786284 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714211 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439516, 37.783164 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.784724 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711563 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779280 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711427 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711835 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464900, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.764422 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445395, 37.770087 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705757 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.767509 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442906, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446125, 37.758942 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.768052 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.710918 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762539 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440417, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711427 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711291 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748831 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467668, 37.749086 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718149 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.743062 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470372, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.740839 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465265, 37.739550 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715841 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743232 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714822 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474792, 37.732117 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713193 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474706, 37.730963 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.711495 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468054, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713260 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719524 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460544, 37.735307 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731099 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724259 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455974, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750850 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.746676 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710375 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737717 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710273 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.705961 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.751121 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706131 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747881 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.741840 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740059 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731608 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707421 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448528, 37.731472 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718522 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.723529 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.722851 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.731659 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.733492 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725668 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713939 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.724582 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722375 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714075 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710205 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714686 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } -] } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714483 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.711733 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.710952 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452197, 37.708881 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.800324 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796695 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439666, 37.800442 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802748 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717131 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.787369 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1584 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719829 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715705 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715026 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708253 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409518, 37.710001 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.711139 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.712785 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.785996 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713464 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713464 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714007 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710952 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788539 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421319, 37.786097 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776024 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.712921 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.712140 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.774022 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779992 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.782638 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.784876 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414067, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774955 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718149 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767373 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710544 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765711 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.754277 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759333 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713532 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.783994 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.782095 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775718 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708983 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.708983 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708643 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.779619 ] } } +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779280 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.770155 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.764778 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761843 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.754413 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.760927 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.712242 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757297 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713532 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.764354 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.713396 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.753904 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391751, 37.757704 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387888, 37.755685 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743588 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742434 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752275 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712717 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.746931 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748339 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712174 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411406, 37.739923 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.712242 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.710748 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.710477 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429903, 37.722375 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710341 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.708473 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708507 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } , -{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.733610 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708643 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708372 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753056 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.707896 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707693 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405183, 37.742876 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.706946 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.747253 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.736207 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706538 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742672 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.706300 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709322 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.734238 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709051 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.734170 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727739 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.723869 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402093, 37.724174 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733203 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392352, 37.735681 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390335, 37.735409 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.729215 ] } } +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397373, 37.722715 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.722443 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715162 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386730, 37.755397 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712649 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739719 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.408938, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731845 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.710205 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710001 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732490 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386687, 37.726041 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711563 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } -] } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711427 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711495 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788709 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711359 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.713838 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713193 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808309 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.712581 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711902 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.802019 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425096, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794915 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794169 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.790438 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.805325 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800103 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.794644 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420375, 37.789540 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.795780 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796204 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800680 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } , -{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797391 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712276 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404540, 37.793762 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795898 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793287 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712242 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.710612 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713532 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793202 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788522 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789811 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792338 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373469, 37.829819 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825192 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708983 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.708847 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } -] } +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788692 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1908, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529691, 37.821828 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3164 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832378 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523447, 37.831658 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710952 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831336 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710884 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.711223 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478429, 37.718692 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.717003 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485210, 37.718421 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481476, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387781, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480189, 37.714593 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713396 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478322, 37.715849 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.712140 ] } } ] } ] } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753429 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.833005 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487313, 37.753692 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505573, 37.752894 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751020 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833887 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504865, 37.747431 ] } } +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.833683 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501003, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833616 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499812, 37.747542 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.833616 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504489, 37.741823 ] } } +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736020 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.833073 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500466, 37.741900 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483268, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505358, 37.735528 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499297, 37.734569 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829446 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502526, 37.726754 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.751300 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.792219 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747957 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788454 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488815, 37.748144 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487667, 37.746159 ] } } +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742307 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792321 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480950, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744513 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807546 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740771 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807241 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484577, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.806563 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752063 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807444 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475897, 37.748534 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485467, 37.742536 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480446, 37.742876 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472110, 37.806732 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734858 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.803477 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493857, 37.732024 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803579 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733958 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734552 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801002 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477238, 37.734484 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.799815 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.730420 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483300, 37.727119 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.802901 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721756 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478815, 37.725948 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798425 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476133, 37.726338 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797950 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478429, 37.718692 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743308 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475210, 37.734688 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474803, 37.732117 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474846, 37.727195 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721111 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475007, 37.720941 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485210, 37.718421 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803749 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482613, 37.788463 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802291 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512043, 37.779034 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802087 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.509993, 37.773217 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507440, 37.780043 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505015, 37.779840 ] } } +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502998, 37.781086 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.800188 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775243 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771478 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779153 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499908, 37.771792 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801070 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509199, 37.760350 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801002 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762378 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760520 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758654 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453914, 37.800527 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760520 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499136, 37.760639 ] } } +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492441, 37.783418 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798154 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493449, 37.779797 ] } } +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779577 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.799103 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783579 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783655 ] } } +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799103 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487806, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492183, 37.777762 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495574, 37.771970 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491840, 37.776024 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804325 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485360, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484845, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484502, 37.781968 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.804562 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481776, 37.782087 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479845, 37.782307 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803613 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476262, 37.780365 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803647 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.776244 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772691 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478129, 37.776524 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476777, 37.772962 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495960, 37.762496 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488267, 37.765032 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800392 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759129 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.757025 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798425 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797136 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.797611 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487313, 37.753692 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481605, 37.765024 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477742, 37.765499 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.800052 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765372 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.800052 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486519, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761546 ] } } +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754040 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476820, 37.761742 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479717, 37.755897 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795610 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505573, 37.752894 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501003, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790693 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475361, 37.782392 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788963 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480489, 37.793567 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791269 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807461 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3164 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515379, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441812, 37.803070 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483386, 37.833149 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439666, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715009 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471670, 37.716197 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437434, 37.800731 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714050 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471327, 37.710706 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.714338 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804427 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712335 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708737 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462336, 37.713176 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802630 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710129 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456049, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.714160 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805410 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713218 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804868 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454783, 37.710290 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706818 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805274 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.716256 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805139 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452229, 37.714169 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.801138 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.712853 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716715 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801070 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.716341 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.714771 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799713 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437960, 37.710205 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799883 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713481 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.799578 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434870, 37.710179 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431802, 37.712836 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800934 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434334, 37.708966 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.801104 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.800934 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752063 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796797 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475897, 37.748534 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797136 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.730420 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476133, 37.726338 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473794, 37.748831 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473505, 37.745073 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.797407 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467679, 37.749094 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.750859 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796153 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743308 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796729 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.743071 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741527 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791575 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470382, 37.736385 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466005, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740950 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465833, 37.740848 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469052, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788183 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465265, 37.739550 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791914 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455856, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791778 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458774, 37.748271 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795848 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460834, 37.740228 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461306, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743240 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475210, 37.734688 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794152 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474803, 37.732117 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.793813 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471884, 37.734578 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474717, 37.730972 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.792660 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471670, 37.731362 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.792728 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468065, 37.734790 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469095, 37.729987 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474846, 37.727195 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.791439 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721111 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475007, 37.720941 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719532 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789336 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466756, 37.727255 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.788828 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468151, 37.719592 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460555, 37.735307 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.733602 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457529, 37.731107 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.789743 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726033 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463462, 37.719991 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458345, 37.724259 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788929 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454193, 37.723428 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454976, 37.720067 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779907 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451307, 37.744996 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779772 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.750409 ] } } +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512965, 37.779093 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750850 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512021, 37.779025 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447637, 37.746362 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.779025 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444204, 37.747151 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.746676 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510219, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742596 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773327 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451736, 37.737726 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450534, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446243, 37.738964 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771427 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442530, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771699 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438539, 37.751121 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439848, 37.745242 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779975 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.749654 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780043 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751249 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.779907 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749807 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747889 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437509, 37.743631 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.741849 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504210, 37.780993 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740195 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.779772 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740059 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434441, 37.736232 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.736835 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499576, 37.784995 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731616 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.779636 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729953 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.779636 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448539, 37.731481 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.779025 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733950 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446693, 37.731481 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775226 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.723538 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722944 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450942, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450126, 37.720390 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 37.723224 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.773530 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446221, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505670, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446886, 37.720466 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503524, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446543, 37.720610 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.722859 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771766 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437767, 37.731667 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500606, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439848, 37.731515 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435707, 37.733924 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500348, 37.771868 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434076, 37.733492 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771902 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433261, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771970 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725668 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438668, 37.723674 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767356 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.724582 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.726355 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722375 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509017, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748178 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733212 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.764032 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728901 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762200 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } -] } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458624, 37.748347 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447015, 37.788098 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476262, 37.780365 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472764, 37.784368 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760503 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475361, 37.782392 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472807, 37.780704 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470597, 37.780840 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.784461 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782901 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 37.780781 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758467 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472142, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756771 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471906, 37.773267 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.777202 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754905 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467614, 37.773250 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754735 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463623, 37.784885 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.785563 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760639 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464374, 37.780899 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760605 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456564, 37.786911 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783986 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783961 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.781374 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779432 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.779000 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775447 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463709, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.783435 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 37.777151 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454836, 37.774802 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454182, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.781603 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765813 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762072 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781739 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.764286 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.763913 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781535 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761911 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470576, 37.761954 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.755261 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.758196 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758544 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779568 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464031, 37.764159 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492280, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457958, 37.765982 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781671 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458173, 37.763311 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754472 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490048, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453517, 37.786335 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448517, 37.787488 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782239 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783638 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446758, 37.786326 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781875 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446178, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.781739 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782154 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449590, 37.778237 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773038 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.775633 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449461, 37.773420 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775769 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778763 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.777872 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775710 ] } } +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.776812 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493052, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446049, 37.774056 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775905 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774192 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.775803 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439998, 37.786284 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.783850 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776040 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439526, 37.783164 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771902 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496314, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787717 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772241 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432917, 37.784732 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781730 ] } } +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779288 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439913, 37.777643 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438056, 37.776770 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.775973 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773183 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434441, 37.775472 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772173 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769332 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772411 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450427, 37.768527 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.764430 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772513 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450126, 37.765745 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763260 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445406, 37.770087 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785877 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444848, 37.767509 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446071, 37.765295 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785673 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.765448 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442906, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447680, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446135, 37.758942 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444075, 37.761326 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.761648 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444054, 37.758408 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.781942 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.780247 ] } } , -{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439269, 37.768052 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765363 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.767280 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779907 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762547 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482667, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433325, 37.763955 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760486 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.784113 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440428, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.784249 ] } } , -{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439011, 37.755363 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782214 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760749 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.761097 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782282 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434312, 37.754413 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455856, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780586 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776863 ] } } -] } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762683 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778279 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484469, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807461 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467078, 37.801790 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776176 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800129 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454525, 37.803689 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482409, 37.776312 ] } } , -{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801858 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774548 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801010 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484212, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455094, 37.798247 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772580 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799044 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445180, 37.803418 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483783, 37.772513 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.801545 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446951, 37.800324 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444419, 37.799841 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796704 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447369, 37.790905 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444247, 37.791185 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.776617 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439677, 37.800442 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480607, 37.772648 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437123, 37.804427 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.772852 ] } } , -{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435170, 37.802748 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.805122 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436372, 37.800739 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434505, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764540 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797043 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495799, 37.762607 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438883, 37.796585 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.762505 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.789972 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436801, 37.795992 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764846 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794059 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764710 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433025, 37.792719 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434484, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434098, 37.789921 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789989 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448517, 37.787488 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787717 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.760910 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801350 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760775 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427059, 37.718964 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758875 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.718811 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431802, 37.712836 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428197, 37.717563 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760910 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711113 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757246 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710044 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423218, 37.709305 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755414 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.712607 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755142 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711707 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416052, 37.712021 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715034 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492623, 37.753446 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711062 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411503, 37.710587 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761114 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420021, 37.708210 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415537, 37.706937 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412339, 37.708261 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716596 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.713846 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409518, 37.710010 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753582 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716867 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487302, 37.753683 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399358, 37.714814 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402619, 37.712233 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402340, 37.712225 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765117 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403778, 37.711139 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765321 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399186, 37.711588 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405044, 37.708940 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480350, 37.765185 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718039 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387942, 37.712794 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.751376 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.736835 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } , -{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397341, 37.753904 ] } } +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429549, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748178 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765524 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426888, 37.746778 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765389 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426587, 37.743588 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742103 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763692 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425750, 37.742019 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422167, 37.742307 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761317 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.742434 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761385 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.739745 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737064 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420558, 37.752182 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761589 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.750282 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761589 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752275 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420214, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757857 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419099, 37.746939 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415751, 37.748305 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753989 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411739, 37.752589 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.748110 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761521 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748339 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739312 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.761453 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414614, 37.738829 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761657 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413241, 37.738243 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761589 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411406, 37.739923 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733212 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.761385 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733721 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761792 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728901 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730836 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424699, 37.735621 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759960 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728714 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757857 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429903, 37.722384 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.756025 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721552 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719821 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754124 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427059, 37.718964 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422038, 37.725600 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754328 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719312 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756228 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418219, 37.734892 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754124 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.734671 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.733610 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750935 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410837, 37.730912 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753039 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727017 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505498, 37.752835 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413541, 37.725142 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752835 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410601, 37.723122 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753064 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408906, 37.749688 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753106 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.751885 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747126 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747338 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405194, 37.742884 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745438 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738370 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506700, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404164, 37.742528 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747270 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752284 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745573 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745404 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396890, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.753039 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395881, 37.747262 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.750400 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753106 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398242, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753310 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.736215 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392920, 37.740695 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747406 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742680 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391268, 37.739753 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747542 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391633, 37.736266 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747677 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388886, 37.739915 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747609 ] } } , -{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737946 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.743741 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405580, 37.734247 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504640, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404808, 37.732999 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741840 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404615, 37.730259 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.734170 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741773 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399250, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504554, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403241, 37.727739 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400881, 37.729096 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504382, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723487 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.723877 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.737972 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404336, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402104, 37.724183 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399079, 37.723292 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733203 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393285, 37.727917 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741976 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392362, 37.735681 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.734790 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732278 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390345, 37.735409 ] } } +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735392 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732898 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392749, 37.729223 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.735358 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727908 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735392 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725490 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397383, 37.722723 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.718811 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498975, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.722452 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.721416 ] } } +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749077 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731591 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387148, 37.741408 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731150 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731845 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718039 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781730 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400066, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495112, 37.753276 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788531 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495027, 37.751783 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426652, 37.785902 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425085, 37.785436 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494855, 37.749578 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421330, 37.786106 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747609 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421416, 37.784656 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420665, 37.780950 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776863 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747745 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776032 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426265, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423304, 37.777745 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773810 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.774031 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420794, 37.771766 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786801 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487903, 37.748084 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782985 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779992 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.783231 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415794, 37.782646 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744216 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415687, 37.780730 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787649 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413155, 37.784876 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409958, 37.787217 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414078, 37.783681 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742248 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412447, 37.780645 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409893, 37.783384 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.742248 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419485, 37.775532 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778737 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775939 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494254, 37.738616 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419270, 37.774963 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.738379 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417318, 37.774573 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736750 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736546 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414593, 37.778500 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411352, 37.778966 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410376, 37.772402 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429162, 37.769502 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742587 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767772 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767348 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767382 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430707, 37.766186 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422124, 37.768391 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.748152 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422060, 37.764846 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430686, 37.761097 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483439, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748288 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756644 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481294, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423648, 37.761521 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481551, 37.748356 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421502, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752699 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750188 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.748560 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.762632 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479405, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415429, 37.765372 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748560 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410451, 37.769672 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748695 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.765380 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748288 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409807, 37.765719 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746456 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419463, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416781, 37.758866 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418562, 37.754277 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758815 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742519 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759333 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786335 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742655 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784062 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742791 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742723 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784775 ] } } +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486100, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408069, 37.783994 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786394 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785529 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.782104 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406482, 37.782646 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403435, 37.787632 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733899 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786343 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733695 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786208 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783036 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399915, 37.780671 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406460, 37.775727 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407082, 37.772326 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734035 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.778915 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733763 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773471 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.733356 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396525, 37.785741 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395452, 37.784190 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398070, 37.779475 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392169, 37.786733 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781824 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733831 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.779619 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397158, 37.775489 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734238 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.777185 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394229, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776057 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779288 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.776185 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389616, 37.771164 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765702 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766042 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486272, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404121, 37.770163 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402726, 37.767314 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766322 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401675, 37.764786 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728536 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399679, 37.766228 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761852 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727993 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409614, 37.757399 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.728061 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406600, 37.757187 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404937, 37.754421 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.759680 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728876 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401117, 37.760936 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911, 37.756881 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484899, 37.724225 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757297 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726975 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.766491 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762581 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391032, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389305, 37.769052 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.764362 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764176 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759986 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.720729 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.755974 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727178 ] } } , -{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397341, 37.753904 ] } } +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726907 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393972, 37.757636 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391762, 37.757704 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725956 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388242, 37.758077 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387899, 37.755694 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475715, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753064 ] } } -] } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726330 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788700 ] } } +{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775065 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720661 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805283 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.805122 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789989 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422081, 37.806351 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420493, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415515, 37.808318 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784249 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412339, 37.808097 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.784520 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806495 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801350 ] } } +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472539, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.802028 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427682, 37.800858 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.784588 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425107, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471080, 37.784452 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805020 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424635, 37.802579 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422296, 37.799001 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.782485 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782689 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429119, 37.792177 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } , -{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794915 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423004, 37.794177 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794177 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425772, 37.791040 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791159 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422017, 37.790438 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804791 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415236, 37.805325 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784792 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804206 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.799273 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418777, 37.797407 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415065, 37.804961 ] } } +{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411653, 37.804808 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782689 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799739 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780993 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410644, 37.800197 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418197, 37.795551 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419592, 37.792524 ] } } +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.794652 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419528, 37.791719 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420386, 37.789540 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776787 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417532, 37.790905 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417296, 37.790167 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415107, 37.795788 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414614, 37.793177 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776855 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796204 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410172, 37.796407 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773055 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.794533 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474170, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414120, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406203, 37.806792 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409657, 37.802350 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800544 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777058 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800680 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800756 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406739, 37.796984 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464814, 37.775362 ] } } , -{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805147 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401117, 37.803265 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403585, 37.797391 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400731, 37.798543 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404743, 37.794703 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.773327 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404550, 37.793770 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409292, 37.792210 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464471, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408906, 37.791091 ] } } +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784724 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.785165 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407029, 37.789480 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785334 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795907 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401493, 37.794474 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400280, 37.794177 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399808, 37.793296 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789743 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.783096 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400506, 37.790354 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401310, 37.789353 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781128 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400066, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395667, 37.797085 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780857 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793525 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.781264 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395624, 37.793652 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786894 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394615, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394551, 37.794423 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793898 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785606 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793202 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397491, 37.789921 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783842 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788531 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790845 ] } } +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393521, 37.790413 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789820 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784113 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391096, 37.792338 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390195, 37.790812 ] } } +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783231 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787649 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781264 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464213, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461724, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455373, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774616 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774751 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765660 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.468934, 37.770545 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759282 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756975 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756296 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467904, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.760232 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.756500 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462840, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457948, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456489, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758467 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } +, +{ "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.757721 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463527, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.756907 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786487 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786691 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449880, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448249, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.787335 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787166 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443614, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.778076 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778008 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774887 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776922 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774005 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774073 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774175 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774412 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440696, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785131 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785300 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.785266 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.780857 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.785945 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433143, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780925 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781332 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431941, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777804 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777669 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.770749 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770918 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.771291 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778144 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.778279 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768238 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766406 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765931 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769935 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770070 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.767085 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.766949 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770342 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770206 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.763014 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443357, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764507 ] } } +, +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764507 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.763217 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "320 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "341 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.759892 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444129, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.756398 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.753989 ] } } +, +{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.768679 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766474 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.766678 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.769188 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767492 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.765592 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.763896 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760707 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755821 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753514 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.756092 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.750528 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.750799 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748797 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746727 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.745030 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "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": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743198 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743130 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.743402 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.739193 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737564 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470393, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741433 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740754 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740822 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.739601 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739668 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456918, 37.749849 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751478 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751614 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747881 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.747236 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.745370 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745302 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460008, 37.739193 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741637 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743469 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455459, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736682 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736716 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732779 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732439 ] } } +, +{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.731795 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471595, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735460 ] } } +, +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.731048 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731252 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467561, 37.728265 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727246 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721068 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460780, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731252 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455630, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724938 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724904 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.724938 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724395 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721747 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745302 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745913 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.751749 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.751681 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.746456 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.744487 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.740687 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.737802 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446017, 37.741365 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.736818 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.751071 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749611 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.747847 ] } } +, +{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746252 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745641 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744691 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.741569 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.740279 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.738582 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.738650 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738311 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737293 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736071 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736818 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451425, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.727620 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445588, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451425, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719846 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } +, +{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.734985 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441897, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.728977 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.728977 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727722 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.733831 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.734442 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.726839 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723241 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723580 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724667 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724531 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.726160 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722358 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "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": "Beach St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423186, 37.806359 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807038 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.805580 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805613 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805613 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808326 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805478 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807851 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807784 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410569, 37.806868 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807038 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801680 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.802019 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798221 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804291 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804122 ] } } +, +{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423787, 37.803376 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800459 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800324 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.798594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424130, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798832 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422414, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.793948 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422414, 37.793067 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792456 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793677 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "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": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.790421 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790421 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790625 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.788387 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798289 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799442 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799306 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.804393 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802697 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.802765 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.799951 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.799985 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795576 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792931 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790828 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.791812 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790998 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415590, 37.791269 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789133 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789201 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795237 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796390 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795441 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795305 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.788319 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.808224 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806088 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807343 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.807173 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406020, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806597 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803511 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.801409 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801748 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801070 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.797814 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805003 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801409 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.802155 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801273 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.800595 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.796729 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796255 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796119 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796051 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796051 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789133 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788387 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.796051 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.794016 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792931 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790286 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399154, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788929 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798967 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797814 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.792592 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393231, 37.793338 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791642 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.789641 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789472 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791812 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.789879 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "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": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788658 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828192 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828294 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376280, 37.825480 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823243 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373919, 37.823514 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371430, 37.824599 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829277 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368941, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825311 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371774, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371430, 37.816226 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822362 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819921 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366109, 37.819921 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370915, 37.813242 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370830, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811784 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822226 ] } } +, +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M" }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820735 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364564, 37.811852 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364306, 37.811344 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810360 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.786487 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.784859 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.785606 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } +, +{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426963, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428250, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430739, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.772445 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776515 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772920 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.770952 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.774175 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.787776 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786894 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.787030 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.782282 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780179 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783333 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782621 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.786420 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.784859 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786962 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "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": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.778381 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.775091 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774955 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "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": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774751 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769392 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431254, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767763 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764710 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764710 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763082 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.757382 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.757246 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.754599 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758739 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.755550 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767119 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763828 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770342 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410741, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410140, 37.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.754260 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.759010 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758976 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell/Market" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786623 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "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 & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783503 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781196 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782960 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782756 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403188, 37.787708 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786216 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.784927 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776855 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.772547 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.774684 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771563 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 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" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785300 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.784181 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782417 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782621 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783299 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.390571, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389541, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773123 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392459, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768238 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766339 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.763285 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.768747 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.768578 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.766067 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763489 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759078 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.759417 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756160 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755753 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.766474 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766406 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393231, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766746 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769052 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.762878 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763353 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760096 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395978, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.760028 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395205, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.754803 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.756839 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.757857 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.758060 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.757992 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.757585 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755142 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.755007 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755278 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.749374 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746524 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426448, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424130, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738854 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.737429 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736207 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740279 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751953 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.750663 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.752428 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746727 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.746252 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.745913 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752428 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748492 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745302 ] } } +, +{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741433 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735460 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730641 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730641 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.728468 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735901 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728740 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728740 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430568, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.723988 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429452, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721340 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426448, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724633 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725413 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735121 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732813 ] } } +, +{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729826 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 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" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412887, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723241 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.722698 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.752971 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.741331 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.739668 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743944 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398810, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739125 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752224 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752224 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749849 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.749985 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.747338 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752631 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396922, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.736207 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394519, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.744046 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737564 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737496 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.732338 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727314 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727450 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727518 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.727314 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728468 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.726262 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.726534 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.731795 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395377, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392716, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733831 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391343, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392030, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390399, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 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" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725447 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.723784 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722630 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722358 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386794, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755617 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 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": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.750324 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383146, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740687 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381773, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.737021 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.735833 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386065, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.729554 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.729520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "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": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730131 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379670, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377181, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.381730, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730573 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726092 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375894, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730912 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373748, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372117, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367911, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728740 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365165, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365422, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360959, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716316 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718522 ] } } +, +{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717131 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } +, +{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784181 ] } } +] } +] } +, +{ "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" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 653, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832378 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536247, 37.831768 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831819 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831870 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527235, 37.832582 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527192, 37.832480 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527664, 37.829057 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825023 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830480 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830362 ] } } +, +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831412 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529681, 37.821819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.718743 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718709 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719897 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483203, 37.718607 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479599, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719049 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469943, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465222, 37.719761 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439086, 37.719150 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716774 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716231 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716061 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.714873 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714771 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.714567 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716333 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485263, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478740, 37.717962 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.715009 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477067, 37.717691 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716706 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716774 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478311, 37.715841 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477152, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709118 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.715891 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474277, 37.715891 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.715213 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715009 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.715009 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470243, 37.714754 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.714126 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713753 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713583 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714058 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.713091 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.712989 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713549 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 37.710697 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710901 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.714398 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469985, 37.714432 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714279 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469256, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467368, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710358 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.710273 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714194 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467110, 37.711648 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711410 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711818 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708728 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705757 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463377, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714228 ] } } +, +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711274 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462261, 37.710901 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713142 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711444 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.715858 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.715009 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.714839 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458913, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458870, 37.711478 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713277 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713210 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713210 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710290 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.705978 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706114 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460673, 37.706148 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459900, 37.706351 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707404 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448657, 37.718505 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716061 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713939 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452133, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714058 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448442, 37.710222 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446253, 37.710969 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452197, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709611 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716706 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716503 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716638 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716469 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717148 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716401 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.715671 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439301, 37.715705 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715145 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711071 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438228, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436039, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.716095 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713481 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713447 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.714024 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710935 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710154 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712938 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432950, 37.712921 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.712157 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434580, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708864 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710561 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788404 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789184 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788980 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440374, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509940, 37.779907 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509897, 37.779890 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509596, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512965, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512043, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775176 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510240, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773310 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.773208 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773649 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.773208 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771410 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771682 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509382, 37.771342 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.779907 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505519, 37.782129 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781824 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504103, 37.781824 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505219, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504232, 37.781010 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.779551 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499683, 37.784978 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499597, 37.785012 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.779653 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.779653 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500670, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506249, 37.779042 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505949, 37.775209 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775243 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775345 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.775481 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507751, 37.773412 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505820, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771580 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505670, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771580 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503524, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503288, 37.771614 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779144 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500606, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779280 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500327, 37.771868 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771885 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497966, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510283, 37.767882 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510455, 37.767373 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508996, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508781, 37.760164 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507408, 37.764184 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764049 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508137, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505820, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760384 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506034, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758654 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758484 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505734, 37.756771 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505562, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505605, 37.754922 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505434, 37.754752 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502558, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760758 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779432 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.781654 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.783418 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.783418 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781790 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492516, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781993 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492216, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493503, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493289, 37.779687 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493203, 37.779551 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492280, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783791 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781654 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490499, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490048, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779721 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779958 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783655 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781892 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781993 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779856 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497408, 37.775650 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497194, 37.775769 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493246, 37.777855 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493031, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493074, 37.777686 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494576, 37.775888 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494190, 37.775786 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.775990 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776024 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771919 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496336, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772224 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772089 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492001, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776668 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492044, 37.775888 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489898, 37.775990 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487538, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776091 ] } } +, +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490714, 37.772190 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772394 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487495, 37.772462 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785860 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785690 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485092, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481658, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782061 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484963, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484705, 37.781942 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.781959 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.780247 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.779924 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782129 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.782231 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482688, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481401, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478440, 37.784232 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.782214 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479470, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479255, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477496, 37.782282 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476251, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778279 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484362, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776464 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482409, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774548 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484212, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772597 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484062, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483804, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.776431 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776566 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.776617 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480607, 37.772648 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479169, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476509, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764354 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764557 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495778, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.762488 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494705, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492559, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764727 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490413, 37.764931 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760995 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.760825 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495649, 37.760758 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759129 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495520, 37.758892 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493203, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492945, 37.761063 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761029 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760893 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757263 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753429 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755397 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495263, 37.755159 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495306, 37.753531 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495048, 37.753497 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492645, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489727, 37.761199 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761165 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761097 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761063 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753582 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487302, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486122, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765100 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481830, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.763133 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479684, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763675 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477238, 37.765541 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765202 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763675 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761300 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.761368 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.761334 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761606 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761572 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.481229, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481101, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485993, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483847, 37.753972 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754040 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753870 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.761538 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761606 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477067, 37.761742 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477109, 37.761402 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761775 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761572 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760147 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476938, 37.759943 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757857 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.756008 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754141 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753972 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479599, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476680, 37.756211 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476423, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476294, 37.754107 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507493, 37.750918 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753022 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505562, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505476, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752818 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751189 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753123 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749323 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749153 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747338 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507536, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506700, 37.745353 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505090, 37.747457 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504919, 37.747287 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504961, 37.745590 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745421 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504790, 37.745421 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502301, 37.753022 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500155, 37.753123 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753327 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498009, 37.753208 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503030, 37.747423 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499812, 37.747542 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499511, 37.747677 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497623, 37.747626 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504833, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504661, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504704, 37.741857 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504532, 37.741688 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741756 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504575, 37.739991 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504404, 37.739821 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505305, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.737972 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736122 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502601, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502344, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500198, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498310, 37.741993 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498052, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506807, 37.735477 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505348, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504919, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735375 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735002 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499297, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498953, 37.734120 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.730658 ] } } +, +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729741 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.728214 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499211, 37.731608 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499211, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726381 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753327 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495112, 37.753293 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495005, 37.751800 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749798 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494855, 37.749561 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497408, 37.747609 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745964 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745964 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495348, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748068 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.747762 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493331, 37.747830 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494791, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.745828 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747898 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489040, 37.748000 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487924, 37.748068 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487667, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494662, 37.744216 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494533, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.742129 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742265 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492945, 37.742231 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494276, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.738379 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494147, 37.736767 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736529 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.744267 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487538, 37.742638 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487323, 37.742587 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742400 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485864, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484577, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483439, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483461, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481315, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481573, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750188 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479169, 37.748543 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479427, 37.748441 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476208, 37.748577 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748712 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742672 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742774 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486100, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478783, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475607, 37.743011 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741280 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496765, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496808, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496636, 37.733543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493632, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733780 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493675, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493503, 37.730335 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733848 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733950 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489254, 37.734238 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485821, 37.734120 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483933, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482173, 37.734289 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486293, 37.729436 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477367, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479084, 37.728553 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478483, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728859 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484877, 37.724225 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726975 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483633, 37.722749 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721832 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483203, 37.718607 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481229, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727161 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480028, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "190 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478783, 37.725872 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475736, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476122, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476852, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480886, 37.720678 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719626 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479599, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473247, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472517, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470844, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471101, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475350, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782570 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471144, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470973, 37.782570 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780569 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470586, 37.780840 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468956, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467024, 37.784741 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466810, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466810, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785012 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464707, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.784808 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468998, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468355, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780976 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466466, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.782892 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464793, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.776770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.776939 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773038 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474191, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773038 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773208 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465909, 37.775176 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464836, 37.775379 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469814, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773344 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.773462 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773479 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465737, 37.773310 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784876 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464471, 37.784673 ] } } +, +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784707 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462561, 37.785182 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785351 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785690 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783214 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464321, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462561, 37.783079 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.781128 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780874 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459815, 37.783079 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461145, 37.781044 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460930, 37.781281 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786029 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.785656 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.785589 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783859 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785962 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454751, 37.783961 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454493, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783248 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783248 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.781858 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.781417 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781145 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781078 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456424, 37.781264 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781518 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464235, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.777279 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461960, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776973 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777143 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.777177 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463806, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461746, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464106, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777075 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 37.777143 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777550 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774361 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.774599 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774751 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454150, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454321, 37.772767 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765609 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765711 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765643 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470329, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.468913, 37.770528 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770426 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468698, 37.765745 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.766016 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.765847 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765847 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466509, 37.765677 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764286 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766084 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466681, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466295, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762081 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761911 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761911 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759299 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758111 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.761843 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.759163 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.759129 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473505, 37.756958 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756296 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.755261 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473204, 37.754243 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.754107 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761979 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761945 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470071, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.760232 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758383 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758518 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465694, 37.756500 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765948 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461874, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464278, 37.764082 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462840, 37.762386 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462003, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.764218 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766118 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762725 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460501, 37.762658 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762522 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762793 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457948, 37.765982 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.764354 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457626, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456510, 37.764931 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.763302 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763811 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763709 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766084 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764354 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758467 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.758417 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463119, 37.758688 ] } } +, +{ "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.757721 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756584 ] } } +, +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.754650 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463548, 37.754888 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461488, 37.756907 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.755397 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457969, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.755329 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755295 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453506, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453506, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784198 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450244, 37.786708 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787488 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449901, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448270, 37.784978 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.781586 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449901, 37.782027 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787183 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.786233 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784537 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446167, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784876 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782129 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782672 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.777753 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.778093 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451360, 37.778008 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449644, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778228 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.775413 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453120, 37.774904 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774022 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.773242 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450845, 37.773378 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447197, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778771 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775888 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775888 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778907 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443593, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776770 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.776939 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.776804 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774022 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446511, 37.773920 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445610, 37.771953 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774090 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774192 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.774294 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774429 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785148 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439816, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439730, 37.785300 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.785249 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785521 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783418 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439559, 37.783180 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439516, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439215, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437670, 37.783621 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780501 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438743, 37.780535 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437155, 37.780874 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434795, 37.785945 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785792 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785996 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433143, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781078 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.780925 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.783011 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432392, 37.781518 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.781349 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431941, 37.779856 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779280 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777313 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779348 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440159, 37.777516 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438571, 37.777804 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777720 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.777855 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777855 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438400, 37.777686 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438228, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441490, 37.774565 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774497 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440546, 37.770749 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440245, 37.770918 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773038 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437370, 37.771291 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435181, 37.778144 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434924, 37.778262 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775209 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.775142 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778534 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431748, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775413 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775616 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433851, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.769171 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.769307 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.768323 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453334, 37.768238 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.766406 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.766440 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450759, 37.769443 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448657, 37.769714 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769884 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450202, 37.766830 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765541 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452691, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.764422 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.764761 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764591 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765881 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449901, 37.765931 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.764897 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449858, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764761 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449772, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.763133 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445395, 37.770087 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769002 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.767102 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.766932 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.767305 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767136 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.770342 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.770206 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.770426 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.767509 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767339 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766288 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447927, 37.766152 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765406 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447755, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.764286 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.763014 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.765439 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765813 ] } } +, +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.764490 ] } } +, +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764490 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.763234 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449214, 37.761708 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761674 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449043, 37.760927 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761843 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760927 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760859 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446125, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758790 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758654 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761945 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761199 ] } } +, +{ "type": "Feature", "properties": { "name": "320 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "341 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.759909 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444236, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.758383 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758213 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444150, 37.757500 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.756449 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.756398 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442820, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754107 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442992, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.768662 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.768832 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.768052 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766491 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438271, 37.766695 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438142, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437198, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762081 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.769171 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435825, 37.767373 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.767611 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.769392 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769103 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767509 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.765609 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.762454 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762454 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762386 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.762522 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764490 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.763913 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761708 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761606 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438271, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.760622 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438142, 37.760758 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437284, 37.760690 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759027 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440417, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.754040 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.754006 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437842, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757399 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755974 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755804 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438743, 37.753514 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.754209 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435138, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434924, 37.760825 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434795, 37.759163 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757772 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.757670 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.757636 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.756092 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434452, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472947, 37.750528 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472045, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750799 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748797 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748712 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746982 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746744 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470286, 37.745030 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468355, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467668, 37.749086 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466466, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752716 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.749153 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.749323 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469428, 37.748984 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475436, 37.743113 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473419, 37.743198 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741484 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743113 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470286, 37.743402 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470157, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741484 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471187, 37.741518 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475522, 37.739007 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475264, 37.739193 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737564 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475135, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470372, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741433 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740873 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740941 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740873 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740873 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465651, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465522, 37.741145 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465909, 37.740754 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.740839 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465780, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465737, 37.740839 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.738090 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.738090 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738056 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.737853 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.739618 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.739668 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.739448 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465265, 37.739550 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750952 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748169 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.751698 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456896, 37.749832 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.751495 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.751630 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458827, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748169 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748169 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747898 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458785, 37.747830 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.747253 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458656, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457111, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.745370 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745285 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.747796 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746371 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745760 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745692 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.740398 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463677, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740093 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460072, 37.739380 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.740195 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459214, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460029, 37.739193 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461445, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.743995 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456510, 37.741620 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740873 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.743469 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455480, 37.743113 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453935, 37.736682 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736733 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475264, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474492, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.732779 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732456 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474792, 37.732117 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.732015 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.731812 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735036 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471616, 37.734798 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.734289 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734289 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735477 ] } } +, +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471445, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731167 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474749, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474706, 37.730963 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474535, 37.731031 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474363, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731235 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731268 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734696 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467840, 37.734934 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468054, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733203 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469471, 37.729945 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469471, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467883, 37.728383 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728383 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467561, 37.728282 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.727246 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474835, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721187 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721187 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721255 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721187 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.721068 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474320, 37.721323 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472947, 37.721595 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719524 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471788, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719558 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466466, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469943, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465222, 37.719761 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460544, 37.735307 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459643, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461488, 37.730081 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460415, 37.730556 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.732626 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457755, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732083 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.730691 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731099 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457325, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455823, 37.731268 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455652, 37.731438 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464063, 37.726007 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724955 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461402, 37.724904 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.724955 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462132, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461102, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460115, 37.720067 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724378 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.723767 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.723631 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723428 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723462 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458055, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457240, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457025, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.721764 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455909, 37.720135 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.751291 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749255 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.749934 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.745760 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745319 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.745624 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745319 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452090, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748916 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449558, 37.745930 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.752343 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.751766 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443807, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752072 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.751681 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.749289 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444923, 37.749119 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750850 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442820, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.748034 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.746456 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447755, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.748068 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.747033 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746880 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443035, 37.745183 ] } } +, +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743486 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450674, 37.744470 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741722 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450459, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449214, 37.740975 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449172, 37.740704 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738192 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737717 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451489, 37.737819 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740195 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739244 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450716, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446017, 37.741382 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741077 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.448013, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.739889 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446039, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 37.737479 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442563, 37.752479 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752411 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441661, 37.750748 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442605, 37.749255 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.440546, 37.751020 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438357, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.748509 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441404, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.745251 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.751257 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.751223 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751088 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.751071 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.752072 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.751359 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.751189 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.751257 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749595 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749662 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748848 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.748678 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747881 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435825, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.746252 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435868, 37.745641 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744674 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433894, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.748068 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743588 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437241, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744640 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.743249 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435482, 37.743079 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435739, 37.741586 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435524, 37.741620 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435353, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.435868, 37.740279 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740195 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436898, 37.738599 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.738667 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436297, 37.738294 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740025 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.738260 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.737310 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.739991 ] } } +, +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.738328 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.736071 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.734187 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.731472 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.731608 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.731472 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.727620 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451274, 37.728417 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731608 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731404 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448528, 37.731472 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.728485 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.735681 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735511 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.733984 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445567, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734459 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731642 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.726041 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.725532 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453206, 37.723190 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.723529 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.723462 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723088 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723020 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449772, 37.723020 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452991, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721968 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722851 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449343, 37.721629 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723020 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723088 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 37.723224 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721051 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447112, 37.720984 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720950 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720950 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720848 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.720848 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.720678 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720440 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447197, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.719999 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446554, 37.720610 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722749 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.722851 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444880, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.722851 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722817 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.720271 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720067 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735002 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440073, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441919, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729028 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.728994 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.728994 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440073, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727739 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437155, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.733831 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734459 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.734459 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433851, 37.732389 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.732524 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433250, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441618, 37.726822 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442391, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442348, 37.725872 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442434, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441189, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441318, 37.723360 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441232, 37.723258 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440803, 37.723428 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.723563 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718641 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439086, 37.719150 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.723360 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435181, 37.724310 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724650 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.724582 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724718 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434795, 37.724531 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.723937 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723903 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.726347 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.726160 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.721459 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722375 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434280, 37.722409 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432950, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778839 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773751 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430761, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431276, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765677 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745183 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.730641 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728689 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728655 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722511 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478740, 37.717962 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477067, 37.717691 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448657, 37.718505 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435224, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458613, 37.748339 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831802 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508824, 37.833022 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832955 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502129, 37.836446 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833870 ] } } +, +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493804, 37.833700 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833599 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493889, 37.833599 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.833090 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.832836 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484019, 37.829514 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829429 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } +, +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482259, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792304 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807563 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807224 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807461 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806071 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806919 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472110, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.803596 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801595 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801019 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.799832 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462218, 37.802901 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460244, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803799 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457755, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.801765 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456768, 37.801629 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456725, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456381, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802291 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802070 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.801426 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.801731 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797882 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.797730 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801070 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800748 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454021, 37.800714 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453935, 37.800527 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456295, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798170 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800341 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799120 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799222 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.798170 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.804342 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445223, 37.803630 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445180, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443893, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443678, 37.803630 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802477 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.802850 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801901 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801901 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800409 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.798543 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798408 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797153 ] } } +, +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445695, 37.797594 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800612 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443120, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.800036 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.798883 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.796475 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795593 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.795898 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790710 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789184 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444365, 37.791269 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441833, 37.803070 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441275, 37.800103 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439666, 37.800442 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439344, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799290 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437456, 37.800714 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804444 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802816 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.802630 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436512, 37.802392 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802748 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804868 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.801155 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800883 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801087 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799696 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436039, 37.799595 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435610, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800951 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796780 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435482, 37.797391 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.797119 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.796170 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796729 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791558 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.791727 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440374, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.791761 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788505 ] } } +, +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437027, 37.795932 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436855, 37.795848 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794881 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794915 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794135 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.793796 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433379, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.792745 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792202 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792338 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.791439 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789319 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.789828 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.789828 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.790099 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787488 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787183 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718845 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718777 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719049 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719931 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712938 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432950, 37.712921 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.712157 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710561 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.711071 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422221, 37.713549 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421148, 37.713210 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709814 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419946, 37.712972 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710018 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711852 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.712225 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718030 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.713243 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.713345 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713277 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712717 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710969 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712768 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712191 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710731 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.710493 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710358 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.708473 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.708490 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.708643 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419946, 37.708372 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.707896 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.707693 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.707132 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415526, 37.706929 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706521 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.706283 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709305 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.709051 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717759 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407715, 37.717283 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.717148 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405441, 37.717215 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.717046 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.713345 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712632 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.408960, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409518, 37.710001 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.711444 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711478 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711342 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406728, 37.713855 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713210 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405140, 37.712564 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711885 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.710561 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716095 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.716604 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716469 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716265 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.714669 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714228 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712174 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712293 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402308, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712225 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711139 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.711139 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.710612 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713549 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.712904 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.712021 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398961, 37.711614 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709848 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406986, 37.709339 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.709339 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405097, 37.708966 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708932 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708932 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.708830 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.709526 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404840, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.711003 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.710969 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.717012 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387803, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713379 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.712123 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.785996 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783011 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781518 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.781349 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431962, 37.779856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778534 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775616 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767509 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.764490 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432005, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749662 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416899, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.788437 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.788319 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788404 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.789014 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.789251 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788946 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400634, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788539 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789201 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393081, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 37.786572 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428443, 37.786640 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427800, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.781756 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.782129 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785046 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.786572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421319, 37.786097 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.785606 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421319, 37.784910 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784673 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.784808 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.782400 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423851, 37.779687 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423680, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.781942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780094 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778839 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776024 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426941, 37.779178 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777380 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428272, 37.776261 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773751 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430761, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.772428 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779382 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777550 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776532 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772937 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.772971 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773819 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772767 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.772631 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.774022 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773072 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.774192 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.772869 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.787793 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786131 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419646, 37.785012 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.785080 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.782282 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783180 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780196 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779687 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419002, 37.780297 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.780162 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783350 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417200, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781688 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782621 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.782638 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.780501 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.780569 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.780603 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787352 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.787454 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.786420 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.784707 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.784876 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.785792 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786029 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786097 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.785080 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781654 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781824 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.781078 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.780569 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412608, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411921, 37.782061 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782095 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.781281 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412393, 37.780297 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.777279 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.778381 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775515 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775209 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.775243 ] } } +, +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419131, 37.775074 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.777584 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416298, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.774972 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774955 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.773310 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770732 ] } } +, +{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.772801 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417285, 37.774294 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414753, 37.778568 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414367, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410762, 37.779178 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.779348 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776125 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.775108 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772123 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.771580 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.771987 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.773886 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774768 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410376, 37.772394 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429688, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429388, 37.769409 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431276, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767814 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767780 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769782 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427242, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428873, 37.767780 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428615, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767373 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765677 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.764456 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764388 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764727 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428486, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428486, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.770562 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.767848 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764710 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766254 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.764625 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.763404 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763082 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428401, 37.761470 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761368 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.761233 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759774 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427800, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428057, 37.757382 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426984, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426856, 37.757229 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426813, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754786 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.754599 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425911, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762013 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421491, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.758739 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755550 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753395 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.753598 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419775, 37.770460 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768204 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419775, 37.767136 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.768459 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415526, 37.768459 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.765304 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762115 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.763828 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412264, 37.770359 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769103 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410741, 37.769341 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410676, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765304 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764218 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764015 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763133 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.762929 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760656 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417071, 37.761877 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416985, 37.758925 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.757500 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756584 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.755821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.755159 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.753429 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.754277 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416685, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758993 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758976 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758756 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.761674 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410076, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409904, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759333 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.755940 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.787454 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785351 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785419 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407887, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784775 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell/Market" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.784164 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784673 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404583, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785758 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405741, 37.785860 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784334 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782841 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408659, 37.783384 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.783503 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.782095 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.780738 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781179 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782960 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782773 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404754, 37.781451 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787997 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.787708 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.785962 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786369 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786029 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786199 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.784944 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783961 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780297 ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.780433 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400849, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409217, 37.777923 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776855 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407844, 37.776634 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404239, 37.777313 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775718 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406428, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777143 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.772530 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.774701 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771546 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.779314 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778941 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399948, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398102, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785622 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.785317 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395313, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.784181 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395055, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395012, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.782434 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782638 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.783282 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.782841 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394583, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779551 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387974, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.781858 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390678, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390549, 37.780704 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783587 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779789 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389863, 37.779721 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.779619 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389541, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396643, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.778296 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.776532 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.777279 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777414 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777109 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.777007 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 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" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776363 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393897, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397974, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397802, 37.773123 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779280 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392437, 37.778975 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778093 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.775481 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775277 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389777, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768255 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768255 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408187, 37.766339 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764727 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.764218 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764557 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763234 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.763302 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770223 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.770155 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403295, 37.769884 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769748 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.768730 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.768561 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766152 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766322 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766118 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401621, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764863 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.764761 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.764897 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764761 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764931 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401364, 37.763506 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761843 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759078 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762013 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404196, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757500 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756211 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409174, 37.754311 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754141 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755872 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406557, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.754413 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.761979 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.759434 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758383 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.760927 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758009 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.756160 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403896, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754447 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.757433 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.757331 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757297 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757263 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398832, 37.755906 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755770 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754888 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.754854 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.766491 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.766389 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766661 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762420 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762691 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.762827 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393210, 37.762725 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766763 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769714 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389433, 37.769307 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769544 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389305, 37.769052 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389348, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.762878 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764388 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.764422 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764252 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389648, 37.762895 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.763353 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388918, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762963 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762691 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398360, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761402 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.760079 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758111 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.760028 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758383 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.754803 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.757263 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395699, 37.756822 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395785, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755499 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.753734 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391794, 37.757772 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391751, 37.757704 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388446, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760452 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390077, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.389991, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388446, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388232, 37.758077 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.758009 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.757585 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.755159 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.755007 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755058 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755278 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.751800 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427328, 37.751766 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.749391 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745183 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425268, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752038 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751902 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743588 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743588 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.742808 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742638 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742129 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742095 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426448, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742163 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.737717 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.736326 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737106 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.737140 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.742163 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.742299 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.742434 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741043 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740839 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.742434 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.742434 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742434 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425482, 37.739618 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424281, 37.739821 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424409, 37.739550 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.739380 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424066, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739719 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738871 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.737446 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.736207 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740195 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.752309 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752173 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.751953 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750748 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.750663 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752309 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752479 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.752445 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752275 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750646 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420418, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.748237 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.746642 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.746235 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.745913 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414196, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.752750 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752445 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749221 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.749052 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749221 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748475 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413766, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.748101 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745319 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.748424 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418444, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.739041 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.744131 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741450 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.741823 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413423, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.738871 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.738260 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413509, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737174 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413509, 37.736054 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411406, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740059 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409732, 37.739787 ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733475 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733339 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426813, 37.733339 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.730641 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429645, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429259, 37.730658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730454 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728689 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728655 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426383, 37.730963 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.728587 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.425911, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424409, 37.735901 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.735240 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735070 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426083, 37.728553 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421920, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.728740 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.728893 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422478, 37.728757 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.723988 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722511 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429903, 37.722375 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720135 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429452, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721357 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721221 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.426984, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720508 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.720406 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724650 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725193 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725430 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426040, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.719354 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719184 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735783 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420118, 37.735138 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734968 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418916, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416728, 37.734968 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416942, 37.734832 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } +, +{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732830 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733271 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732524 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.729130 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.728825 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734730 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.735783 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.734934 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.734798 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.733610 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.734900 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735002 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729843 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727399 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730963 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718709 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726584 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413380, 37.724989 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412887, 37.723801 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.723241 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410591, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.722698 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718760 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409174, 37.752513 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408960, 37.752750 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751291 ] } } +, +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752818 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.752988 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406428, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753056 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751257 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406085, 37.751630 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409561, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.748441 ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744708 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752106 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750714 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750714 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750850 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750748 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.746405 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.742842 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.741331 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.739685 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.739668 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407200, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406986, 37.737717 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738701 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403338, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741891 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.741077 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399004, 37.743928 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398810, 37.743894 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.741484 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.739125 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739550 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400548, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398875, 37.736360 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398403, 37.752377 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752241 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398274, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752241 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.751257 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.751427 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749018 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.749866 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396214, 37.750002 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752343 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396257, 37.747338 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.747253 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746167 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745964 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752614 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387846, 37.752547 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396922, 37.742774 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737208 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.736088 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.736207 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736631 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.736088 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744233 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390463, 37.744029 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742706 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742672 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387846, 37.742604 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.742434 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.391407, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737581 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390506, 37.737513 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736326 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736292 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.739312 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389133, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388403, 37.739957 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388403, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737208 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.737921 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.405870, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.734238 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732338 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.733271 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.733203 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732966 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405355, 37.732049 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730250 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727314 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.727433 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.734764 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401063, 37.735273 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399390, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403123, 37.730284 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.727976 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403638, 37.727518 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403553, 37.727331 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727739 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727637 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728468 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.728078 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730182 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408445, 37.726279 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.726143 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.726534 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.726669 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.723733 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407973, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.723869 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726788 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.720508 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405097, 37.720406 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.402995, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402694, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724073 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402093, 37.724174 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723869 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.400205, 37.723394 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.723292 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721085 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403123, 37.720916 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720678 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721595 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400935, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719049 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.731795 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395270, 37.731167 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395399, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.735172 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392652, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392180, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392352, 37.735681 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735070 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734357 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.734086 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390807, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734018 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE" }, "geometry": { "type": "Point", "coordinates": [ -122.390893, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.733848 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732253 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391493, 37.732253 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391343, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391450, 37.732253 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390335, 37.735409 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390292, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390163, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390034, 37.731642 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392008, 37.730658 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729368 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729266 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392609, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729232 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.729164 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.729198 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728078 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397931, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726924 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725668 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725481 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725464 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725295 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.723801 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395227, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397373, 37.722715 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721119 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.722477 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720780 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721187 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719761 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722409 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.722443 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395399, 37.722630 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722375 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394841, 37.722885 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.727060 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.727026 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391450, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720339 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386858, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386773, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383039, 37.755634 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753123 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386816, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387502, 37.750341 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749086 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387416, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387288, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386644, 37.745760 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383382, 37.743894 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383168, 37.743690 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384627, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740907 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384498, 37.740687 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385871, 37.736597 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739991 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739719 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384112, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384155, 37.737581 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381794, 37.738158 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737072 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.737004 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.735850 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732049 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387030, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386601, 37.732355 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386043, 37.732999 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735952 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383039, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733033 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383082, 37.733237 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386558, 37.729554 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385142, 37.730793 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.729520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385614, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730148 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384584, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.734018 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381837, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732490 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379692, 37.732389 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379348, 37.734391 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.734086 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377160, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.381709, 37.731370 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.730759 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730573 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381365, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379391, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.728214 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386773, 37.726109 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386687, 37.726041 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375872, 37.731981 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375615, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374027, 37.730929 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375271, 37.729877 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373748, 37.730929 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729877 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373126, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729130 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725329 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367933, 37.725329 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728757 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365186, 37.728587 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365444, 37.727908 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718030 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717759 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407715, 37.717283 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788709 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775142 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778669 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778534 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784300 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784198 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.805122 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.801155 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.792745 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790099 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423186, 37.806376 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807021 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420676, 37.806715 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.805580 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.806682 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805698 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805630 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805630 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808309 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417371, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.805478 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808072 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.807411 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806512 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.807834 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807800 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.808343 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807597 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805732 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410591, 37.806868 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410376, 37.807038 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801680 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.801901 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427843, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426555, 37.802104 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.802019 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428057, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427371, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798204 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.804952 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805156 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425096, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425354, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804817 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804291 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.804105 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423980, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423787, 37.803376 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424839, 37.802341 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424881, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423379, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801629 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424409, 37.800324 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.798577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424066, 37.798442 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423894, 37.798645 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.798815 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.798679 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797730 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.796950 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793355 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.790710 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.790676 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794881 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794915 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794779 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.422993, 37.794169 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.793965 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.793830 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422950, 37.794033 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.793084 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792439 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.793694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.793491 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426126, 37.790879 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.791897 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.791151 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.792100 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790438 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.790371 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421148, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.790438 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790642 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.801901 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.804511 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.805325 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415311, 37.805257 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.800985 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.800205 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.798950 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800171 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419131, 37.799171 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799120 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798340 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798306 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 37.799442 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417500, 37.799323 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799527 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.804376 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802680 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.801833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412651, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411878, 37.804952 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.802765 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.801188 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801222 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803121 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.799951 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.799968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800103 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412393, 37.800036 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.799018 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800375 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.800375 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800409 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.798238 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.795322 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.796339 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.795356 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795390 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794644 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794406 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793626 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795576 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794847 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.794644 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417886, 37.792745 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793830 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416298, 37.792948 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.792948 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.790812 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789658 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420375, 37.789540 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789353 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.791965 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.791829 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417457, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791015 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415612, 37.791286 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.791083 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416899, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795254 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.794033 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.793355 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796204 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796373 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411664, 37.795593 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411706, 37.795441 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411492, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409990, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.795305 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794576 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794576 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794440 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.411063, 37.794508 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792677 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414153, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412608, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.788319 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412307, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791863 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808224 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806088 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407887, 37.807343 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807258 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407200, 37.807173 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406020, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806614 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.803494 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.801409 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803562 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802714 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801765 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800680 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.797187 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.796780 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407329, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.800951 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.797628 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.797831 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406728, 37.796984 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405741, 37.797323 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405655, 37.797051 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.797323 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.805190 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805020 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403252, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.802341 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801409 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.802155 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.802952 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801256 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.799663 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798137 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797391 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402351, 37.797543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.800595 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798306 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400763, 37.796848 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.796729 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796238 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793830 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.792948 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.792880 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 37.793728 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407587, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405012, 37.796119 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406299, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.792507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404411, 37.794474 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404840, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404540, 37.793762 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.792880 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792711 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404239, 37.792592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792066 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792202 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409132, 37.792304 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.792304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.790133 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788387 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789591 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792372 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788539 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795898 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.795729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.796051 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.794678 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793830 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401536, 37.794033 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.792931 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.794813 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794271 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.793118 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793287 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399862, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790913 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.789014 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788607 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400849, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400935, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790286 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790337 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399132, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.789251 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788929 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400634, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.798967 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.799086 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797797 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797831 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1" }, "geometry": { "type": "Point", "coordinates": [ -122.395570, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396986, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793626 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.793592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397716, 37.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.792609 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792982 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.792575 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793016 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396171, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.793491 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796678 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394454, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393553, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793728 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793626 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793592 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393725, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393725, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393725, 37.793762 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793694 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793457 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793355 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393253, 37.793355 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398403, 37.791897 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791642 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396686, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396944, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789251 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.789641 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789489 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.791965 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791829 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393553, 37.790608 ] } } +, +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.790761 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790608 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.790574 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393296, 37.790540 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.789879 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789184 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394454, 37.789930 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394283, 37.789794 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392309, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792711 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392523, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392395, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792405 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391064, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393081, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791083 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790744 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.790472 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789455 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.789591 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377203, 37.828175 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829836 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828311 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376301, 37.825463 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374971, 37.823243 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373898, 37.823514 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371452, 37.824599 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829260 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825192 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369907, 37.825226 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368920, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366946, 37.825311 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371795, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371430, 37.816209 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822379 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821938 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819938 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366130, 37.819921 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813056 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370894, 37.813242 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813124 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370851, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369864, 37.812039 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811801 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } +, +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M" }, "geometry": { "type": "Point", "coordinates": [ -122.364199, 37.820751 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364542, 37.811852 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363770, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364285, 37.811327 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363384, 37.810377 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.787793 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787352 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.787454 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.787454 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "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": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787997 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.787708 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793135 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1908, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529691, 37.821828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3164 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832378 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536258, 37.831777 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831828 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831878 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527245, 37.832582 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527202, 37.832480 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523447, 37.831658 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527674, 37.829057 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530271, 37.825031 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524413, 37.830480 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830370 ] } } +, +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523233, 37.831421 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831336 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499908, 37.718735 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718701 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483214, 37.718607 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478429, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475382, 37.719040 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.717003 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497655, 37.716774 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716528 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496496, 37.716426 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495338, 37.716239 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716070 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485210, 37.718421 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.714873 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714771 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485145, 37.714567 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717343 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716333 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481476, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485274, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485510, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478687, 37.718480 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478740, 37.717962 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480103, 37.715009 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480189, 37.714593 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714491 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477077, 37.717699 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477442, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716715 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716783 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478322, 37.715849 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477163, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485296, 37.709314 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709127 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475575, 37.714135 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753429 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495316, 37.753539 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495059, 37.753497 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492645, 37.753454 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487313, 37.753692 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485993, 37.753895 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485167, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483847, 37.753980 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753878 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480875, 37.753972 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506367, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507504, 37.750926 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753030 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505573, 37.752894 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505487, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752827 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751189 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753123 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751020 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749332 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749162 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747338 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507547, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506700, 37.745353 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505101, 37.747457 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504865, 37.747431 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504929, 37.747287 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504972, 37.745590 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505037, 37.745429 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504801, 37.745421 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502311, 37.753030 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501003, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500166, 37.753123 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753327 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498009, 37.753217 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503041, 37.747423 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499812, 37.747542 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499522, 37.747677 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497634, 37.747626 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504833, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504661, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504704, 37.741857 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504489, 37.741823 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504532, 37.741688 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741764 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504575, 37.739999 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504436, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504404, 37.739830 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505305, 37.738082 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736020 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504264, 37.737972 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504350, 37.736122 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502601, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502344, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500466, 37.741900 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500198, 37.742019 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498320, 37.741993 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498052, 37.742120 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506818, 37.735486 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505358, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504929, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503406, 37.735596 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.735367 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501346, 37.735384 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500745, 37.735010 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499297, 37.734569 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498964, 37.734128 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.730666 ] } } +, +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729741 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.728222 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499211, 37.731608 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499222, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502526, 37.726754 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726389 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499908, 37.718735 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495424, 37.753336 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495123, 37.753293 ] } } +, +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.751300 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495016, 37.751800 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495166, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749807 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494866, 37.749569 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497419, 37.747618 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745964 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497312, 37.745964 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495359, 37.745853 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748068 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.747762 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747957 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493342, 37.747830 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494801, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494608, 37.745836 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747906 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489051, 37.748000 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488815, 37.748144 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487924, 37.748076 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.747991 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.746362 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487667, 37.746159 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494673, 37.744224 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494479, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494544, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494651, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494630, 37.742129 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742307 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494222, 37.742265 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494351, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492956, 37.742239 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742358 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740118 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494276, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.738379 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494147, 37.736767 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736538 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742494 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742358 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744513 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.744267 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487549, 37.742646 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487334, 37.742587 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487613, 37.742460 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742409 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740771 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485596, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485864, 37.748161 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484577, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483450, 37.748381 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483472, 37.748280 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481315, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481573, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752063 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476026, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750197 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479169, 37.748551 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479427, 37.748449 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476219, 37.748577 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748712 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475897, 37.748534 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748297 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475768, 37.746668 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745242 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475897, 37.745073 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485467, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485210, 37.742680 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483321, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483064, 37.742782 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481197, 37.742731 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486111, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480446, 37.742876 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478794, 37.742969 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478429, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496775, 37.733907 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496818, 37.733704 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496840, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496582, 37.733704 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496636, 37.733543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734858 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493643, 37.734043 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493449, 37.733780 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493675, 37.733364 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493922, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493857, 37.732024 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493621, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493514, 37.730344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729801 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491604, 37.734145 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733848 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733958 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489254, 37.734238 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486240, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485832, 37.734128 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734484 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483944, 37.734213 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734552 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482184, 37.734289 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729631 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486293, 37.729444 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480060, 37.734654 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477378, 37.734756 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477238, 37.734484 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479094, 37.728553 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478483, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476047, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.730420 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475790, 37.728782 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.728867 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485167, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484888, 37.724234 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483300, 37.727119 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726975 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718701 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483633, 37.722757 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721841 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721756 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719889 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483214, 37.718607 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481229, 37.720737 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727170 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480038, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478815, 37.725948 ] } } +, +{ "type": "Feature", "properties": { "name": "190 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478794, 37.725872 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477142, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475940, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475919, 37.727017 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475736, 37.726881 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476133, 37.726338 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476863, 37.725982 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480897, 37.720678 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719634 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479910, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479609, 37.719600 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478429, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475940, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743308 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475446, 37.743113 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475425, 37.741493 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475532, 37.739007 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475275, 37.739202 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475425, 37.737573 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475146, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475275, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475210, 37.734688 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474974, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734552 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.732787 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732456 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474803, 37.732117 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731175 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474749, 37.731158 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.727255 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727017 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474846, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721111 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.721264 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721247 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721187 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475232, 37.721077 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.720975 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475007, 37.720941 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475318, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719685 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475382, 37.719040 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485210, 37.718421 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478687, 37.718480 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478740, 37.717962 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3166 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482613, 37.788463 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788395 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509940, 37.779907 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509907, 37.779890 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509596, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512976, 37.779102 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512043, 37.779034 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509414, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510315, 37.775184 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510240, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509929, 37.773318 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510058, 37.773217 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.509993, 37.773217 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773649 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.773208 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510787, 37.771419 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509843, 37.771690 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509392, 37.771342 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508470, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507440, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507397, 37.779916 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505530, 37.782137 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781832 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504103, 37.781824 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505230, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505015, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504232, 37.781010 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504135, 37.779780 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.779551 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499694, 37.784978 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499597, 37.785012 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502998, 37.781086 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.779653 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.779653 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500681, 37.779475 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506260, 37.779042 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505959, 37.775209 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775243 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503835, 37.775354 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503620, 37.775481 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773284 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507762, 37.773420 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505831, 37.773539 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771588 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771478 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505670, 37.773573 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771588 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503535, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503299, 37.771614 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503062, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779153 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500402, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500616, 37.775506 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779288 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500337, 37.771877 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771894 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499908, 37.771792 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497977, 37.771978 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510283, 37.767882 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510455, 37.767373 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509199, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509071, 37.760342 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509006, 37.760359 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508781, 37.760172 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507408, 37.764184 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764057 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506109, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762378 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762208 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760359 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508137, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.507998, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505831, 37.760495 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505809, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506067, 37.760393 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506045, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758654 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758484 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505745, 37.756779 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505573, 37.756610 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505616, 37.754922 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505444, 37.754752 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760478 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502569, 37.760596 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499372, 37.760766 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499157, 37.760681 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499136, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496625, 37.779441 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.781654 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494394, 37.781646 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492548, 37.783426 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492441, 37.783418 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781798 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492527, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492334, 37.781993 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492226, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493514, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493449, 37.779797 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493385, 37.779814 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493299, 37.779687 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779814 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779746 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779577 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493213, 37.779551 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492291, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783799 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491432, 37.781663 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490510, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783579 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491947, 37.779611 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490059, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490188, 37.779729 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489973, 37.779958 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783655 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489029, 37.781892 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489287, 37.781747 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781849 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486883, 37.781993 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488042, 37.779865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487806, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497419, 37.775650 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497205, 37.775778 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493246, 37.777864 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493031, 37.777847 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493074, 37.777694 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492183, 37.777762 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494576, 37.775896 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494200, 37.775795 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.775998 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492977, 37.776032 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771919 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496336, 37.772080 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495574, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772233 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772097 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492001, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491947, 37.776677 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492055, 37.775888 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491840, 37.776024 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776117 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489909, 37.775990 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487549, 37.776219 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776091 ] } } +, +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490714, 37.772190 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772402 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487506, 37.772470 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772352 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485360, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785868 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485038, 37.785690 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485102, 37.784003 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484823, 37.783952 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484845, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481658, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782061 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484974, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484716, 37.781951 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484502, 37.781968 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.780255 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484609, 37.780221 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484823, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.779924 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483665, 37.782129 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481776, 37.782087 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481519, 37.782239 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482688, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481401, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478708, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478451, 37.784240 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479845, 37.782307 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479137, 37.782222 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479481, 37.780221 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479266, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477506, 37.782290 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476712, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476047, 37.780594 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476262, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778288 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.778050 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.776422 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484609, 37.776354 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484362, 37.776185 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776473 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482420, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774556 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484223, 37.774319 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484523, 37.772597 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772691 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484072, 37.772352 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483804, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772759 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480274, 37.776431 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480060, 37.776566 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478129, 37.776524 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477914, 37.776660 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475768, 37.776761 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475983, 37.776626 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480607, 37.772657 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479169, 37.772860 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476777, 37.772962 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772826 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476519, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496625, 37.764362 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764557 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495788, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495960, 37.762496 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494705, 37.764752 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492570, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764727 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490424, 37.764939 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488267, 37.765032 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495853, 37.761004 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495960, 37.760825 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.760783 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495660, 37.760766 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759129 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495520, 37.758892 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493203, 37.760953 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492945, 37.761071 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492934, 37.761029 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760902 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757263 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.757025 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753429 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755405 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495263, 37.755159 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495316, 37.753539 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495059, 37.753497 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492645, 37.753454 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489727, 37.761207 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489716, 37.761173 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489501, 37.761105 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761071 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486755, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487313, 37.753692 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486132, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485510, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483364, 37.765109 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481841, 37.765329 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765194 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481605, 37.765024 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.763133 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479695, 37.765431 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763675 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477742, 37.765499 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477614, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477399, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477399, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477238, 37.765541 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477185, 37.765380 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765210 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477206, 37.765160 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477313, 37.763684 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763429 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486519, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761309 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483557, 37.761377 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.761343 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483300, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761606 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481176, 37.761580 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761546 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.481240, 37.759731 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481111, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485993, 37.753895 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485167, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483847, 37.753980 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754040 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753878 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.761538 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480103, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.759596 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477185, 37.761606 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477067, 37.761750 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477109, 37.761402 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476841, 37.761784 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476820, 37.761742 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761580 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476712, 37.760147 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476948, 37.759952 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476777, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476541, 37.757857 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480983, 37.756016 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479717, 37.755897 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754141 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480875, 37.753972 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479609, 37.754336 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476691, 37.756220 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476423, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476294, 37.754116 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506367, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753030 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505573, 37.752894 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505487, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752827 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753123 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502311, 37.753030 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501003, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500166, 37.753123 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753327 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498009, 37.753217 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495424, 37.753336 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495123, 37.753293 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475232, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475361, 37.782392 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773047 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475425, 37.765618 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765456 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476004, 37.803757 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482613, 37.788463 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788395 ] } } +, +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482259, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480489, 37.793567 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480918, 37.792312 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.792092 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807563 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807233 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806571 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807461 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806080 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3164 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515379, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514950, 37.831802 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508824, 37.833022 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832963 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502140, 37.836446 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833878 ] } } +, +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493814, 37.833700 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494007, 37.833607 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493900, 37.833607 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483386, 37.833149 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.833090 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.832836 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484019, 37.829523 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483536, 37.829438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475382, 37.719040 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718650 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439086, 37.719150 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716715 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716783 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474266, 37.717445 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717326 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.715900 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474438, 37.716019 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474288, 37.715900 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473172, 37.715213 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715009 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473086, 37.715017 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473065, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472378, 37.717750 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472271, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471670, 37.716197 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471906, 37.714627 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470243, 37.714763 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475575, 37.714135 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474567, 37.713761 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713591 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714067 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714050 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.713099 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.712997 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471262, 37.713549 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471327, 37.710706 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710909 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.714406 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469996, 37.714440 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.714321 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714279 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.714338 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469256, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467378, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469460, 37.710358 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.469331, 37.710281 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714203 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712335 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467110, 37.711656 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467142, 37.711571 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711419 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711826 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711639 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708737 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705766 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463387, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714236 ] } } +, +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462336, 37.713176 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711283 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462261, 37.710909 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459160, 37.713150 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461563, 37.711444 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710129 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456070, 37.717733 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456135, 37.716426 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456049, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456049, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.715858 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456135, 37.715009 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456049, 37.714839 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458924, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458881, 37.711487 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456049, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456177, 37.713277 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456177, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456006, 37.713337 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713218 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713218 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455941, 37.711198 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.710383 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454783, 37.710290 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.705978 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706114 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460673, 37.706148 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459900, 37.706360 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706818 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457079, 37.707361 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707412 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448667, 37.718514 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716290 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.716256 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716087 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450362, 37.716061 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453152, 37.713303 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713948 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452229, 37.714169 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452143, 37.714152 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452079, 37.714067 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448453, 37.710222 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442638, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711470 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445685, 37.711724 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446264, 37.710969 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.712853 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453324, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452197, 37.708889 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709500 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450062, 37.709619 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716715 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716511 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716638 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440878, 37.716477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717148 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.716341 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440749, 37.716409 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439612, 37.715679 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439301, 37.715713 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715145 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.714771 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712454 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437896, 37.711673 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711079 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438239, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437960, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436039, 37.714253 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434763, 37.716104 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433561, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432295, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713481 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436630, 37.713456 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436393, 37.714152 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 37.714024 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436801, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710943 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434870, 37.710179 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710162 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433025, 37.712946 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432950, 37.712929 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431802, 37.712836 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.712157 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711232 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434827, 37.709636 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434591, 37.709500 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434334, 37.708966 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434226, 37.708872 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710706 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710561 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752063 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476026, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750197 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476219, 37.748577 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748712 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475897, 37.748534 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748297 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475768, 37.746668 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745242 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475897, 37.745073 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476047, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.730420 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475790, 37.728782 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.728867 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475940, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475919, 37.727017 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475736, 37.726881 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476133, 37.726338 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475940, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459975, 37.753760 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457980, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455512, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753454 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443002, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.754014 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438754, 37.753522 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473086, 37.752402 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472947, 37.750536 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472056, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750808 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748806 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748670 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473794, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473837, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472979, 37.748721 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746982 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473708, 37.746744 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745107 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473505, 37.745073 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748907 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748873 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470490, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470297, 37.745030 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468365, 37.749043 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467679, 37.749094 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466477, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466499, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752776 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.750859 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466434, 37.749162 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466263, 37.749323 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469428, 37.748984 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468559, 37.748873 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748975 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743308 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475446, 37.743113 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473708, 37.743071 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473429, 37.743206 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475425, 37.741493 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741204 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.743071 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743122 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470297, 37.743402 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470168, 37.743172 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471305, 37.741484 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471187, 37.741527 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741527 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475532, 37.739007 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475275, 37.739202 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475425, 37.737573 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475146, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736487 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470382, 37.736385 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470039, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741433 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468473, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466263, 37.741170 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466112, 37.741017 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466005, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465855, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465941, 37.740882 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740950 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740950 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465769, 37.740882 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740873 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465651, 37.740933 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465522, 37.741153 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465909, 37.740763 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465833, 37.740848 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465780, 37.740797 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465748, 37.740839 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469052, 37.738099 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.738090 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468988, 37.738065 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469052, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.737861 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.739618 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.739677 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.739456 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465039, 37.739847 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465265, 37.739550 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461349, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461048, 37.750952 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748169 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458388, 37.751707 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456907, 37.749841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455856, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456220, 37.751495 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456177, 37.751630 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458903, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458838, 37.748331 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458774, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.748093 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748178 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748178 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748161 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458817, 37.747898 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458795, 37.747838 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.747253 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458667, 37.747109 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457111, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746023 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.745370 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745293 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.747796 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746379 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455598, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745768 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454053, 37.745692 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461070, 37.740398 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463677, 37.739931 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740101 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460834, 37.740228 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460083, 37.739380 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459267, 37.740203 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459224, 37.740084 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460029, 37.739202 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461456, 37.737743 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461306, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456628, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.743995 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456521, 37.741628 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740882 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.743469 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455480, 37.743113 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743240 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742867 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453946, 37.736690 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453796, 37.736733 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475275, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475210, 37.734688 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474974, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734552 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474492, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.732787 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732456 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474803, 37.732117 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.732024 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473816, 37.731812 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471520, 37.735036 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734620 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471884, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471616, 37.734807 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.734298 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734298 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471670, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735477 ] } } +, +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471445, 37.734824 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731175 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474749, 37.731158 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474352, 37.731192 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474717, 37.730972 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474535, 37.731039 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474363, 37.730988 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472442, 37.730988 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471863, 37.731235 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471820, 37.731268 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471670, 37.731362 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730955 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734705 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734858 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467850, 37.734943 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468065, 37.734790 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734858 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.734858 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733203 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469471, 37.729945 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469471, 37.729936 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469095, 37.729987 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467883, 37.728392 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467872, 37.728383 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467561, 37.728282 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.727255 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727017 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474846, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727187 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721111 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.721264 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721247 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721187 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475232, 37.721077 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.720975 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475007, 37.720941 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474331, 37.721332 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472957, 37.721595 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475318, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719685 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475382, 37.719040 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719532 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.721484 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471799, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471734, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719719 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719566 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466756, 37.727255 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466778, 37.727221 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466477, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469739, 37.719736 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469953, 37.719583 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467936, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468151, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465233, 37.719761 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465447, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464546, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463967, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735503 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460555, 37.735307 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459654, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733704 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729970 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461499, 37.730081 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460426, 37.730556 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.733602 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.732626 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457765, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732092 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.730691 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457529, 37.731107 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457325, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457658, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455834, 37.731268 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455652, 37.731447 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.725982 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726033 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464074, 37.726007 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461392, 37.724955 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461402, 37.724913 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.724955 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463645, 37.719787 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463462, 37.719991 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462132, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461327, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461113, 37.720092 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460115, 37.720067 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459289, 37.719957 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724387 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458345, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456049, 37.723776 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.723640 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723453 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723428 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454193, 37.723428 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723462 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459074, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458055, 37.720059 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457250, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457036, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.721764 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456220, 37.720109 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455920, 37.720143 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454976, 37.720067 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719991 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.751283 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452272, 37.751300 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749264 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751215 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.749942 ] } } +, +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.745768 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452379, 37.745327 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452229, 37.745624 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745319 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452101, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451307, 37.744996 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450448, 37.748924 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449569, 37.745930 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.752352 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446200, 37.751766 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.750409 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443818, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443410, 37.752080 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443711, 37.751681 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445084, 37.749298 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444934, 37.749119 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750850 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442820, 37.750842 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442745, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.748034 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447916, 37.746464 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447766, 37.746668 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447637, 37.746362 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445084, 37.748076 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445105, 37.747923 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.748059 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444912, 37.746837 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444762, 37.747041 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444204, 37.747151 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442638, 37.748229 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746888 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444998, 37.746702 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443035, 37.745192 ] } } +, +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453238, 37.744360 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451392, 37.743495 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451178, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450674, 37.744479 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742596 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450534, 37.741730 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450470, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449225, 37.740975 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449182, 37.740704 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738201 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451736, 37.737726 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451489, 37.737819 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740195 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739244 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450534, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450716, 37.738184 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446028, 37.741382 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741085 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.448013, 37.739847 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.739898 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446243, 37.738964 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446049, 37.738930 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446629, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 37.737479 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736792 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443303, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442573, 37.752487 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752301 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752411 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441661, 37.750748 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442605, 37.749264 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442530, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.440556, 37.751028 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.750977 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440921, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437595, 37.752793 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438539, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438357, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442509, 37.748517 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441415, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.745259 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439848, 37.745242 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436544, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.751257 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436179, 37.751223 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751096 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436222, 37.751079 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.749654 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749484 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434312, 37.752894 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.752776 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434248, 37.752080 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434055, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434248, 37.751359 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751249 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.751198 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.751266 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751334 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749807 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749603 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749671 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436157, 37.748856 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435986, 37.748687 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436072, 37.747855 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747889 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435836, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435986, 37.747066 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746294 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435921, 37.746252 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435868, 37.745641 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435600, 37.744683 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433894, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433625, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433518, 37.748068 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743588 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437509, 37.743631 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437252, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738218 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744649 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.743249 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435492, 37.743079 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.741849 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435471, 37.741917 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435739, 37.741586 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435535, 37.741620 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435353, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.435879, 37.740288 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740195 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436898, 37.738599 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.738667 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436297, 37.738302 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740033 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740059 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434634, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434677, 37.738260 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.737310 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434613, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434441, 37.736232 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740186 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433604, 37.739999 ] } } +, +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.738336 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432810, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434334, 37.736080 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448775, 37.734349 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448796, 37.734196 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448946, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.732991 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448753, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731616 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453088, 37.731472 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.731616 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451242, 37.731472 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451242, 37.731464 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451221, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729953 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727866 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452294, 37.727620 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451285, 37.728417 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449161, 37.731616 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448775, 37.731404 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448539, 37.731481 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448753, 37.728494 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446457, 37.735689 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446328, 37.735520 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.733992 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733950 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734569 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445577, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446479, 37.731633 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734467 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444612, 37.731642 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446693, 37.731481 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452272, 37.726041 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.725541 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.724098 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453206, 37.723199 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.723538 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.723470 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723088 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723029 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451178, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722944 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449783, 37.723020 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453002, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450942, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450277, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449976, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721976 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449290, 37.722859 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449354, 37.721629 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450126, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446929, 37.723029 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444955, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444698, 37.723088 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444783, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 37.723224 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721051 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447122, 37.720992 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447230, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720958 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720950 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 37.720907 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446736, 37.720873 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720848 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446650, 37.720848 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446479, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446221, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446758, 37.720704 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446758, 37.720704 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.720687 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446972, 37.720440 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446886, 37.720466 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447197, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720008 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447616, 37.719397 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446607, 37.720568 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446607, 37.720568 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446564, 37.720619 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446543, 37.720610 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446693, 37.720466 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446693, 37.720466 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445041, 37.722749 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.722859 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444891, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.722859 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444741, 37.722817 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444397, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445363, 37.720279 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445256, 37.720067 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735002 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440073, 37.734875 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441919, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439634, 37.731667 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437767, 37.731667 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729037 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440020, 37.728994 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.728994 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440073, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441007, 37.727739 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439848, 37.731515 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.730378 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730310 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731498 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437155, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.733831 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435707, 37.733924 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734467 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433840, 37.734459 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734603 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431909, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434312, 37.733330 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434076, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434098, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433851, 37.732397 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433411, 37.732524 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436994, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433261, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433175, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441629, 37.726831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442402, 37.725897 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442359, 37.725880 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442445, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725668 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441200, 37.727153 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441318, 37.723360 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441243, 37.723258 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440814, 37.723436 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438668, 37.723674 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.723572 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.721281 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718650 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439086, 37.719150 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436243, 37.723368 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723148 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722944 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435192, 37.724310 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724658 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.724582 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434655, 37.724718 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434806, 37.724539 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435728, 37.723937 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435385, 37.723911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433647, 37.726347 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.726355 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.726160 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.725524 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433089, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436329, 37.722808 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.721467 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722375 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434280, 37.722409 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432960, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721637 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748178 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431480, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745192 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430793, 37.741883 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431179, 37.736656 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733212 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.731837 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431329, 37.730641 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728901 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431415, 37.728697 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431222, 37.728663 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431115, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431351, 37.720856 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431072, 37.720882 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448667, 37.718514 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458624, 37.748347 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3166 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447015, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788090 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440385, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.788514 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476047, 37.780594 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476262, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475768, 37.776761 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475983, 37.776626 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476423, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476294, 37.754116 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475232, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473247, 37.784512 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472764, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784359 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472528, 37.784495 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472163, 37.784597 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470844, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471101, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475361, 37.782392 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473966, 37.782578 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.782494 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471155, 37.782697 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470973, 37.782578 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472807, 37.780704 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472678, 37.780526 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472421, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780569 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780611 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470597, 37.780840 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469159, 37.784664 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468966, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467035, 37.784749 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466820, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466820, 37.784630 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.784461 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785020 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464707, 37.784902 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.784817 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468998, 37.782799 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468365, 37.782697 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780984 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782901 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466477, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.782892 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.782799 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464793, 37.783002 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 37.780781 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472700, 37.776778 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472228, 37.776897 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471970, 37.776948 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.776897 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472142, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470533, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470318, 37.776999 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773047 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474191, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472185, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471906, 37.773267 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471992, 37.773047 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471648, 37.773217 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470533, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468387, 37.776965 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468172, 37.777101 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.777067 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.777202 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465919, 37.775184 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464836, 37.775379 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469825, 37.773183 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468387, 37.773352 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467614, 37.773250 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466091, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466048, 37.773471 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465984, 37.773479 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465812, 37.773641 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465737, 37.773318 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463623, 37.784885 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464482, 37.784673 ] } } +, +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784715 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462572, 37.785182 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462293, 37.785351 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459289, 37.785699 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.785563 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783214 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464525, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464331, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462572, 37.783087 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461950, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464160, 37.781137 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464374, 37.780899 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464353, 37.780764 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464181, 37.780874 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459825, 37.783087 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461156, 37.781044 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460941, 37.781281 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456564, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786038 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459031, 37.785656 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459096, 37.785597 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783859 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783986 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456328, 37.785970 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455212, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454751, 37.783961 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454493, 37.784122 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783961 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783257 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783248 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459074, 37.783070 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.781866 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.781425 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.781374 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458688, 37.781154 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781078 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456435, 37.781264 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781527 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464235, 37.779170 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.779000 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464160, 37.777287 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461971, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776982 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777143 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.777177 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775447 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463806, 37.775608 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461746, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464106, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463859, 37.773742 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463859, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463709, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463838, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773844 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458860, 37.777474 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458516, 37.777474 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458645, 37.777075 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 37.777151 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455362, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455040, 37.777558 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774370 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774421 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458001, 37.774285 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454836, 37.774802 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454718, 37.774607 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774760 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454150, 37.772962 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453882, 37.772894 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454332, 37.772767 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454182, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770859 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475425, 37.765618 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765711 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765813 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765652 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470329, 37.762072 ] } } +, +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.468923, 37.770537 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.770435 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765906 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468709, 37.765753 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762072 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.766016 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466348, 37.765847 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765855 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466520, 37.765685 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.764286 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766093 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466391, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764108 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.763938 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.763913 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466692, 37.762225 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762140 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466305, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.762038 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762089 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761911 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473665, 37.761920 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759299 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street" }, "geometry": { "type": "Point", "coordinates": [ -122.473794, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473665, 37.758111 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.761852 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.761801 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470576, 37.761954 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.759163 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472271, 37.759129 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473515, 37.756966 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756296 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.755261 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473215, 37.754252 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.754107 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469524, 37.761987 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469524, 37.761954 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470082, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.758196 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758238 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760410 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.760240 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758544 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466027, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466048, 37.758391 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758527 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756678 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465694, 37.756508 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465554, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464010, 37.765957 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462465, 37.766177 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461885, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464278, 37.764091 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464031, 37.764159 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464353, 37.762335 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462851, 37.762395 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462003, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.764227 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766118 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762725 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460512, 37.762658 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762522 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762793 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457958, 37.765982 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458645, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458023, 37.764362 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457637, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456564, 37.765007 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456510, 37.764931 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.763311 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458173, 37.763311 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456971, 37.763811 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763718 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454911, 37.766211 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454697, 37.766093 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454525, 37.764354 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463881, 37.758467 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463859, 37.758425 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463130, 37.758696 ] } } +, +{ "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.757721 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756593 ] } } +, +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463795, 37.754650 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463548, 37.754896 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461488, 37.756907 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.755405 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754472 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459975, 37.753760 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457980, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456349, 37.755337 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755304 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455512, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453281, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453517, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453506, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451950, 37.784020 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451736, 37.784206 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450255, 37.786708 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449955, 37.786920 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448517, 37.787488 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449901, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448270, 37.784987 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.781849 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453259, 37.781595 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782239 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449912, 37.782027 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788022 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787183 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446758, 37.786326 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446736, 37.787378 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.786241 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446715, 37.785377 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.785241 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446285, 37.784393 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446200, 37.784537 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446178, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443067, 37.784885 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443303, 37.784766 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447573, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782154 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782129 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446800, 37.782511 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782672 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445792, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782324 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453281, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453474, 37.777753 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.778093 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451371, 37.778008 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449654, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449590, 37.778237 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.775413 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449290, 37.775371 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453238, 37.774997 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453120, 37.774904 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452379, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452852, 37.774031 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773038 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452508, 37.773064 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.773250 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450856, 37.773378 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449161, 37.773607 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449461, 37.773420 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447165, 37.778763 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447208, 37.778661 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778771 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446908, 37.777541 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778763 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446736, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775676 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775896 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775896 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775744 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775710 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778915 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443593, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443196, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444955, 37.776770 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444762, 37.776939 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.776812 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443324, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447315, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446243, 37.774022 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446049, 37.774056 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446511, 37.773929 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.773946 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445620, 37.771961 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445728, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774090 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774192 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.774294 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442638, 37.774429 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787954 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787988 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440320, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439998, 37.786284 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439934, 37.785148 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439816, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439730, 37.785309 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.785258 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438325, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785521 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.783850 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782799 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440299, 37.779509 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783426 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783375 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439569, 37.783180 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439526, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439226, 37.781612 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437670, 37.783621 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780501 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438754, 37.780543 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437166, 37.780874 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437359, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434795, 37.785945 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785792 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433561, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787717 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433196, 37.785996 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433153, 37.786157 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432832, 37.786089 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785818 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433046, 37.784393 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784257 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432917, 37.784732 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.783986 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435514, 37.781078 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435707, 37.780925 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432703, 37.783019 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783189 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781730 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432402, 37.781527 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.781349 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432231, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780204 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431952, 37.779856 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779288 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777313 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441522, 37.777440 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440492, 37.779356 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440159, 37.777516 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439913, 37.777643 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438582, 37.777813 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777728 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438303, 37.777864 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438217, 37.777864 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438411, 37.777686 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438239, 37.776761 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438056, 37.776770 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441500, 37.774573 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774506 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440546, 37.770749 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440256, 37.770927 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437402, 37.774997 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.773047 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773183 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437370, 37.771291 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435192, 37.778152 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434934, 37.778271 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436458, 37.775209 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.775150 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434441, 37.775472 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778644 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778542 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431759, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775413 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775625 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775625 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437102, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771232 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433851, 37.771605 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.771775 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.769171 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769332 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451757, 37.769315 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.768332 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453345, 37.768238 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453259, 37.766415 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452916, 37.766449 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450792, 37.769434 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450770, 37.769451 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448667, 37.769714 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769892 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450427, 37.768527 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450202, 37.766830 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765541 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452594, 37.765499 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452691, 37.765329 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764549 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.764430 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.764769 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764600 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765881 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449912, 37.765940 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449805, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450126, 37.765745 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449955, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450083, 37.764905 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449858, 37.764786 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764769 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449783, 37.764617 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763260 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449375, 37.763133 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769163 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770248 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445406, 37.770087 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769010 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447916, 37.767102 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447916, 37.766941 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446693, 37.767263 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.767305 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446457, 37.767144 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.770350 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.770206 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.770435 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444848, 37.767509 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444826, 37.767348 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766288 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447938, 37.766152 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765406 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447755, 37.765227 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446071, 37.765295 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446092, 37.764294 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445878, 37.765143 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.445942, 37.764278 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.763014 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446800, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.765448 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765821 ] } } +, +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443303, 37.764498 ] } } +, +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764498 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443796, 37.763234 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442906, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449214, 37.761708 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761682 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449054, 37.760927 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753454 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447680, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.760919 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761852 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446629, 37.760936 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760859 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446135, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758790 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445899, 37.758663 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761971 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445213, 37.761954 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444075, 37.761326 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761199 ] } } +, +{ "type": "Feature", "properties": { "name": "320 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "341 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.759909 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444483, 37.760478 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444247, 37.760546 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761801 ] } } +, +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.761648 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443539, 37.760359 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760240 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444440, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.757797 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444483, 37.758383 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444054, 37.758408 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758221 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444150, 37.757500 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.756449 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443281, 37.756406 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442831, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754116 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443002, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440213, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438539, 37.768671 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438325, 37.768832 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439269, 37.768052 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439505, 37.766491 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438196, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438282, 37.766695 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438153, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437209, 37.767297 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767161 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765363 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762081 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.762412 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 37.769180 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435707, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435836, 37.767382 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.767280 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435578, 37.767611 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435707, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433690, 37.769392 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433647, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769112 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767509 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433561, 37.767399 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435385, 37.765609 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435256, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435385, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435449, 37.762462 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435385, 37.762462 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762547 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762395 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435085, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434870, 37.762522 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432810, 37.764490 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.763913 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433325, 37.763955 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762649 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761708 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761606 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440213, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438282, 37.761597 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.760630 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438153, 37.760766 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437295, 37.760698 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759036 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440428, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.754048 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.754014 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437842, 37.757560 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437874, 37.757407 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755974 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755812 ] } } +, +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439011, 37.755363 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438754, 37.753522 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437745, 37.754370 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437574, 37.754218 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435149, 37.760953 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434934, 37.760834 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760749 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434913, 37.759392 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434795, 37.759163 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757780 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.761097 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 37.757679 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434634, 37.757636 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.756101 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434462, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434484, 37.754642 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434312, 37.754413 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472056, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466477, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466499, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752776 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455856, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443818, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437595, 37.752793 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436544, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434312, 37.752894 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.752776 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431351, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431372, 37.776999 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776863 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431566, 37.775837 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431201, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430836, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774268 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773759 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431276, 37.767534 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767670 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.766279 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765635 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431136, 37.765685 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762683 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435235, 37.762624 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476004, 37.803757 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807563 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807233 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806571 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807461 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806080 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806927 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472110, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801790 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466799, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.803596 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467078, 37.801790 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466928, 37.801604 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801019 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.799832 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803045 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462229, 37.802901 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800129 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460362, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460244, 37.798433 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803808 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457765, 37.803689 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456564, 37.801773 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456778, 37.801629 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456725, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456392, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454525, 37.803689 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454354, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802299 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802079 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.801434 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454718, 37.801731 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801858 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.458988, 37.800197 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797891 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458774, 37.797950 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458967, 37.797730 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801010 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454096, 37.800756 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454032, 37.800714 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453935, 37.800536 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456295, 37.798399 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455094, 37.798247 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798170 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453409, 37.800349 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452422, 37.799120 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799044 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799383 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799222 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.798179 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450126, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445363, 37.804342 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445223, 37.803630 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445180, 37.803418 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443893, 37.804554 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803774 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443678, 37.803630 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802477 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443517, 37.802842 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.802850 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801909 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801909 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447444, 37.800409 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446951, 37.800324 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447165, 37.798543 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798416 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447187, 37.797153 ] } } +, +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445695, 37.797602 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800620 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444419, 37.799841 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443131, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442938, 37.800044 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442745, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.799078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445105, 37.798671 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.798883 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796704 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451521, 37.796483 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445513, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795602 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.795898 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790905 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447369, 37.790905 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447401, 37.790710 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789184 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447037, 37.788972 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447015, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444365, 37.791278 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444247, 37.791185 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441833, 37.803079 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805419 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441275, 37.800112 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800264 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439677, 37.800442 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439344, 37.800366 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439419, 37.799290 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437456, 37.800722 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437145, 37.796873 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437145, 37.796873 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437123, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804444 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436801, 37.802816 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436694, 37.802630 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436522, 37.802401 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435170, 37.802748 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433604, 37.805419 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433625, 37.804868 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805283 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432209, 37.805130 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.805122 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.801155 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800892 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801087 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436179, 37.800909 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436372, 37.800739 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799705 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436050, 37.799595 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435621, 37.800841 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434698, 37.800951 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434505, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434505, 37.800943 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437059, 37.796789 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435492, 37.797391 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.797128 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435578, 37.796975 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797043 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441994, 37.796322 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442187, 37.796170 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438883, 37.796585 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438689, 37.796738 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441307, 37.791566 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.791727 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.789972 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788090 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440385, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439612, 37.791770 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.788514 ] } } +, +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436801, 37.795992 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437037, 37.795941 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436866, 37.795856 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794890 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436672, 37.794915 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794135 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794059 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.794160 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.793804 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434677, 37.792533 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433389, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433025, 37.792719 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432810, 37.792745 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792202 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792346 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436136, 37.791447 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434484, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435557, 37.789328 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791719 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434334, 37.789836 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434098, 37.789921 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433947, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433668, 37.789836 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789989 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432231, 37.790108 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448517, 37.787488 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788022 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787954 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787988 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433561, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787717 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431480, 37.801485 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431415, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801366 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801350 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.800570 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800366 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431201, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791922 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430857, 37.790193 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718836 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427059, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719193 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718718 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718955 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718769 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400495, 37.719049 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397491, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432295, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431802, 37.712836 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.712157 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711232 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429849, 37.718141 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428197, 37.717563 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428347, 37.717479 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710706 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710561 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711741 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711113 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426265, 37.711079 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425686, 37.718293 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717784 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710044 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422221, 37.713549 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421148, 37.713218 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709823 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423218, 37.709305 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422124, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422146, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421759, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419957, 37.712972 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712794 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.712607 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418176, 37.712420 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710027 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711860 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418863, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711707 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418777, 37.710621 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417532, 37.712233 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.713303 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416052, 37.712021 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415901, 37.712013 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415215, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414464, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718039 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715034 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714423 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414528, 37.713243 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414442, 37.713345 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713286 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712726 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711673 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711062 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413026, 37.710977 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712768 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712191 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.712250 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710740 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411503, 37.710587 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.710493 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710358 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.708482 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.708499 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420021, 37.708210 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419871, 37.708643 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419957, 37.708372 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.707896 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418412, 37.707701 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415708, 37.707132 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415537, 37.706937 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707090 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706530 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.706292 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411996, 37.709314 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411975, 37.709059 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412339, 37.708261 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407447, 37.717767 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717818 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407726, 37.717292 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.717156 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405795, 37.716664 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716596 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405216, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405452, 37.717224 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404379, 37.717054 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715340 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.713846 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407147, 37.713345 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712641 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712454 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.408960, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409614, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409518, 37.710010 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408692, 37.709942 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407919, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408069, 37.711444 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407790, 37.711487 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711351 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406728, 37.713855 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404958, 37.713210 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405151, 37.712573 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405773, 37.711894 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.710570 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716867 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402297, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716095 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.716613 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400194, 37.716477 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.717003 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.716358 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716265 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.714669 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399358, 37.714814 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714966 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402126, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714236 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401997, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712454 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402576, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402619, 37.712233 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402598, 37.712216 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402619, 37.712174 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402297, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712293 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402340, 37.712225 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402319, 37.712250 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712225 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403799, 37.711139 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403778, 37.711139 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403885, 37.710621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400066, 37.713549 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.712904 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400924, 37.712013 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.712021 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399186, 37.711588 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398961, 37.711622 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709857 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406996, 37.709348 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.709348 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405108, 37.708974 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708940 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405044, 37.708940 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405065, 37.708838 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404636, 37.709526 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404851, 37.709093 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708804 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708804 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397233, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.711003 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396611, 37.710969 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718039 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389208, 37.717012 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714389 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387803, 37.714118 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713388 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387942, 37.712794 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386998, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.712132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751334 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749671 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734603 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431909, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.725524 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420880, 37.753403 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420708, 37.753607 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418627, 37.753429 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406567, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401568, 37.753386 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398671, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397341, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753760 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395645, 37.753743 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429763, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429549, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.751800 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427328, 37.751775 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751588 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.749391 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427124, 37.749179 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748178 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431480, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745192 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426888, 37.746778 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425268, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422768, 37.752046 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422982, 37.751910 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751860 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430793, 37.741883 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743597 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426587, 37.743588 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426652, 37.742808 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742638 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428604, 37.742019 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426759, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426523, 37.742129 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426523, 37.742095 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742103 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426459, 37.742222 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426373, 37.742163 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431179, 37.736656 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429527, 37.737726 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.736334 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427574, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427489, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427918, 37.737106 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427746, 37.737140 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425750, 37.742019 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425815, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.742171 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.742307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422060, 37.742434 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422167, 37.742307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422918, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741051 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422510, 37.740848 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421995, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.742434 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.742434 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.739931 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425493, 37.739626 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425793, 37.738896 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424281, 37.739821 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424420, 37.739558 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.739745 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.739388 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424077, 37.739847 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739728 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738871 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737064 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.737446 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424334, 37.736207 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740203 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420901, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420558, 37.752182 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420515, 37.752063 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418412, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.752318 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752182 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.751961 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750748 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.750282 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.750672 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416373, 37.752309 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416180, 37.752487 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416159, 37.752445 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752275 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416202, 37.750646 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749111 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420429, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.747991 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420214, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420064, 37.748059 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748212 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418176, 37.748568 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418369, 37.748237 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419099, 37.746939 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418820, 37.747109 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420236, 37.746744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.746651 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419399, 37.746244 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419592, 37.745921 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420300, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415751, 37.748305 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414206, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.752759 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752445 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413841, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749230 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.749060 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749221 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752691 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411739, 37.752589 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748483 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413820, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413584, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413766, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.748110 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746871 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413455, 37.745209 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745319 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748398 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411631, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748339 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410430, 37.748424 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409765, 37.748229 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420644, 37.744292 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739312 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418455, 37.739304 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.739041 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416395, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413155, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413005, 37.744140 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411224, 37.741450 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410666, 37.741510 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.741832 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414614, 37.738829 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414550, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738998 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413434, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413305, 37.738879 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413369, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.738260 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413241, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413520, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737183 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413520, 37.736054 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739779 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411406, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411309, 37.740067 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409743, 37.739787 ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410172, 37.739711 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430278, 37.735477 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733212 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.731837 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733483 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427939, 37.733466 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.428004, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733721 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733339 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426823, 37.733339 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431329, 37.730641 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429645, 37.731396 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429270, 37.730658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730454 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728901 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431415, 37.728697 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431222, 37.728663 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431115, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426394, 37.730972 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730836 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728477 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.728596 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.425922, 37.734043 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424699, 37.735621 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424420, 37.735910 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424055, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.735248 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.735070 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728714 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426083, 37.728562 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421920, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422789, 37.728748 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.728901 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422478, 37.728757 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.428991, 37.723988 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723114 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431351, 37.720856 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431072, 37.720882 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430021, 37.722511 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429903, 37.722384 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429506, 37.720135 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429463, 37.720109 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719702 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721620 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721552 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427617, 37.721357 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.721281 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721221 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.426995, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719821 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426158, 37.720517 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.720406 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718836 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427059, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724650 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724743 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724743 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725082 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423240, 37.725201 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422038, 37.725600 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725430 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425879, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426051, 37.720398 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.719363 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425772, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719312 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719193 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420064, 37.735791 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420129, 37.735138 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419721, 37.734968 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418627, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418219, 37.734892 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418927, 37.732618 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.735638 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416728, 37.734968 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416942, 37.734832 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415687, 37.734892 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } +, +{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732838 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415258, 37.733271 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732533 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419399, 37.729130 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419163, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416266, 37.728825 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415043, 37.734858 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734730 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414914, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.734671 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.735791 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413648, 37.734943 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413584, 37.734807 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.733610 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411288, 37.734909 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735010 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729843 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412983, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414571, 37.727399 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727391 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410837, 37.730912 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410194, 37.730963 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725863 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420279, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726372 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727017 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726881 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718718 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414142, 37.726593 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414013, 37.726474 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413541, 37.725142 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413391, 37.724989 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413069, 37.723928 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412897, 37.723810 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.722944 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410430, 37.723241 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410601, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412533, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412382, 37.722706 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411567, 37.722842 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718955 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718769 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753064 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409185, 37.752521 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408971, 37.752759 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751300 ] } } +, +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752827 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408885, 37.751113 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408906, 37.749688 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408735, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.752988 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406267, 37.753251 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406439, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753064 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751266 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406085, 37.751639 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409561, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.748449 ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744717 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752114 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402126, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750723 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750714 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400151, 37.750859 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400023, 37.750757 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747126 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403692, 37.746413 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409400, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409400, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405194, 37.742884 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.742850 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.741331 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407812, 37.739694 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407125, 37.739668 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407200, 37.739541 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738370 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406996, 37.737726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.739864 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406889, 37.738701 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.738150 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406782, 37.737946 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404164, 37.742528 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403338, 37.741883 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403070, 37.741900 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401568, 37.741077 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399014, 37.743936 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398810, 37.743902 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400988, 37.741493 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403735, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403048, 37.739134 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401010, 37.739550 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400548, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398885, 37.736360 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752284 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398413, 37.752377 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398306, 37.752241 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752165 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398285, 37.751283 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752241 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.751266 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.751427 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.751113 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749026 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396890, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.749866 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396225, 37.750002 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394680, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394830, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752352 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396257, 37.747346 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395881, 37.747262 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746167 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393843, 37.745972 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752623 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392770, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387856, 37.752547 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396783, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396933, 37.742774 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.742086 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.738252 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398242, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398628, 37.736317 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396718, 37.737216 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396632, 37.737098 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737166 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394809, 37.736096 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.736215 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394100, 37.736843 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736631 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.736096 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744241 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390474, 37.744038 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740899 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392920, 37.740695 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388307, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387921, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742706 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742680 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742629 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387856, 37.742612 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.391418, 37.739847 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391268, 37.739753 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392985, 37.738082 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392963, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737581 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390517, 37.737513 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736334 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391633, 37.736266 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391526, 37.736300 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.739321 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389133, 37.738913 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389122, 37.738913 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388908, 37.739915 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739915 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388886, 37.739915 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740305 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740118 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388414, 37.739957 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388403, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737216 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737946 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389616, 37.737929 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737641 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389702, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737641 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.405881, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405580, 37.734247 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405945, 37.732414 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732346 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405559, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404293, 37.733271 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404722, 37.733212 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404808, 37.732999 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404786, 37.732966 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405366, 37.732058 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408992, 37.731328 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731498 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404701, 37.730106 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404615, 37.730259 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.405001, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404937, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404701, 37.727323 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404507, 37.727442 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402190, 37.734586 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.734170 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401589, 37.734773 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401063, 37.735273 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400666, 37.735333 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399400, 37.731837 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399465, 37.731667 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399250, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403134, 37.730284 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.727976 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403671, 37.727968 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403649, 37.727518 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403553, 37.727331 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403241, 37.727739 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727645 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401439, 37.728468 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401932, 37.728078 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730191 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401010, 37.729122 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400881, 37.729096 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408445, 37.726279 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408499, 37.726143 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407662, 37.726542 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.726669 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725218 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723487 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409614, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723623 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408413, 37.723742 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407984, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.723877 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.726797 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406482, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409056, 37.719380 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408885, 37.719583 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719889 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404336, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406911, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405323, 37.720517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405097, 37.720415 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403005, 37.726372 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402705, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724081 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402104, 37.724183 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401868, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723877 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.723555 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.400205, 37.723394 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399079, 37.723292 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403070, 37.721094 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403123, 37.720924 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404100, 37.720678 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401224, 37.721603 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401396, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400945, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719380 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400495, 37.719049 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397619, 37.733296 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733203 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395924, 37.732007 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.731803 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395270, 37.731167 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395045, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395399, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729733 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393285, 37.727917 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735163 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392920, 37.735027 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.735172 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392652, 37.735027 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392180, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392362, 37.735681 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392083, 37.735664 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735070 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390860, 37.734349 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390839, 37.734357 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734349 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.734790 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390925, 37.734094 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390817, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734018 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE" }, "geometry": { "type": "Point", "coordinates": [ -122.390903, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390860, 37.733848 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732278 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732278 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732261 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391504, 37.732261 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391354, 37.732414 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391461, 37.732253 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391225, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390345, 37.735409 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390281, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390292, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390174, 37.731701 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390045, 37.731650 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732898 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388886, 37.732923 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392019, 37.730666 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729376 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392749, 37.729223 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392641, 37.729266 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392609, 37.729291 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729240 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.729164 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392234, 37.729198 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727908 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728078 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397941, 37.723012 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726932 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725668 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725481 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725490 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394251, 37.725464 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725303 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.723801 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395238, 37.723131 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397383, 37.722723 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721128 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.722486 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720780 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721187 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397491, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719770 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395667, 37.722401 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395645, 37.722409 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.722452 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395409, 37.722630 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722375 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395602, 37.722333 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394841, 37.722893 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722027 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.721416 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.727068 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388543, 37.727034 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391450, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720347 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719923 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387663, 37.753132 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387502, 37.750341 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749094 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749077 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387449, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387427, 37.748941 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387288, 37.746023 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745853 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386955, 37.746057 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387148, 37.741408 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386955, 37.735850 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387363, 37.732058 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387041, 37.731854 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429849, 37.718141 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425686, 37.718293 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414464, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718039 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718039 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3166 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781730 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432402, 37.781527 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.781349 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432231, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780204 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431952, 37.779856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778644 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778542 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431759, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775625 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416910, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.788429 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.788319 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413605, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788395 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788192 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405988, 37.788548 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405409, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403456, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788616 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400645, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400066, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788531 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392813, 37.788675 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 37.786581 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429613, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431351, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428454, 37.786648 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427059, 37.786937 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428154, 37.784851 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427810, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426652, 37.785902 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428948, 37.781917 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429141, 37.781764 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427295, 37.782129 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427231, 37.782019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787208 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424978, 37.786123 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425085, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785046 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421545, 37.787632 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787395 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.786572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421330, 37.786106 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421545, 37.785784 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785682 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421459, 37.785606 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421330, 37.784910 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421416, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784681 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.784817 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784495 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424270, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424206, 37.782400 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423862, 37.779687 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423691, 37.779611 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423455, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420729, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421073, 37.781951 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420665, 37.780950 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420708, 37.780094 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778847 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431372, 37.776999 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776863 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431566, 37.775837 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431201, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430836, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776032 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426952, 37.779187 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777380 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428272, 37.776261 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427553, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426265, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774268 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773759 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430761, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430536, 37.772199 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430342, 37.772029 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427317, 37.772436 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427059, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425214, 37.779382 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777558 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776532 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423304, 37.777745 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423326, 37.776897 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.777101 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421952, 37.775065 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772937 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773810 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.772971 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773827 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772767 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.772631 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.774031 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422553, 37.773183 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422296, 37.773081 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.774192 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773267 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422596, 37.771334 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421995, 37.772877 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420794, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.788005 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420193, 37.787793 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786564 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419893, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786801 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418541, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786140 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419657, 37.785020 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419163, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416610, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787242 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417790, 37.785080 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415773, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782985 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.782867 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420536, 37.782290 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783180 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420193, 37.780204 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420322, 37.779687 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418326, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419013, 37.780306 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.780170 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783350 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417361, 37.783274 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417200, 37.782460 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417103, 37.781697 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783477 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415859, 37.782621 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415794, 37.782646 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.780509 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780764 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416867, 37.780569 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416846, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.780611 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415687, 37.780730 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780781 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787361 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414593, 37.787454 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414700, 37.786428 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787649 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786767 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414528, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414442, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414271, 37.784707 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413155, 37.784876 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.785801 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412425, 37.783884 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410280, 37.787174 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409958, 37.787217 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786038 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409765, 37.786097 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411975, 37.785851 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.785088 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784105 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414078, 37.783681 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782833 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415086, 37.781663 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781824 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412575, 37.783036 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413584, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.781078 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412447, 37.780645 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.780569 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779814 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412608, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411932, 37.782070 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409893, 37.783384 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782104 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412189, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411331, 37.781290 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412393, 37.780306 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420193, 37.777287 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419742, 37.778186 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.778381 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418219, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419485, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419485, 37.775523 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419378, 37.775218 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775303 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419184, 37.775243 ] } } +, +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419142, 37.775082 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418519, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.775371 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416545, 37.778898 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778737 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777711 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.777592 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777406 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416309, 37.777372 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775939 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.774980 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419249, 37.775031 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419249, 37.775031 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419270, 37.774963 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418627, 37.773318 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.772996 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770732 ] } } +, +{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.772809 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417318, 37.774573 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417296, 37.774302 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417125, 37.774217 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416888, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415730, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772826 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414829, 37.778610 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414721, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414753, 37.778576 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414593, 37.778500 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414378, 37.779102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413026, 37.777236 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412726, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414314, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411352, 37.778966 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410773, 37.779178 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.779356 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411760, 37.776219 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411610, 37.776134 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.775116 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772123 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.771588 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413734, 37.771995 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.773895 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774768 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410376, 37.772402 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429699, 37.770248 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769502 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769468 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429398, 37.769409 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429162, 37.769502 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769298 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429034, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431276, 37.767534 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767670 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767772 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767823 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428991, 37.767789 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767670 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767263 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767348 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769782 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427253, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427102, 37.768883 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428883, 37.767780 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428626, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767382 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.766279 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765635 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431136, 37.765685 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430707, 37.766186 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764617 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.764456 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428604, 37.764379 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428561, 37.764388 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428519, 37.764583 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426158, 37.764727 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428497, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428497, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.770571 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422446, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422296, 37.770147 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422124, 37.768391 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422274, 37.767857 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421974, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764719 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764854 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422124, 37.766262 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422060, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.765227 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.764990 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.764634 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421652, 37.763412 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421781, 37.763090 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430686, 37.761097 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.761224 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428411, 37.761470 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428197, 37.761368 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.761241 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761190 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759782 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427800, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428068, 37.757382 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426995, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426866, 37.757238 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756644 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426823, 37.756440 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427660, 37.754786 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427746, 37.754608 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425922, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423648, 37.761521 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421523, 37.762013 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761665 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421652, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421352, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421502, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421352, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421201, 37.758739 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757153 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421201, 37.756610 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755550 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420880, 37.753403 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420708, 37.753607 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.770469 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768620 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420021, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768213 ] } } +, +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.767136 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665, 37.768459 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415526, 37.768459 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765126 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419721, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.765143 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765024 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.762632 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417618, 37.765304 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417639, 37.765261 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765567 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415429, 37.765397 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415429, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416052, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765227 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762115 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415279, 37.763828 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412275, 37.770359 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769807 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410451, 37.769672 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410451, 37.769672 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769112 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410741, 37.769341 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410676, 37.768450 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.765380 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414914, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410537, 37.765304 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 37.765567 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409807, 37.765719 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410280, 37.764218 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410408, 37.764023 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410322, 37.763141 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.762937 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419506, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419463, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760656 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419249, 37.759799 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.758171 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417082, 37.761877 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416996, 37.758934 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416781, 37.758866 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.757509 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418948, 37.756593 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418712, 37.755821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418798, 37.755168 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418627, 37.753429 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418562, 37.754277 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416695, 37.755728 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416459, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415086, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.759002 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414614, 37.758985 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758815 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414786, 37.758764 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761869 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410043, 37.761674 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410076, 37.760579 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409915, 37.760376 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759333 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414335, 37.755948 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414485, 37.755456 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408327, 37.787462 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408391, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408134, 37.786513 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785360 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.409507, 37.785071 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409400, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784062 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407962, 37.785427 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407898, 37.785377 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407683, 37.784800 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407683, 37.784800 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784775 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784775 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell/Market" }, "geometry": { "type": "Point", "coordinates": [ -122.407640, 37.784461 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408177, 37.784164 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783884 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408069, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784681 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786394 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404583, 37.786598 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785758 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785648 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405741, 37.785860 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785529 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784359 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784342 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409636, 37.782850 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408659, 37.783392 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.783503 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.782104 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409099, 37.780747 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408305, 37.781188 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406653, 37.782960 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406653, 37.782773 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406482, 37.782646 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404754, 37.781451 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404743, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787997 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403520, 37.787522 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403370, 37.787734 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403435, 37.787632 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.787708 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402490, 37.785970 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401568, 37.786513 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786377 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786343 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401611, 37.786038 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403928, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404121, 37.784257 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400237, 37.787751 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399851, 37.787869 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786208 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400259, 37.784944 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399100, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783969 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398757, 37.783986 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783036 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780306 ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.780442 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400860, 37.782154 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.401010, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399915, 37.780671 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409217, 37.777932 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776863 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407844, 37.776643 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405323, 37.778627 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404239, 37.777321 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406460, 37.775727 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406439, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404357, 37.777151 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773539 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407125, 37.772538 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407082, 37.772326 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405173, 37.774701 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405001, 37.774590 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404486, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405902, 37.771554 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405237, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.778915 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.779314 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401825, 37.778941 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402598, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402233, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399948, 37.777949 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403370, 37.773267 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401825, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.771707 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399422, 37.773674 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773471 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398607, 37.786598 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398113, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396718, 37.785631 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396525, 37.785750 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396525, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.785512 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396525, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.785317 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394186, 37.787420 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393607, 37.787954 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395324, 37.784529 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395452, 37.784190 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395055, 37.784291 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395012, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.782434 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782638 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398070, 37.779475 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393779, 37.783291 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.782841 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394583, 37.779984 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393500, 37.779560 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392169, 37.786733 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388135, 37.784359 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387974, 37.784630 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784597 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392234, 37.781858 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781824 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390689, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390560, 37.780704 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783596 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389938, 37.779797 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389873, 37.779721 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.779619 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389551, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396643, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.778305 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.776541 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.776320 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397158, 37.775489 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397212, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.777279 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777423 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395130, 37.777109 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.777185 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394873, 37.777067 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394744, 37.777007 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394894, 37.776897 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394229, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394036, 37.776320 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393950, 37.776363 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393897, 37.776320 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394036, 37.776252 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776151 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393864, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776057 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775778 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773166 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397974, 37.772894 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397813, 37.773123 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779288 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392448, 37.778983 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778101 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392792, 37.775481 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775286 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.776185 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772996 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.772962 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389787, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389616, 37.771164 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407919, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407662, 37.768255 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407662, 37.768264 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407619, 37.767331 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408198, 37.766347 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765702 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765702 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764736 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.764227 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405516, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766042 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404443, 37.764557 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763243 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404293, 37.763302 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.762208 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770231 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404121, 37.770163 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403306, 37.769892 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403156, 37.769756 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.768739 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.768569 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.767467 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402726, 37.767314 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403799, 37.765940 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764820 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403477, 37.764820 ] } } +, +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.764820 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766160 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766322 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766118 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766008 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401632, 37.766059 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764871 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.764769 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401675, 37.764786 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.764905 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764761 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403456, 37.763557 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763260 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399679, 37.766228 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399980, 37.764990 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764931 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401364, 37.763506 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401246, 37.762208 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761852 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409657, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759078 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762021 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404196, 37.760953 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757509 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409614, 37.757399 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409421, 37.756211 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409486, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409185, 37.754311 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754150 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.757492 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406600, 37.757187 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406567, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405301, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404937, 37.754421 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404057, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402405, 37.761987 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402297, 37.760953 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404057, 37.759663 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403885, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.759680 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759562 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402233, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.759434 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758391 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401117, 37.760936 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401031, 37.759663 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401117, 37.758137 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400795, 37.758103 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758018 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759731 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911, 37.756881 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401847, 37.756169 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403907, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403628, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754447 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401696, 37.754506 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401675, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401568, 37.753386 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400817, 37.757441 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.757339 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757297 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757271 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398864, 37.757187 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398843, 37.755906 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755770 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754888 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398757, 37.754854 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.766491 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396783, 37.766398 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766661 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397662, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764752 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762615 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762581 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397405, 37.762429 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762700 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.762827 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393221, 37.762734 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391032, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390882, 37.766864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766763 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769714 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389444, 37.769315 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389294, 37.769553 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389305, 37.769052 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389272, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389348, 37.767806 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389187, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389187, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388994, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.762878 ] } } +, +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.764362 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764388 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388757, 37.764430 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388865, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764252 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389659, 37.762904 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764176 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388629, 37.763362 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388929, 37.762988 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388843, 37.762971 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762691 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.761326 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398360, 37.759867 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396461, 37.761411 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396332, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396439, 37.760088 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759986 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396117, 37.758120 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395452, 37.760037 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395130, 37.758383 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395195, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.755974 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398564, 37.754812 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398628, 37.754676 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398671, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397341, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396783, 37.754676 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396568, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395753, 37.757271 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395699, 37.756830 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393972, 37.757636 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395796, 37.755456 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755507 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753760 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395645, 37.753743 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391804, 37.757772 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391762, 37.757704 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388757, 37.760546 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388457, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390077, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390002, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388446, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388436, 37.758035 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388242, 37.758077 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758171 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388092, 37.758009 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393049, 37.757585 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.393006, 37.755159 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392792, 37.755015 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387899, 37.755694 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755058 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755287 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418412, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.752759 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752691 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753064 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408971, 37.752759 ] } } +, +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752827 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.752988 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406267, 37.753251 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406439, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753064 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394680, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386891, 37.755388 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386869, 37.755388 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755388 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387663, 37.753132 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788700 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419335, 37.775235 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775142 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775065 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419249, 37.775031 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.415000, 37.778678 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778542 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767331 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.767195 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784300 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784198 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805283 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432209, 37.805130 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.805122 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789989 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432231, 37.790108 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423197, 37.806376 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422081, 37.806351 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807029 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420686, 37.806724 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421888, 37.805588 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.806690 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420536, 37.806639 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420493, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420493, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420493, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420450, 37.805707 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420472, 37.805630 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805630 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415515, 37.808318 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417371, 37.807249 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417403, 37.806164 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.805486 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808080 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412511, 37.808029 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414120, 37.807411 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413455, 37.806520 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412339, 37.808097 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.807843 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807800 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.808351 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807606 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412039, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806495 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805741 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410591, 37.806877 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410376, 37.807038 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431480, 37.801485 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431415, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801366 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801350 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801689 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429506, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.801909 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427853, 37.801824 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426566, 37.802112 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.802028 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.800570 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800366 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797789 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428068, 37.800943 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427682, 37.800858 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427371, 37.798060 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798213 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425407, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.804961 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805164 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425107, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425354, 37.804842 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804817 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.424999, 37.804291 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424978, 37.804113 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423991, 37.805317 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423497, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805020 ] } } +, +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423798, 37.803376 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802435 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424871, 37.802333 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424849, 37.802350 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424892, 37.802197 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424635, 37.802579 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422103, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803655 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423379, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801629 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424420, 37.800332 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.798586 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.798467 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424077, 37.798442 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423905, 37.798654 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422296, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422446, 37.798823 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.798679 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422038, 37.797738 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.796958 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431201, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793363 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793584 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791922 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430621, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429119, 37.792177 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429184, 37.790362 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430857, 37.790193 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.790710 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.790676 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424613, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423326, 37.796076 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794890 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423133, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794915 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422897, 37.794788 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421480, 37.795110 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423004, 37.794177 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423369, 37.793965 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423133, 37.793830 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422961, 37.794042 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.793084 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422596, 37.792448 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794177 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421416, 37.793694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421287, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.793499 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426137, 37.790888 ] } } +, +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425772, 37.791040 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424463, 37.791905 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424034, 37.791151 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422918, 37.792109 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791380 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791159 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790438 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.790371 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421148, 37.791515 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422017, 37.790438 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420794, 37.790642 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420257, 37.804774 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804791 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802909 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419699, 37.802842 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801858 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.801909 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.804520 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415236, 37.805325 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415311, 37.805257 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415172, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415172, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415172, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415172, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804206 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801010 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.800993 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419335, 37.800205 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.798950 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419163, 37.800171 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419142, 37.799179 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799120 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798340 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798306 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418777, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418627, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 37.799451 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417511, 37.799323 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415859, 37.799535 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665, 37.799688 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415065, 37.804961 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.414957, 37.804384 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803791 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415000, 37.803757 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803282 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413648, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802689 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.801926 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412919, 37.801833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412661, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411878, 37.804961 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411653, 37.804808 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411438, 37.802765 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802943 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411610, 37.801188 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801231 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803130 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799739 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.799891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412726, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412575, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.799959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.799976 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412393, 37.800036 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.799018 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800502 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800383 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410644, 37.800197 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410043, 37.800383 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409936, 37.800409 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412189, 37.798247 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412018, 37.798196 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.797348 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411824, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.795330 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418391, 37.796348 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418391, 37.795381 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.795356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418197, 37.795551 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418197, 37.795398 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794601 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794644 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419635, 37.794406 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419592, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793626 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416545, 37.795754 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795585 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794856 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.794652 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.792872 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417897, 37.792753 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416288, 37.793830 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416223, 37.793821 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416309, 37.792957 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.792948 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419528, 37.791719 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420644, 37.790820 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420536, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419163, 37.790701 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420622, 37.789667 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420386, 37.789540 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789362 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417446, 37.791973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.791829 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417468, 37.791108 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791015 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417532, 37.790905 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415859, 37.792058 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415751, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415751, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415612, 37.791286 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665, 37.791091 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417296, 37.790167 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416910, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.788429 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414914, 37.795958 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415107, 37.795788 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.795042 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.795992 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796161 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413198, 37.795254 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.794042 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414614, 37.793177 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413005, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412747, 37.793363 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796212 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796204 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411664, 37.795602 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411717, 37.795449 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411503, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411481, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410172, 37.796407 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409990, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.795313 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794584 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794584 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411524, 37.794440 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.794533 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.411063, 37.794508 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411867, 37.792677 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793652 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793787 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414163, 37.792397 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414120, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414099, 37.791346 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412608, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414957, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.788319 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413605, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412318, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791871 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411953, 37.788853 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808233 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409164, 37.806097 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407898, 37.807351 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807258 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407211, 37.807182 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806944 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406203, 37.806792 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406031, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405430, 37.806614 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.803282 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408069, 37.803503 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803384 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409657, 37.802350 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409464, 37.801417 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406524, 37.803562 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802723 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406460, 37.802604 ] } } +, +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405795, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.405730, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801765 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800544 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409271, 37.800366 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.799281 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.799213 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799383 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408606, 37.799111 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800604 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800680 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408606, 37.797187 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408327, 37.796789 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407340, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405967, 37.800909 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800756 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404507, 37.800960 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406460, 37.797628 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.797831 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406739, 37.796984 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405741, 37.797323 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405666, 37.797051 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.797331 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.805190 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805147 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805020 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403252, 37.803927 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402941, 37.802341 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402018, 37.802977 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801417 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.802163 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401117, 37.803265 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401031, 37.802960 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801265 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800553 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.402405, 37.799671 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798137 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403585, 37.797391 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911, 37.798399 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402362, 37.797543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402018, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.800604 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.401096, 37.798315 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400731, 37.798543 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400774, 37.796856 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408584, 37.796738 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.795754 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409636, 37.794635 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408262, 37.796246 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793838 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409464, 37.793753 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409121, 37.793041 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409443, 37.792957 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.792880 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 37.793737 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793431 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407587, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405022, 37.796127 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404743, 37.794703 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405967, 37.794262 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406310, 37.793414 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.792507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404411, 37.794474 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404851, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404550, 37.793770 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.792880 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404271, 37.792719 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404250, 37.792592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409421, 37.792066 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409335, 37.791956 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409292, 37.792210 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409142, 37.792304 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792024 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409271, 37.791939 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.792126 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.792126 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791074 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408906, 37.791091 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407554, 37.792312 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407533, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.790142 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408713, 37.790159 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788395 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788192 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789955 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789599 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407029, 37.789480 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792380 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405988, 37.788548 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404379, 37.789820 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405409, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795907 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402061, 37.795729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.796060 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402769, 37.794686 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403220, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403070, 37.793838 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401493, 37.794474 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401546, 37.794033 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402619, 37.792931 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401117, 37.794822 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401310, 37.794279 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400280, 37.794177 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401267, 37.792973 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401224, 37.793177 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.793143 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.793126 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399808, 37.793296 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399873, 37.793143 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403971, 37.791007 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791939 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790922 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403456, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402383, 37.789014 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY" }, "geometry": { "type": "Point", "coordinates": [ -122.402190, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788616 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400860, 37.792024 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400087, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400945, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790294 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790337 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400506, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399765, 37.791312 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399679, 37.791312 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791108 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790939 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399143, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401310, 37.789353 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401224, 37.789251 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400409, 37.790159 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401310, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400581, 37.788938 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400645, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400066, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398585, 37.798967 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799552 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397791, 37.799086 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797806 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396160, 37.797840 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395667, 37.797085 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1" }, "geometry": { "type": "Point", "coordinates": [ -122.395570, 37.797212 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396997, 37.795415 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.794500 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397705, 37.793626 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.793592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398521, 37.792482 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397748, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793245 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397716, 37.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397534, 37.792609 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793525 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396353, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396139, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792982 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.397019, 37.792575 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396590, 37.793024 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396182, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.793491 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796687 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394454, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393864, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393564, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395688, 37.793728 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395624, 37.793652 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395602, 37.793635 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793592 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394916, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794262 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394615, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394615, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394615, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394615, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394615, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794466 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395667, 37.792533 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394551, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393736, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393736, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393725, 37.793762 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793703 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793898 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793465 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793363 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393328, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393253, 37.793355 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398413, 37.791897 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791922 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398156, 37.791642 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396697, 37.791753 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397491, 37.789921 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396954, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396868, 37.789260 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.396332, 37.789650 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789489 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788531 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395474, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394959, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.791965 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394787, 37.791829 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.791142 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790845 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393564, 37.790608 ] } } +, +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393392, 37.790761 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393328, 37.790608 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.790583 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393306, 37.790549 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393521, 37.790413 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395924, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.789879 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789192 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394465, 37.789930 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394294, 37.789803 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789820 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789718 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392319, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792711 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792685 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392534, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392405, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392555, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391225, 37.792414 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391096, 37.792338 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391064, 37.792160 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393081, 37.788853 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392813, 37.788675 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.791083 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390195, 37.790812 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790752 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389895, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.790481 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388779, 37.789455 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388629, 37.789599 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421545, 37.787632 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.788005 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420193, 37.787793 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418541, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414593, 37.787454 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787649 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408327, 37.787462 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408391, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787997 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403520, 37.787522 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403370, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403435, 37.787632 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.787708 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400237, 37.787751 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399851, 37.787869 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394186, 37.787420 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393607, 37.787954 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -2607,6 +27155,10 @@ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788700 ] } } , { "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396547, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396396, 37.793143 ] } } ] } ] } , @@ -2614,7 +27166,17 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } , +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387803, 37.714118 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713388 ] } } +, { "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387942, 37.712794 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386998, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.712132 ] } } ] } ] } , @@ -2624,41 +27186,251 @@ , { "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.750400 ] } } , +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388307, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387921, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742706 ] } } +, { "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742680 ] } } , +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742629 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387856, 37.742612 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388414, 37.739957 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388403, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388543, 37.727034 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387663, 37.753132 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386826, 37.752810 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387502, 37.750341 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749094 ] } } +, { "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749077 ] } } , +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387449, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387427, 37.748941 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387288, 37.746023 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745853 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386955, 37.746057 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386655, 37.745768 ] } } +, { "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387148, 37.741408 ] } } , +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741951 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385131, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383929, 37.742528 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383382, 37.743902 ] } } +, { "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743800 ] } } , +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383168, 37.743698 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384638, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384444, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740907 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384509, 37.740695 ] } } +, { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738998 ] } } , +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385882, 37.736597 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739999 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.382642, 37.739864 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } +, { "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382814, 37.739719 ] } } , +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384123, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384155, 37.737590 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381794, 37.738167 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738761 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381011, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380797, 37.738769 ] } } +, { "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737072 ] } } , +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379509, 37.736521 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379252, 37.737675 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379316, 37.737013 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386955, 37.735850 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387363, 37.732058 ] } } +, { "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731845 ] } } , +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387041, 37.731854 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386633, 37.732584 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386612, 37.732363 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386054, 37.732999 ] } } +, { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733195 ] } } , +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735961 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383543, 37.735732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383050, 37.734688 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733042 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384788, 37.732983 ] } } +, { "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733339 ] } } , +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383082, 37.733246 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386558, 37.729563 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730819 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385142, 37.730793 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.729529 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385625, 37.727348 ] } } +, { "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729733 ] } } , +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382685, 37.730148 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384595, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382728, 37.729419 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379466, 37.735019 ] } } +, { "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } , +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379531, 37.734018 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381848, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380024, 37.733466 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733296 ] } } +, { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732499 ] } } , +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379692, 37.732389 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735163 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379359, 37.734391 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E" }, "geometry": { "type": "Point", "coordinates": [ -122.379338, 37.734094 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731633 ] } } +, { "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" }, "geometry": { "type": "Point", "coordinates": [ -122.377170, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.381719, 37.731370 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381397, 37.730768 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730581 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381365, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728680 ] } } +, { "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727985 ] } } , +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379391, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377106, 37.730038 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379316, 37.728222 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386773, 37.726109 ] } } +, { "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386687, 37.726041 ] } } , +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375883, 37.731990 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375615, 37.732007 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374038, 37.730929 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375271, 37.729877 ] } } +, { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730250 ] } } , +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373759, 37.730938 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729868 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371870, 37.729877 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373126, 37.728782 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370197, 37.729139 ] } } +, { "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725337 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367933, 37.725329 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728757 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365186, 37.728587 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365444, 37.727917 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } ] } ] } , @@ -2666,13 +27438,59 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388135, 37.784359 ] } } , +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387974, 37.784630 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784597 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783596 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388457, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } +, { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388446, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388436, 37.758035 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } +, { "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388242, 37.758077 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758171 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388092, 37.758009 ] } } +, { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387899, 37.755694 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755058 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755287 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386891, 37.755388 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386869, 37.755388 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755388 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386783, 37.755388 ] } } +, { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386730, 37.755397 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383050, 37.755634 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387663, 37.753132 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386826, 37.752810 ] } } ] } ] } , @@ -2680,15 +27498,59 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } , +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374982, 37.823243 ] } } +, { "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374284, 37.823396 ] } } , +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371795, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371441, 37.816217 ] } } +, { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369531, 37.818506 ] } } , +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367965, 37.822379 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367793, 37.821938 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366420, 37.819938 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366334, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366130, 37.819921 ] } } +, { "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813064 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370905, 37.813242 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371012, 37.813132 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370851, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369864, 37.812039 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811801 ] } } +, { "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822235 ] } } , +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M" }, "geometry": { "type": "Point", "coordinates": [ -122.364199, 37.820751 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364832, 37.811996 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364553, 37.811861 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363781, 37.811691 ] } } +, +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364296, 37.811335 ] } } +, { "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363373, 37.810504 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363394, 37.810377 ] } } ] } ] } , @@ -2696,12 +27558,46 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377213, 37.828184 ] } } , +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377406, 37.826947 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829845 ] } } +, { "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373480, 37.829819 ] } } , +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828311 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376301, 37.825472 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824472 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824167 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374982, 37.823243 ] } } +, { "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374284, 37.823396 ] } } , +{ "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373909, 37.823523 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371452, 37.824599 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829268 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } +, { "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370068, 37.825192 ] } } , +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369918, 37.825235 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368931, 37.823624 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366956, 37.825319 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367965, 37.822379 ] } } +, { "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822235 ] } } ] } ] } @@ -2713,6 +27609,24 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } ] } ] } ] } diff --git a/tests/muni/out/-Z11_-z13_-Bf2000.json b/tests/muni/out/-Z11_-z13_-Bf2000.json index 84575e4aa..a688064ec 100644 --- a/tests/muni/out/-Z11_-z13_-Bf2000.json +++ b/tests/muni/out/-Z11_-z13_-Bf2000.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-Bf2000.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":2910},{},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":2908},{},{}]", "tippecanoe_decisions": "{\"basezoom\":12,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" @@ -20,11 +20,11 @@ , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532363, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527213, 37.832463 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524381, 37.830362 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } ] } @@ -34,265 +34,263 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } -, -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.720729 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } -, -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721204 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } , +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } +, { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } -, { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719982 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721068 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 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" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720084 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } +, { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720797 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721204 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714551 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716791 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } , { "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714075 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } , { "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.712989 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713532 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714313 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467389, 37.712514 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710341 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714211 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711427 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464900, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } , { "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711427 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718149 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714822 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.711495 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714143 ] } } , { "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713260 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713328 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455974, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , { "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710273 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706131 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713939 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714686 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.711733 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712853 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717131 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715705 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714754 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } , { "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } , @@ -300,155 +298,155 @@ , { "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713464 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710952 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } , { "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713532 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708643 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.712615 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713532 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.713294 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715026 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.710748 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.710477 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710578 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709865 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708372 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.707896 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } , { "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.706300 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709051 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712649 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.710205 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709899 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711427 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711359 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , { "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713193 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711902 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716248 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , { "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712276 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712242 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713532 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } , { "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710952 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710884 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } , @@ -456,7 +454,7 @@ , { "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713396 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } ] } @@ -466,21 +464,23 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831785 ] } } +, { "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833887 ] } } , { "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833616 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833141 ] } } , { "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483268, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829446 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } , @@ -488,311 +488,311 @@ , { "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.806563 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803579 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801002 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.802901 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797950 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801612 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801612 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453914, 37.800527 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799103 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } , { "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.803409 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803647 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801545 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798425 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797136 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799849 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.796695 ] } } , { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790693 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791168 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441812, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799273 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437434, 37.800731 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802630 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805274 ] } } , { "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799713 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.799578 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799713 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800934 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.801104 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796797 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797136 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.797407 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } , { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791575 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795848 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794898 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.792524 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792728 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788929 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512021, 37.779025 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510219, 37.774989 ] } } , { "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771699 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779975 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780043 ] } } , { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781807 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504210, 37.780993 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779840 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.779636 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.775464 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771766 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.779161 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779297 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500348, 37.771868 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767356 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509189, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.764167 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508759, 37.760164 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.764032 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760367 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760503 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760503 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756771 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756601 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754735 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760503 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760639 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.781637 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781739 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779670 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779568 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } , { "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783571 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779941 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781875 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781976 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775769 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.777872 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493052, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775905 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776040 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496314, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771970 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } , { "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785877 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785673 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } , { "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.781942 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.780247 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779907 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482667, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.780348 ] } } , { "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.784249 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782214 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782282 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780450 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780586 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484469, 37.778042 ] } } , @@ -800,187 +800,187 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774548 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484212, 37.774311 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483783, 37.772513 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480607, 37.772648 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764371 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764710 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488246, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760775 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758875 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759112 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757246 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.757008 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755414 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492623, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761182 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765117 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480350, 37.765185 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765524 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761317 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761385 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } , { "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757857 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753989 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482753, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.761453 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761792 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761725 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759960 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.756025 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756228 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754124 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752767 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750935 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752903 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752835 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753106 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751003 ] } } , { "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745438 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745573 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745404 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745438 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753106 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747406 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747542 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747609 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.743741 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741840 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.741807 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736003 ] } } , { "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741908 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.735358 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498975, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495112, 37.753276 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495027, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494855, 37.749578 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745845 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747745 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744216 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } , @@ -988,311 +988,311 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494254, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.738379 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736546 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744521 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740754 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748288 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481294, 37.748458 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752699 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479405, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748695 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.748526 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746456 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742791 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742723 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734849 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.733356 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.734136 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } , { "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.728061 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } , { "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483611, 37.722766 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.720729 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726907 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725956 ] } } , { "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725956 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475715, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784385 ] } } , { "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.784520 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471080, 37.784452 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.782383 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782689 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.784758 ] } } , { "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.784452 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780993 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.780789 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.776990 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773055 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777058 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.777194 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773191 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773462 ] } } , { "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784724 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.785165 ] } } , { "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.785572 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.783096 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781128 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780891 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780857 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } , { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785606 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784113 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783944 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.781366 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781061 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781535 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464213, 37.779161 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776990 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777126 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.775430 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461724, 37.777397 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773666 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777058 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774277 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774616 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765456 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765660 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765796 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } , { "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765999 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763896 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761928 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761792 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759146 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.756364 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756296 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761996 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761962 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758196 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467904, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.760232 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.756500 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764099 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462840, 37.762403 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.762301 ] } } , { "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762641 ] } } , { "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.764371 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.763319 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758434 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463527, 37.754905 ] } } , { "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.755414 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786487 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } , @@ -1300,15 +1300,15 @@ , { "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448249, 37.784995 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.781841 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.787335 ] } } , { "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787166 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.785232 ] } } , @@ -1316,171 +1316,171 @@ , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782689 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782960 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777737 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.778076 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778347 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } , { "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774887 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778754 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449450, 37.773429 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.778754 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775905 ] } } , { "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775701 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776922 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.776821 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774005 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773937 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771970 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773937 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774175 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774412 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440696, 37.787946 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785131 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.786284 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.785266 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783842 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779500 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780484 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.785945 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788047 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781061 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783028 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781535 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781739 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.780213 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777804 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.777635 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777872 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.776753 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.770749 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.774718 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778144 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.778279 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.775159 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778551 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.775633 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771766 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.769324 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769324 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768238 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766406 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769460 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768510 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.764439 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765728 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764778 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764778 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769935 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.767085 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767153 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770206 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767492 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766135 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765389 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , @@ -1488,137 +1488,137 @@ , { "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764507 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } , { "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760910 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760842 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758671 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.758671 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761182 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761317 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.761657 ] } } , { "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756432 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.756398 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.753989 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , { "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766474 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768035 ] } } , { "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767288 ] } } , { "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769392 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.769120 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762607 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762471 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762539 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.763896 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763964 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760639 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.754057 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.754023 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755821 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755346 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.760842 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760842 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.759146 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757789 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.756092 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754396 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.750799 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748661 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748831 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746727 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745098 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473483, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.745030 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749102 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , { "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.750867 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749306 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743300 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741501 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743130 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } , @@ -1626,357 +1626,357 @@ , { "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741433 ] } } , { "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.741162 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.741026 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.740924 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740958 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740958 ] } } , { "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740822 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739668 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.739533 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456918, 37.749849 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751478 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.748356 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747881 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747847 ] } } , { "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.747813 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745302 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746388 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745777 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739940 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740211 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740211 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.740076 ] } } , { "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740890 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455459, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743232 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741976 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736716 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734713 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732779 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.731795 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471595, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734578 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.734306 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734917 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.731184 ] } } , { "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.731048 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731218 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734713 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468076, 37.734781 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.733152 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469106, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728400 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727246 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727009 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , { "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } , { "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460780, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734374 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729962 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731116 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731252 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455630, 37.731455 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724938 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724904 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.720050 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724395 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724259 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723445 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720050 ] } } , { "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745302 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , { "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.751749 ] } } , { "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752089 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.751681 ] } } , { "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749102 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750833 ] } } , { "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748017 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746659 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746354 ] } } , { "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747134 ] } } , { "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746897 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.746659 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } , { "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.744487 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742587 ] } } , { "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , { "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741094 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } , { "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } , { "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.746931 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751206 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.751071 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749645 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.752089 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751342 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.751274 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751342 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749611 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.748695 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745641 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744691 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } , { "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743639 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.738650 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738311 ] } } , { "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740042 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.738243 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.736241 ] } } , { "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736071 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451425, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } , { "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729962 ] } } , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731387 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735528 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.726024 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725549 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723852 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.723479 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723037 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.723105 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722868 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } , @@ -1984,311 +1984,311 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 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" }, "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": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719846 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } , { "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720593 ] } } , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720050 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.734985 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731659 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.728977 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727722 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.731523 ] } } , { "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731387 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.733831 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.733933 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733492 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.732406 ] } } , { "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.726839 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.725889 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725685 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723241 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723445 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723580 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.718658 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724667 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724531 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723920 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433486, 37.726364 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.721476 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722358 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806359 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.806732 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.805580 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805613 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805613 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808326 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805478 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806563 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807784 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } , { "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806495 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801341 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801816 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.801918 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800866 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798221 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.805105 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , { "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804122 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805003 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802358 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802562 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.803477 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800459 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.798594 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424130, 37.798459 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797747 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793135 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.790693 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796390 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793813 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422414, 37.793067 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792456 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793677 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } , { "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.792117 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.790421 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.791168 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.791914 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790421 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.788387 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804800 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } , { "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804189 ] } } , { "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798289 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799306 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.803782 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801816 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.804969 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , { "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.799001 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800392 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.800392 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.800188 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.795135 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794627 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793609 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.793813 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792931 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791710 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.790693 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789675 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789540 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.791812 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791100 ] } } , { "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791100 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789201 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.795780 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795983 ] } } , @@ -2296,185 +2296,183 @@ , { "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796187 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795441 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796390 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794423 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792660 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } , { "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791710 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807241 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806800 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806597 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803511 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802358 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } , { "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802969 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } , { "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801748 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800527 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.800663 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801070 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801070 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.797340 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805003 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } , { "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802969 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.802155 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801273 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.799679 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.800595 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.796729 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796255 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.793745 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.793236 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796051 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.794457 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792728 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792592 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792049 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } , { "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792117 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791100 ] } } , { "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789472 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , { "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795712 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795915 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.794457 ] } } , { "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792931 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794288 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794186 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } , { "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.793270 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788183 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.789743 ] } } , { "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790286 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790354 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798967 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799544 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797068 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793609 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.792524 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } , @@ -2482,261 +2480,261 @@ , { "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } -, { "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793474 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794830 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794423 ] } } , { "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793881 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793474 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793372 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792999 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791642 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789268 ] } } , { "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789472 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788522 ] } } , { "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791812 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790828 ] } } , { "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790591 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790557 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789947 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790421 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.789201 ] } } , { "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.788217 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } , { "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792321 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788658 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.790489 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.789675 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789608 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828192 ] } } , { "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 37.829819 ] } } , { "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823243 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374263, 37.823379 ] } } , { "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373919, 37.823514 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829277 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825175 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825311 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371774, 37.816022 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818497 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819921 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366109, 37.819921 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370830, 37.813140 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813140 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811784 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822226 ] } } , { "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364306, 37.811344 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810360 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.786487 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.785673 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.785606 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781942 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778618 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776855 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772038 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776515 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772750 ] } } , { "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.770952 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773191 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } , { "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786894 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.786793 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.785029 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.787233 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779975 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780179 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783231 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780789 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.786555 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785809 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786962 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787200 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786080 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784113 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783672 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.781061 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780654 ] } } , { "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783367 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778686 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } , @@ -2746,39 +2744,39 @@ , { "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777601 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777397 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.773327 ] } } , { "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.772988 ] } } , -{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774209 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.773327 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.779365 ] } } , { "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778483 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779161 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772106 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.772004 ] } } , @@ -2786,183 +2784,185 @@ , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } , { "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.767662 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767763 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.767356 ] } } , { "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767763 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.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" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } , { "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764710 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , { "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768374 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766271 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764642 ] } } , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761453 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , { "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.757382 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.757246 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , { "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761385 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761521 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758739 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.755550 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755041 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766678 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768442 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.766203 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764981 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765117 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765253 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765049 ] } } , { "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763828 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768103 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.768442 ] } } , { "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765728 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764032 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763149 ] } } , { "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.760639 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.758942 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758875 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.755176 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.755821 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.759010 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761657 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784249 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783910 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784045 ] } } , { "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784520 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784792 ] } } +, +{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } , { "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783978 ] } } , { "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786623 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , { "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785538 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782858 ] } } , { "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783503 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781196 ] } } , { "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782756 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } , { "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787505 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786521 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786352 ] } } , @@ -2970,311 +2970,311 @@ , { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787878 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.786080 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.777940 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.780654 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.776651 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778618 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } , { "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.772547 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772309 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } , { "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776142 ] } } , { "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.771699 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786759 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786555 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784520 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.784181 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782417 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782621 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783299 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779975 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779568 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781807 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.779704 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.779602 ] } } , { "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776312 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775430 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.777262 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777431 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.776040 ] } } , { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773123 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775464 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771156 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764235 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.763285 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.762200 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.768747 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } , { "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764778 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764914 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764778 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764914 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763489 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761860 ] } } , { "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757517 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.757382 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755889 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.755414 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.761996 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759689 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756160 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754430 ] } } , { "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754328 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } , { "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755753 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } , { "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762607 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762810 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766746 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769697 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769561 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } , { "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.762878 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764371 ] } } , { "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763353 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762674 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760096 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395978, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.759994 ] } } , { "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.755957 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391772, 37.757687 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.757857 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.757585 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755142 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } , { "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.751647 ] } } , { "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746524 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751885 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746761 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , { "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743605 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742791 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742621 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742112 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736343 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737089 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742180 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742316 ] } } , { "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.742316 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742417 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } , @@ -3282,187 +3282,187 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739397 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739736 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736207 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740211 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } , { "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752190 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750731 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749510 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752496 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752292 ] } } , { "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.748661 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748084 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.746252 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "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.748288 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752428 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748492 ] } } , { "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.748084 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745302 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739295 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744352 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741433 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741840 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738922 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738243 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740076 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735460 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733492 ] } } , { "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } , { "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.731387 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730437 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728604 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730844 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728604 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735053 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.728706 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430568, 37.724734 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723105 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720865 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426448, 37.722901 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , { "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724734 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725074 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725210 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725413 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735800 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735121 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735053 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732270 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732813 ] } } , { "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728808 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734713 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734849 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.734951 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734917 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.726398 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , @@ -3470,19 +3470,19 @@ , { "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723241 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.722698 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752835 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752835 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.752971 ] } } , { "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , @@ -3490,87 +3490,87 @@ , { "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } , { "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747134 ] } } , { "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.739668 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738379 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739872 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738684 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742519 ] } } , { "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743944 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741501 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739125 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.739533 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.736343 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752292 ] } } , { "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } , { "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.751274 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749035 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749849 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.747338 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.747270 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737225 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736852 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736614 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740687 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742451 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740890 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.739736 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737564 ] } } , { "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736343 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738922 ] } } , @@ -3578,31 +3578,31 @@ , { "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737225 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737632 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.734238 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.732338 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.733220 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732949 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404819, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } , { "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727450 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.731829 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , @@ -3610,276 +3610,278 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.727314 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727722 ] } } , { "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730369 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.729079 ] } } , { "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726126 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.723377 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.723750 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726907 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724191 ] } } , { "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723648 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.723546 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720661 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721612 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733186 ] } } , { "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727925 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735800 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.735664 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734340 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734001 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733831 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391343, 37.732406 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732202 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735392 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732881 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729215 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729283 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390399, 37.728061 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } , { "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.726941 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.723784 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } , { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721170 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722630 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , { "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.721408 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753140 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } , { "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749102 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745777 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , { "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742519 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.743911 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383146, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740890 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.740008 ] } } , { "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737598 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.737055 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732066 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732372 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } , { "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730776 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734374 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377181, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730573 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727993 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730912 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730233 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372117, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729860 ] } } , { "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729147 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365165, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360959, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } +, { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716791 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718149 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717131 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } -, -{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716248 ] } } -, { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } @@ -3896,17 +3898,17 @@ , { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.788692 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778551 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784283 ] } } ] } ] } , @@ -3921,6 +3923,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } ] } ] } , diff --git a/tests/muni/out/-Z11_-z13_-M10000.json b/tests/muni/out/-Z11_-z13_-M10000.json index 6197d3241..7bab6dfcf 100644 --- a/tests/muni/out/-Z11_-z13_-M10000.json +++ b/tests/muni/out/-Z11_-z13_-M10000.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M10000.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"detail_reduced\":4,\"tile_size_desired\":10887},{\"dropped_by_rate\":2974,\"detail_reduced\":3,\"tile_size_desired\":10721},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4078,\"detail_reduced\":5,\"tile_size_desired\":11064},{\"dropped_by_rate\":2980,\"detail_reduced\":3,\"tile_size_desired\":10687},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,7 +17,7 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } ] } @@ -27,1549 +27,1551 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } -, { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } , +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +, { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721068 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714551 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713159 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713260 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710273 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714686 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712853 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714754 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715026 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.710477 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713193 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712208 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 128 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836361 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.791337 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.764201 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.765287 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.754430 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726194 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.782655 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.764201 ] } } , { "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.764201 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.769629 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.765287 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.758773 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.759859 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.744657 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743571 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.750087 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.733797 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.724022 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.721849 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.808699 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.802189 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.804359 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.804359 ] } } , { "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.795678 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.791337 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.795678 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.789167 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.791337 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789709 ] } } -, -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.790252 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823345 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823887 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.362976, 37.810869 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.786996 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.784825 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } -, -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778313 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , { "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.757687 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.737055 ] } } , { "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738141 ] } } , { "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735969 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.729453 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727280 ] } } , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.742485 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "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": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "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": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.724022 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.755516 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.743571 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374649, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } ] } ] } , @@ -1580,6 +1582,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } ] } ] } , @@ -1589,11 +1593,11 @@ , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527235, 37.832582 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527192, 37.832480 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527664, 37.829057 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830480 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830362 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831328 ] } } ] } @@ -1603,169 +1607,167 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718709 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719897 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719643 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } -, { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719049 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469943, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } -, { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716231 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716061 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.714873 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.714567 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711206 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.715009 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716706 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716774 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478311, 37.715841 ] } } , { "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715009 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.716197 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713753 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714058 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } , { "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.712989 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713549 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710901 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469985, 37.714432 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.714313 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.714330 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467368, 37.712514 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710358 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714194 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467110, 37.711648 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712327 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711410 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708728 ] } } , { "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714228 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711274 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713176 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713142 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711444 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.716553 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.714839 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458870, 37.711478 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.714160 ] } } , { "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713277 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.713328 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713159 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , { "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710290 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706114 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460673, 37.706148 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.716248 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716061 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713939 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452133, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.714160 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.711716 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708660 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.712853 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709611 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716706 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.716452 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716469 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717148 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716401 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.716333 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439301, 37.715705 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.714771 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.711665 ] } } , { "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438228, 37.711156 ] } } , @@ -1773,25 +1775,25 @@ , { "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.716095 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713481 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710935 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710154 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713311 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712938 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.712836 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } , { "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434580, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708864 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.708966 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } ] } @@ -1801,81 +1803,81 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 512 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , { "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.788760 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.780077 ] } } , { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779534 ] } } , { "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503910, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507687, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771529 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771936 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762437 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760401 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756601 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } , @@ -1887,83 +1889,83 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781705 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781705 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 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" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } , { "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488117, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777906 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.777770 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771936 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776142 ] } } , { "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.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" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , { "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.779941 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } , { "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } , @@ -1971,27 +1973,27 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774378 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.772750 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.773021 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.764337 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.764880 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , @@ -1999,159 +2001,159 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759180 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.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 & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477818, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , { "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751037 ] } } , { "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747372 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743707 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "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": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735969 ] } } , { "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741942 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500820, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490864, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748186 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742214 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742349 ] } } , @@ -2159,243 +2161,243 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738549 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.752122 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748593 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.742757 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 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" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.741264 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729860 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734476 ] } } , { "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } , { "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , { "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719541 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } , { "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.782383 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780620 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784690 ] } } , { "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773293 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.773293 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , { "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785232 ] } } , { "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.780891 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783876 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786182 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.784011 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781434 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777092 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461681, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.777092 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.762030 ] } } , { "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.762030 ] } } , @@ -2403,67 +2405,67 @@ , { "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.761894 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.754837 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } , { "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762708 ] } } , { "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764337 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463055, 37.758637 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } , { "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } , @@ -2471,15 +2473,15 @@ , { "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787403 ] } } , { "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787132 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } , @@ -2487,171 +2489,171 @@ , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778177 ] } } , { "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } , { "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775735 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774107 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783876 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.784690 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.777499 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.776821 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774650 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778313 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771258 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769493 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.768544 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.764744 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.769222 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.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 & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767187 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , @@ -2659,7 +2661,7 @@ , { "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } , @@ -2667,129 +2669,129 @@ , { "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760808 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } , { "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.759723 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756466 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , { "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , { "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.765423 ] } } , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } , { "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760808 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757823 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.756058 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748865 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.745064 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , { "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743300 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741535 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } , @@ -2797,23 +2799,23 @@ , { "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.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 & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , { "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740992 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738006 ] } } , @@ -2821,133 +2823,133 @@ , { "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "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": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.746286 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740449 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.739906 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740042 ] } } , { "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743300 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732847 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731218 ] } } , { "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734747 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720899 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , { "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.719541 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732304 ] } } , { "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734340 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733661 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , @@ -2955,199 +2957,199 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724429 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , { "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , { "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751715 ] } } , { "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } , { "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } , { "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746422 ] } } , { "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743435 ] } } , { "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } , { "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , { "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.737463 ] } } , { "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.736512 ] } } , { "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.749001 ] } } , { "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751308 ] } } , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748729 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745472 ] } } , { "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "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.743571 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741535 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } , { "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , { "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736105 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.734476 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } , @@ -3155,153 +3157,159 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , { "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "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": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733933 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732439 ] } } , { "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.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 & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784418 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.769493 ] } } -, { "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.766237 ] } } , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.728910 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 512 }, "features": [ @@ -3317,21 +3325,23 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831802 ] } } +, { "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832955 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502129, 37.836446 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833870 ] } } , { "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833599 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483375, 37.833141 ] } } , { "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829429 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793558 ] } } , @@ -3339,185 +3349,181 @@ , { "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806563 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806071 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806919 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.803596 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.801782 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801019 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462218, 37.802901 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797933 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803799 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456768, 37.801629 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456725, 37.801612 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803766 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.801731 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.797730 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800748 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453935, 37.800527 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456295, 37.798391 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455094, 37.798238 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800341 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799120 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } , { "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445223, 37.803630 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445180, 37.803409 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803766 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.803647 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802477 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.801545 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801901 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798408 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797153 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800612 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443120, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 37.799832 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.798883 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796695 ] } } , { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.795898 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790710 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447369, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444236, 37.791185 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441833, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439344, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799290 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437456, 37.800714 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.804427 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.802630 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436512, 37.802392 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802748 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , { "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.805122 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800883 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.799713 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436039, 37.799595 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799696 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800951 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.801104 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796780 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.797119 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } , { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791558 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.791727 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.789964 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791931 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788505 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436855, 37.795848 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794915 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794135 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.792524 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792711 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792202 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792338 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.789828 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.790099 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } , { "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787183 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } -, { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } , +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } +, { "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } +, { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801341 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } ] } ] } , @@ -3525,163 +3531,165 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719711 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719829 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718845 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719388 ] } } +, { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719388 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719931 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712938 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712836 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.711071 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711105 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422221, 37.713549 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709814 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423208, 37.709305 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.708660 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.712598 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710018 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711716 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711852 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.713294 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.712021 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715026 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713277 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711054 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712768 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710731 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.710493 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411492, 37.710578 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709865 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419946, 37.708372 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.707896 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.707132 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } , { "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.706283 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.709051 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708253 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.717148 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.716655 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.717046 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712632 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.710205 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709899 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.711444 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711342 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , { "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713210 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711885 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.710561 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.716604 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716469 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716265 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , { "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.714669 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399347, 37.714805 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714228 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.712361 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712174 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712293 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712225 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712225 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.712242 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.711139 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713549 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.712904 ] } } , { "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.712021 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398961, 37.711614 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399175, 37.711580 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.709339 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709848 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708932 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708932 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.709526 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711206 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.710969 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.710884 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , @@ -3689,7 +3697,7 @@ , { "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713379 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } ] } @@ -3699,261 +3707,251 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.785996 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783011 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781518 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778534 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.764490 ] } } -, -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.763947 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } -, -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } -, { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } -, -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } -, -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788200 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } +, { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400634, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788539 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789201 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427800, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.785894 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785673 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.785606 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.784808 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.782400 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423851, 37.779687 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.781942 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780942 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776855 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776024 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777380 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.776753 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777550 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776532 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423294, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773819 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772767 ] } } , { "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773174 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773072 ] } } , { "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.772869 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419646, 37.785012 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.786352 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782977 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783180 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780196 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779992 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.780162 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783350 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.783231 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781688 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.782638 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.780569 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.780603 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780772 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.786555 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.785792 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786097 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.785843 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414067, 37.783672 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.781078 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.780637 ] } } , { "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782095 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411921, 37.782061 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783384 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775515 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775532 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } , { "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778737 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.777584 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777397 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.774972 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.773310 ] } } , { "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.772988 ] } } , -{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.772801 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774565 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.774209 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.773327 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } , { "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.778500 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410762, 37.779178 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776125 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772123 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.771987 ] } } , @@ -3961,183 +3959,185 @@ , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } , { "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767662 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767814 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767763 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767339 ] } } , { "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427242, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428873, 37.767780 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.764456 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } , { "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764727 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , { "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.770562 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768391 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766254 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.764625 ] } } , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428401, 37.761470 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761368 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759774 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , { "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428057, 37.757382 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426856, 37.757229 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , { "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754786 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425911, 37.761385 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423637, 37.761521 ] } } , { "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } -, { "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421491, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.758739 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755550 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753395 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768204 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.768459 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.766203 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764998 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765134 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.762624 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.765253 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.765049 ] } } , { "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765372 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.763828 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762115 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769103 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.768103 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410676, 37.768442 ] } } , { "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765304 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765711 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764015 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763133 ] } } , { "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760656 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416985, 37.758925 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416770, 37.758858 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756584 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.755159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.755821 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416685, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758993 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.761674 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409904, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.755940 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759333 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786335 ] } } , { "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785351 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.784266 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783910 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784062 ] } } , { "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.784520 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784639 ] } } +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784775 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784775 ] } } , { "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.783994 ] } } , { "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784673 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786640 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404583, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784842 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , { "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785521 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784334 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782841 ] } } , { "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.783503 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.780738 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781179 ] } } , { "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782773 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.782638 ] } } , { "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.785962 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786504 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786335 ] } } , @@ -4145,311 +4145,311 @@ , { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.786080 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784842 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.783994 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.783978 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.780433 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400849, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409217, 37.777923 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.780671 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407844, 37.776634 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.778618 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775718 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777143 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } , { "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.772530 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407072, 37.772326 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.778907 ] } } , { "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778941 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.776159 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776159 ] } } , { "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.771699 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398102, 37.786555 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395313, 37.784520 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.784181 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395012, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.782434 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782638 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.783282 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398059, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394583, 37.779975 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779551 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387974, 37.784622 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.781858 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781824 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783587 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389863, 37.779721 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.779619 ] } } , { "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396643, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.776532 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.776312 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775430 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397158, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.777279 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777414 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777177 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776363 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776057 ] } } , { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397802, 37.773123 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779280 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778093 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.775481 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772835 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.771156 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768255 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.764218 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764557 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.763302 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.762200 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.770155 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769748 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.768730 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767305 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766152 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766322 ] } } , { "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764863 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.764761 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.764897 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.764778 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766220 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764931 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401364, 37.763506 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761843 ] } } , { "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404196, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757500 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.757399 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754141 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755872 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406600, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.755414 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.754413 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.761979 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.759672 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758383 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.760927 ] } } , { "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.758128 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758009 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.756160 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754447 ] } } , { "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.754328 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } , { "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.757331 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757263 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755770 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.754854 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754888 ] } } , { "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766661 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762420 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762624 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.762827 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391021, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766763 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769714 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769544 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389348, 37.767797 ] } } , { "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.762878 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.764354 ] } } , { "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.764422 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764252 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389648, 37.762895 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.763353 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762963 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762691 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761402 ] } } , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.760079 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759977 ] } } , { "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758383 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.755974 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753548 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.757263 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757636 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755499 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391794, 37.757772 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391751, 37.757704 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760452 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.389991, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390077, 37.757874 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.757585 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.755159 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387888, 37.755685 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } , { "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.751647 ] } } , { "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746778 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752038 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751902 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , { "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743588 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.742808 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742638 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742095 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742095 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742163 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.737717 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.736326 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738905 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737106 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425740, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.742163 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.742299 ] } } , { "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.742434 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.741009 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.742299 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740839 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741009 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.742434 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742434 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425482, 37.739618 ] } } , @@ -4457,187 +4457,187 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.739380 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739719 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.736207 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740195 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.752173 ] } } , { "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752173 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750748 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.750273 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749510 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752479 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752309 ] } } , { "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420418, 37.748661 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.746931 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.746235 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.745081 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.748305 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414196, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752445 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.749052 ] } } , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748475 ] } } , { "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413766, 37.748084 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745319 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748339 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739923 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418444, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739312 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741450 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.741823 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.738922 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.738871 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.738260 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737174 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740059 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411406, 37.739923 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733475 ] } } , { "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733339 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733712 ] } } , { "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429645, 37.731387 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730454 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426383, 37.730963 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730827 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.728604 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735070 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426083, 37.728553 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728706 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.728893 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723105 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720135 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 37.722901 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.426984, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , { "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725074 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725193 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725430 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725600 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426040, 37.720390 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735783 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420118, 37.735138 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.735053 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.732287 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416728, 37.734968 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } , { "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733271 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.729130 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.728825 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734730 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.734866 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.734663 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.734934 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.734900 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735002 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726398 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718709 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726584 ] } } , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , @@ -4645,19 +4645,19 @@ , { "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.723241 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.722698 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753056 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408960, 37.752750 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752818 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.752988 ] } } , { "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , @@ -4665,340 +4665,338 @@ , { "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744708 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752106 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } , { "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750714 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750748 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747117 ] } } , { "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.743317 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.742842 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405183, 37.742876 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.739685 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.739668 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738362 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.739855 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738701 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403338, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } , { "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399004, 37.743928 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.741484 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.739125 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400548, 37.739533 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398875, 37.736360 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398403, 37.752377 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752275 ] } } , { "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } , { "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.751427 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749018 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.749866 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396257, 37.747338 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.747253 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745964 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387846, 37.752547 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398231, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737208 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.736088 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736835 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736631 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744233 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.740687 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742706 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742672 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.742434 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740890 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.739753 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737581 ] } } , { "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736326 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736292 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391622, 37.736258 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738905 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389133, 37.738905 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.739906 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388403, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737208 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.737921 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737632 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.734238 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732338 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732966 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404797, 37.732999 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730250 ] } } , { "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.727993 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.727433 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.734764 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399390, 37.731829 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.727976 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403553, 37.727331 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727637 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727739 ] } } , { "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.730369 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.729096 ] } } , { "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.726143 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.726669 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.723377 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.723733 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.723869 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.726907 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.720101 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.402995, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724073 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402093, 37.724174 ] } } , { "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723869 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.723648 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.723546 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721085 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720678 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721595 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733203 ] } } , { "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727908 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392652, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392180, 37.735800 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392352, 37.735681 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734357 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390807, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734018 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.733848 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732270 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391343, 37.732406 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391493, 37.732253 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732202 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390335, 37.735409 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390163, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390034, 37.731642 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732898 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729368 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.729215 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392609, 37.729283 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729232 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.729198 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728078 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727908 ] } } , { "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726924 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725481 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725295 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.723801 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.724157 ] } } , { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721119 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720780 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721187 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719761 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722409 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395399, 37.722630 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.722443 ] } } , { "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.721408 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.727026 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.727060 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720339 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386730, 37.755397 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753123 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386816, 37.752801 ] } } , { "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749086 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386644, 37.745760 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , { "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742536 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383382, 37.743894 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383168, 37.743690 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743792 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740907 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385871, 37.736597 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739991 ] } } , { "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384112, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384155, 37.737581 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738769 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737072 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.735850 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732049 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387030, 37.731845 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731845 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386601, 37.732355 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383039, 37.734680 ] } } , { "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383082, 37.733237 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733339 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385142, 37.730793 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385614, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.734018 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381837, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732490 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379348, 37.734391 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377160, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730573 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727976 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.728214 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375615, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374027, 37.730929 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730250 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729877 ] } } , { "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729130 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725329 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365186, 37.728587 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } -, { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } @@ -5009,17 +5007,15 @@ { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788709 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775142 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778669 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778534 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784300 ] } } ] } ] } , @@ -5027,229 +5023,225 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792711 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790099 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806342 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420676, 37.806715 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.805580 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805630 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805698 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805630 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808309 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.805478 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808072 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.806563 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807800 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.808343 ] } } , { "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805732 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806495 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801341 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427843, 37.801816 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.800849 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798204 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.805105 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805156 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425354, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425096, 37.805037 ] } } , { "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.804105 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805020 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424839, 37.802341 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424881, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424624, 37.802579 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423379, 37.803477 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.798577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.798459 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423894, 37.798645 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797730 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792168 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.790710 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796068 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794779 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.793830 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.793084 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792439 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.793694 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794169 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.793491 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.793185 ] } } , { "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.791151 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.792100 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790438 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791151 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.791931 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.790438 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804783 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.805325 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } , { "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804206 ] } } , { "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800171 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.799273 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419131, 37.799171 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798340 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798306 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417500, 37.799323 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799527 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.804952 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803782 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.801833 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411878, 37.804952 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801222 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803121 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799730 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.800968 ] } } , { "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800103 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.799018 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800375 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.800375 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410634, 37.800188 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.795356 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795390 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794644 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794406 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793626 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794847 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417886, 37.792745 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.793813 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.792948 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.791710 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.790693 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789658 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789353 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420375, 37.789540 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.791829 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417457, 37.791100 ] } } , { "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.791134 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.791083 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417285, 37.790167 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.795780 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.795983 ] } } , @@ -5257,185 +5249,183 @@ , { "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796204 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796204 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411664, 37.795593 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411706, 37.795441 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409990, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.796407 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794576 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794440 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792677 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } , { "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412307, 37.791710 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791863 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788844 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807258 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806783 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806614 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.803494 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.802341 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } , { "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.802664 ] } } , { "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801765 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800544 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800680 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.796780 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797594 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800748 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406728, 37.796984 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405655, 37.797051 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.797323 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.805190 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805020 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } , { "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.802969 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.802155 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.803257 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801256 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.799663 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798137 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797391 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.800595 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400720, 37.798543 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.796729 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796238 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793830 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.792948 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 37.793728 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407587, 37.793236 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.792507 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404411, 37.794474 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404540, 37.793762 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404239, 37.792592 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792066 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409132, 37.792304 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } , { "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.792117 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791083 ] } } , { "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407029, 37.789472 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792372 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788539 ] } } , { "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.795729 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795898 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401493, 37.794474 ] } } , { "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.792931 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794271 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794169 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } , { "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793287 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.793270 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790913 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788607 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789743 ] } } , { "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790286 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790337 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400506, 37.790354 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400634, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.798967 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799544 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797831 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.797085 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396986, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793626 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.793592 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792473 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397716, 37.792541 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793525 ] } } , @@ -5443,150 +5433,146 @@ , { "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793016 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793185 ] } } -, { "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396171, 37.793474 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796678 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.794830 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793728 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793626 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.794423 ] } } , { "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793694 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793898 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793457 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793355 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.792999 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791642 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789251 ] } } , { "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789489 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788522 ] } } , { "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791829 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790845 ] } } , { "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.790761 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.790574 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393296, 37.790540 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.789947 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.790405 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789184 ] } } , { "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789811 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392309, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792677 ] } } , { "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392395, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792405 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792338 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791083 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790744 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790812 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.790472 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789455 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.789591 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377203, 37.828175 ] } } , { "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829836 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373469, 37.829819 ] } } , { "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374971, 37.823243 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374284, 37.823396 ] } } , { "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373898, 37.823514 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829260 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369907, 37.825226 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825192 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366946, 37.825311 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371795, 37.816022 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369521, 37.818497 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821938 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819938 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366130, 37.819921 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813056 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370851, 37.813140 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813124 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811801 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } , { "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363770, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364285, 37.811327 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363384, 37.810377 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } @@ -5594,6 +5580,10 @@ , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.793152 ] } } ] } ] } , @@ -5608,6 +5598,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } ] } ] } , diff --git a/tests/muni/out/-Z11_-z13_-M10000_-aG.json b/tests/muni/out/-Z11_-z13_-M10000_-aG.json index 83d67dd02..570b8280f 100644 --- a/tests/muni/out/-Z11_-z13_-M10000_-aG.json +++ b/tests/muni/out/-Z11_-z13_-M10000_-aG.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M10000_-aG.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"dropped_by_gamma\":17,\"detail_reduced\":3,\"tile_size_desired\":10887},{\"dropped_by_rate\":2974,\"dropped_by_gamma\":85,\"detail_reduced\":3,\"tile_size_desired\":10721},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4078,\"dropped_by_gamma\":22,\"detail_reduced\":4,\"tile_size_desired\":11064},{\"dropped_by_rate\":2980,\"dropped_by_gamma\":145,\"detail_reduced\":2,\"tile_size_desired\":10687},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,7 +17,7 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } ] } @@ -27,1519 +27,1513 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } -, { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } , +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +, { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721068 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } -, -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714551 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713159 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713260 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710273 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714686 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712853 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714754 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715026 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.710477 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713193 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712208 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 512 }, "features": [ -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 256 }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.803816 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.771800 ] } } , { "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781569 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.782112 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757144 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.753887 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.735969 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.725923 ] } } -, -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726194 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } -, -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.763658 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759316 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769086 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.759859 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.752801 ] } } , -{ "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/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.734340 ] } } +, { "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } -, -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.749544 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726194 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } -, -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.808156 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } -, -{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373276, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823345 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.810326 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.768544 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.756058 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.776142 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } -, -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.748458 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.738141 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } -, -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.728910 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731625 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374649, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716961 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718047 ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 512 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 256 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } ] } ] } , @@ -1555,11 +1549,11 @@ , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527235, 37.832582 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527192, 37.832480 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527664, 37.829057 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830480 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830362 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831328 ] } } ] } @@ -1569,165 +1563,159 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718709 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719897 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719643 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } -, { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719049 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469943, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } -, { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716231 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716061 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.714873 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.714567 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711206 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.715009 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716706 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716774 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478311, 37.715841 ] } } , { "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715009 ] } } , +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } +, { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.716197 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713753 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714058 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } , { "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.712989 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713549 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710901 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469985, 37.714432 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.714313 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.714330 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467368, 37.712514 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710358 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714194 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467110, 37.711648 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712327 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711410 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708728 ] } } , { "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714228 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711274 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713176 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713142 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711444 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.715976 ] } } -, { "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.714839 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458870, 37.711478 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.714160 ] } } , { "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713277 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.713328 ] } } -, { "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , { "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710290 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706114 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460673, 37.706148 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713939 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452133, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.714160 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.711716 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708660 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.712853 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709611 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716706 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716469 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717148 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716401 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.716333 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439301, 37.715705 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.714771 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.711665 ] } } , { "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438228, 37.711156 ] } } , @@ -1735,1470 +1723,1438 @@ , { "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.716095 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713481 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710935 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710154 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713311 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712938 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.712836 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } , { "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434580, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708864 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.708966 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 1024 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.789031 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788828 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.788895 ] } } -, -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.788828 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779059 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502966, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503910, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507687, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771868 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767390 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.760198 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499447, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760605 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781773 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488117, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781773 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.781909 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492151, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492838, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489576, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 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" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780416 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761148 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "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 & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.765083 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763455 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759926 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745404 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747440 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741874 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736037 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500820, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "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": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731082 ] } } -, -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753276 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490864, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738549 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.738345 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.740788 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.752055 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748526 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729792 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729656 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724090 ] } } , { "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726873 ] } } -, -{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773293 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773496 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785572 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.786250 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453699, 37.783944 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779195 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461681, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756262 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754226 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758569 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754769 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } -, -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } , { "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754498 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787132 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787335 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782180 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778110 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } , { "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773021 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773089 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778788 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773903 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.774175 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783130 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438936, 37.780416 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786114 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.774718 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775125 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766440 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769561 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765558 ] } } -, -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.764744 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767119 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767119 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } , { "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756398 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755448 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , { "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768069 ] } } , -{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768951 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } , { "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "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 & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760741 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756126 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748797 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746693 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745132 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741196 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740992 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738006 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748390 ] } } , -{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740449 ] } } -, -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732779 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734272 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.731150 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731014 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } -, -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734815 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474642, 37.727212 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "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 Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , { "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734408 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724904 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } -, -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724429 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724225 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751783 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.750426 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747168 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.746897 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } , -{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744521 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740788 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738209 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.736444 ] } } , { "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745268 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.748661 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } , { "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743639 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736105 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.731489 ] } } , -{ "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)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720356 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728977 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730335 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.733933 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732372 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731285 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724633 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724565 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743503 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718387 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 1024 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } , { "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } @@ -3209,21 +3165,23 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831802 ] } } +, { "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832955 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502129, 37.836446 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833870 ] } } , { "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833599 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483375, 37.833141 ] } } , { "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829429 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793558 ] } } , @@ -3231,185 +3189,163 @@ , { "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806563 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806071 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806919 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.803596 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.801782 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801019 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462218, 37.802901 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797933 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803799 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456768, 37.801629 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456725, 37.801612 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803766 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.801731 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.797730 ] } } -, { "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800748 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453935, 37.800527 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456295, 37.798391 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455094, 37.798238 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800341 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799120 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } -, { "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445223, 37.803630 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445180, 37.803409 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803766 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.803647 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802477 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.801545 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801901 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798408 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797153 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800612 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443120, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 37.799832 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.798883 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796695 ] } } , { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.795898 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790710 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447369, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444236, 37.791185 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441833, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439344, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799290 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437456, 37.800714 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.804427 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.802630 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436512, 37.802392 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.805410 ] } } -, -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802748 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.805122 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800883 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.799713 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436039, 37.799595 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799696 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800951 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.801104 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796780 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.797119 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } , { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791558 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.791727 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791931 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788505 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.789964 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436855, 37.795848 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794915 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794135 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.792524 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792711 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792202 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792338 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.789828 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.790099 ] } } -, -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787183 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } , +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } +, { "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801341 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } ] } ] } , @@ -3417,155 +3353,157 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719711 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719829 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719388 ] } } +, { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } , +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719388 ] } } +, { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719931 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712938 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712836 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.711071 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711105 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422221, 37.713549 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709814 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423208, 37.709305 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.708660 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.712598 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710018 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711716 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711852 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.713294 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.712021 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715026 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713277 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711054 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712768 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710731 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.710493 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411492, 37.710578 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709865 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419946, 37.708372 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.707896 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.707132 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } , { "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.706283 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.709051 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708253 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.717148 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.716655 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.717046 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712632 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.710205 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709899 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.711444 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711342 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , { "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713210 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711885 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.710561 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.716604 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716469 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716265 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , { "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.714669 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399347, 37.714805 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714228 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.712361 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712225 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712293 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.711139 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713549 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.712904 ] } } , { "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.712021 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398961, 37.711614 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399175, 37.711580 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.709339 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709848 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708932 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708932 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.709526 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711206 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.710969 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.710884 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , @@ -3573,7 +3511,7 @@ , { "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713379 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } ] } @@ -3583,259 +3521,247 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.785996 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783011 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781518 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778534 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.764490 ] } } -, -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.763947 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } -, -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } -, { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788200 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , { "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } -, { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } +, { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400634, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788539 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789201 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427800, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.785894 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785673 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.785606 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.784808 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.782400 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423851, 37.779687 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.781942 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780942 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778856 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776024 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777380 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.776753 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777550 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776532 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423294, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773819 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772767 ] } } , { "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773174 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773072 ] } } , { "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.772869 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419646, 37.785012 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.786352 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782977 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783180 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780196 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779992 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.780162 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783350 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.783231 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781688 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.782638 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.780569 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.780603 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780772 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.786555 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.785792 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786097 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.785843 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414067, 37.783672 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.781078 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.780637 ] } } , { "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782095 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411921, 37.782061 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783384 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775515 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775532 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } , { "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778737 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.777584 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777397 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.774972 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.773310 ] } } , { "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.772988 ] } } , -{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.772801 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774565 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.774209 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.773327 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.778500 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410762, 37.779178 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776125 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772123 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.771987 ] } } , @@ -3843,141 +3769,129 @@ , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } , { "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767662 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767814 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767763 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767339 ] } } , { "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427242, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428873, 37.767780 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.764456 ] } } -, -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764727 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , { "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.770562 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768391 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766254 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.764625 ] } } , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428401, 37.761470 ] } } -, -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761182 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761368 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759774 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , { "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428057, 37.757382 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426856, 37.757229 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , { "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754786 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425911, 37.761385 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423637, 37.761521 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421491, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.758739 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755550 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753395 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768204 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.768459 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.766203 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764998 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.762624 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.765253 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.765049 ] } } , { "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.765219 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.763828 ] } } -, -{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762115 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769103 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.768103 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410676, 37.768442 ] } } , { "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765304 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765711 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764015 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763133 ] } } , { "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760656 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416985, 37.758925 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416770, 37.758858 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756584 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.755159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.755821 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416685, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758993 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.761674 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409904, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.755940 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759333 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786335 ] } } , { "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785351 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.784266 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783910 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.784520 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } , @@ -3985,329 +3899,319 @@ , { "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784673 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786640 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404583, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784842 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , { "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785521 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784334 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782841 ] } } , { "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.783503 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.780738 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781179 ] } } , { "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782773 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.782638 ] } } , { "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.785962 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786335 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786504 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784639 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.786080 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784842 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.783994 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.783978 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.780433 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400849, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409217, 37.777923 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.780671 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407844, 37.776634 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.778618 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775718 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777143 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } , { "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.772530 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407072, 37.772326 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.778907 ] } } , { "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778941 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.776159 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776159 ] } } , { "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.771699 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398102, 37.786555 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395313, 37.784520 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.784181 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395012, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.782434 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782638 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.783282 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398059, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394583, 37.779975 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779551 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387974, 37.784622 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.781858 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781824 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783587 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389863, 37.779721 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.779619 ] } } , { "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396643, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.776532 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.776312 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775430 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397158, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.777279 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777414 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777177 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776363 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776057 ] } } , { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397802, 37.773123 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779280 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778093 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.775481 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772835 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.771156 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768255 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.764218 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764557 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.763302 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.762200 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.770155 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769748 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.768730 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767305 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766152 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766322 ] } } , { "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764863 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.764761 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.764897 ] } } -, -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766220 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764931 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401364, 37.763506 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761843 ] } } , { "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404196, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757500 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.757399 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754141 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755872 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406600, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.755414 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.754413 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.761979 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.759672 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758383 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.760927 ] } } , { "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.758128 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758009 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.756160 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } -, -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754447 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.754328 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } , { "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.757331 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757263 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755770 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.754854 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754888 ] } } , { "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766661 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } -, -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762420 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762624 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.762827 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391021, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766763 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769714 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769544 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389348, 37.767797 ] } } , { "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.762878 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.764354 ] } } , { "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.764422 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.763353 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389648, 37.762895 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762963 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762691 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761402 ] } } , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.760079 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } -, { "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758383 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.755974 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753548 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.757263 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757636 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755499 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391794, 37.757772 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.760537 ] } } -, { "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.389991, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390077, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.757585 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.755159 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387888, 37.755685 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } , { "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.751647 ] } } , { "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746778 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752038 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751902 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , { "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743588 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.742808 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742638 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742163 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.737717 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.736326 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738905 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737106 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425740, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.742163 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.742299 ] } } , { "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.742434 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.741009 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740839 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741009 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.742434 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742434 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425482, 37.739618 ] } } , @@ -4315,181 +4219,185 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.739380 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739719 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.736207 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740195 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.752173 ] } } , { "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752173 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750748 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.750273 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749510 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752479 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752309 ] } } , { "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420418, 37.748661 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.746931 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.746235 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.745081 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.748305 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414196, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752445 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.749052 ] } } , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748475 ] } } , { "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413766, 37.748084 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745319 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748339 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739923 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418444, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739312 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741450 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.741823 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.738922 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.738871 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.738260 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737174 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740059 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411406, 37.739923 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733475 ] } } , { "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733339 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733712 ] } } , { "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429645, 37.731387 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730454 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426383, 37.730963 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735070 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426083, 37.728553 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728706 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.728893 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723105 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720135 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 37.722901 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.426984, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } +, { "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725074 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725193 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725430 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725600 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426040, 37.720390 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735783 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420118, 37.735138 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.735053 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.732287 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416728, 37.734968 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } , { "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733271 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.729130 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.728825 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734730 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.734866 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.734663 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.734934 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.734900 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735002 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726398 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718709 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726584 ] } } , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , @@ -4497,19 +4405,19 @@ , { "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.723241 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.722698 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753056 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408960, 37.752750 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752818 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.752988 ] } } , { "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , @@ -4517,316 +4425,306 @@ , { "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744708 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752106 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } , { "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750714 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750748 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747117 ] } } , { "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.743317 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.742842 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405183, 37.742876 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.739685 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.739668 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738362 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.739855 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738701 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403338, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } , { "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399004, 37.743928 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.741484 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.739125 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400548, 37.739533 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398875, 37.736360 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398403, 37.752377 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752275 ] } } , { "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } , { "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.751427 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749018 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.749866 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396257, 37.747338 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.747253 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745964 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387846, 37.752547 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398231, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737208 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.736088 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736835 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736631 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744233 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.740687 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742706 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.742434 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740890 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.739753 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737581 ] } } , { "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736326 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738905 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389133, 37.738905 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388403, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737208 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.737921 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737632 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.734238 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732338 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730250 ] } } , { "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.727993 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.727433 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.734764 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399390, 37.731829 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.727976 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403553, 37.727331 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727637 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727739 ] } } , { "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.730369 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.729096 ] } } , { "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.726143 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.726669 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.723377 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.723733 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.723869 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.726907 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.720101 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.402995, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724073 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402093, 37.724174 ] } } , { "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723869 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.723648 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.723546 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721085 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720678 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721595 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } -, -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733203 ] } } , { "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727908 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392652, 37.735019 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392180, 37.735800 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734357 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390807, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734018 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732270 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391343, 37.732406 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390335, 37.735409 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390163, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390034, 37.731642 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732898 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729368 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.729215 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.729198 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728078 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727908 ] } } , { "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726924 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725481 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725295 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.723801 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.724157 ] } } , { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721119 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720780 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721187 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722409 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719761 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395399, 37.722630 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722409 ] } } , { "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.721408 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.727026 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.727060 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720339 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753123 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386816, 37.752801 ] } } , { "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749086 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } -, { "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386644, 37.745760 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , { "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742536 ] } } -, -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383168, 37.743690 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383382, 37.743894 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740907 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385871, 37.736597 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739991 ] } } , { "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384112, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384155, 37.737581 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738769 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737072 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.735850 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732049 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387030, 37.731845 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731845 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386601, 37.732355 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383039, 37.734680 ] } } , { "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383082, 37.733237 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733339 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385142, 37.730793 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385614, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.734018 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381837, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732490 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379348, 37.734391 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377160, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730573 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727976 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.728214 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375615, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374027, 37.730929 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730250 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729877 ] } } , { "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729130 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725329 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365186, 37.728587 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } -, { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } @@ -4837,15 +4735,11 @@ { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788709 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778669 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778534 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784300 ] } } ] } ] } , @@ -4853,225 +4747,203 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } -, -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792711 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790099 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806342 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420676, 37.806715 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.805580 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805630 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805698 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805630 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808309 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.805478 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808072 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.806563 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807800 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.808343 ] } } , { "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805732 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806495 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801341 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427843, 37.801816 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.800849 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798204 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805156 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425354, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425096, 37.805037 ] } } , { "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.804105 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805020 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424624, 37.802579 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423379, 37.803477 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.798577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.798459 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423894, 37.798645 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797730 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792168 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.790710 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796068 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794779 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.793830 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.793084 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792439 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.793694 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794169 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.793491 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.793185 ] } } , { "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.791151 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.792100 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790438 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791151 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.791931 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.790438 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.805325 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804206 ] } } , { "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800171 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419131, 37.799171 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798340 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798306 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417500, 37.799323 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799527 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.804952 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803782 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.801833 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411878, 37.804952 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801222 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803121 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799730 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.800968 ] } } , { "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800103 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.799018 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800375 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.800375 ] } } -, { "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.795356 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795390 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794644 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794406 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793626 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794847 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417886, 37.792745 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.793813 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.792948 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.791710 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.790693 ] } } -, -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789353 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.791829 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789658 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417457, 37.791100 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.791083 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417285, 37.790167 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.795780 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.795983 ] } } , @@ -5079,179 +4951,175 @@ , { "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796204 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796204 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411664, 37.795593 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411706, 37.795441 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409990, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.796407 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794576 ] } } , +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.794525 ] } } +, { "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792677 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } , { "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412307, 37.791710 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791863 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788844 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807258 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806783 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806614 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.803494 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.802341 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } , { "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.802664 ] } } , { "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801765 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800544 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800680 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.796780 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797594 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.800900 ] } } , { "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.798120 ] } } -, { "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406728, 37.796984 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405655, 37.797051 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.797323 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.805190 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805020 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } , { "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.802969 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.802155 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.803257 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801256 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.799663 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798137 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797391 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.800595 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400720, 37.798543 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.796729 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796238 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793830 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.792948 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 37.793728 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407587, 37.793236 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.792507 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404411, 37.794474 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404540, 37.793762 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404239, 37.792592 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792066 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.792117 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791083 ] } } , { "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407029, 37.789472 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792372 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788539 ] } } , { "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.795729 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795898 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401493, 37.794474 ] } } , { "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.792931 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794271 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794169 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } , { "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793287 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.793270 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790913 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788607 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789743 ] } } , { "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790286 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790337 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400634, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.798967 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799544 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797831 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.797085 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396986, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793626 ] } } -, -{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792473 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.793592 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397716, 37.792541 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793525 ] } } , @@ -5259,138 +5127,130 @@ , { "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793016 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796678 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.794830 ] } } -, -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793626 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793728 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.794423 ] } } , { "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793694 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793898 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793457 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.792999 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791642 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789251 ] } } , { "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789489 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788522 ] } } , { "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791829 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790845 ] } } , { "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.790761 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.789947 ] } } -, { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789184 ] } } , { "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789811 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392309, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792677 ] } } , { "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392395, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792405 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792338 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791083 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790744 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789455 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.790472 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.789591 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377203, 37.828175 ] } } , { "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829836 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373469, 37.829819 ] } } , { "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374971, 37.823243 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374284, 37.823396 ] } } , { "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373898, 37.823514 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829260 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369907, 37.825226 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825192 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366946, 37.825311 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371795, 37.816022 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369521, 37.818497 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821938 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819938 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366130, 37.819921 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813056 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370851, 37.813140 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813124 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811801 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } , { "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363770, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364285, 37.811327 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363384, 37.810377 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } @@ -5398,6 +5258,8 @@ , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788692 ] } } ] } ] } , diff --git a/tests/muni/out/-Z11_-z13_-M10000_-ad.json b/tests/muni/out/-Z11_-z13_-M10000_-ad.json index c670d25b6..167cb4e76 100644 --- a/tests/muni/out/-Z11_-z13_-M10000_-ad.json +++ b/tests/muni/out/-Z11_-z13_-M10000_-ad.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M10000_-ad.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"dropped_as_needed\":233,\"tile_size_desired\":10887},{\"dropped_by_rate\":2974,\"dropped_as_needed\":606,\"tile_size_desired\":10721},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4078,\"dropped_as_needed\":246,\"tile_size_desired\":11064},{\"dropped_by_rate\":2980,\"dropped_as_needed\":569,\"tile_size_desired\":10687},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -25,129 +25,117 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } -, { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } -, -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } -, -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714551 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } -, -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713159 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } -, -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713260 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710273 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714686 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714754 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715026 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707115 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713193 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } ] } ] } , @@ -155,955 +143,943 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831785 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483268, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833141 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480950, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } -, -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801545 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799849 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } , { "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799713 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799713 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796797 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512021, 37.779025 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.779161 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508759, 37.760164 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779568 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771970 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.780247 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484469, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764371 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488246, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758875 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492623, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480350, 37.765185 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761317 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482753, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761725 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754124 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752903 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751003 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753106 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745438 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747406 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744216 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725956 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483611, 37.722766 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726330 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780857 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765999 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765796 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763896 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761928 ] } } -, -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758196 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759146 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } -, -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786691 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784520 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.778754 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774175 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773937 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785131 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781061 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781535 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781739 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778551 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } -, -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.764439 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765728 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770206 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767492 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760910 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } -, -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.758230 ] } } -, -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761317 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766474 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.761657 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.769120 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768035 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769392 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763964 ] } } , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.754057 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755346 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760842 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754396 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749102 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } -, -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743130 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749306 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.739193 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.739533 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747881 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745777 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.747813 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741976 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471595, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.731048 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.731184 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468076, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469106, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728400 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731116 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455630, 37.731455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723445 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.723411 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747134 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746897 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.746659 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743639 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.751274 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749611 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736071 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725549 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723852 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720593 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733492 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433486, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722358 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806359 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808326 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801341 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } +{ "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 & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802562 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800459 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.803477 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793135 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793677 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } , { "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.791168 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.791914 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804189 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.797441 ] } } -, -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800120 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.800392 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789540 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795983 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795237 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796187 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.796560 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792660 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.808224 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806597 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802969 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.800663 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801070 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805003 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789472 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795712 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795915 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790354 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798967 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797068 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.793711 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792999 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793881 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789947 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788522 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.789201 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792321 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789608 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374263, 37.823379 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825175 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813140 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773191 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } -, -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783164 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785809 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780654 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783367 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778686 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.775498 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.779365 ] } } , { "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778483 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.767356 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764710 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768374 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766678 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764981 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768442 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765728 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758875 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.755821 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784045 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784520 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.777940 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776142 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768272 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764914 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761860 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757178 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.755414 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759689 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , { "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769561 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763353 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754667 ] } } -, -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } -, -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391772, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746524 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.757857 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751885 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742791 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746761 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736343 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739397 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739804 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.752055 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749510 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752292 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748492 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744352 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738922 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740076 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728604 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730844 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723105 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725413 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732813 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734917 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.723920 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.752971 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738379 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } -, -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739125 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742519 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752292 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749849 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.747270 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736852 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740687 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738922 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.734238 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732949 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734170 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727722 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724191 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.723546 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.735664 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732881 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729215 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390399, 37.728061 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722630 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.737055 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730233 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } ] } ] } , @@ -1114,6 +1090,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } ] } ] } , @@ -1121,7 +1099,7 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832378 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527664, 37.829057 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831328 ] } } ] } @@ -1131,17 +1109,17 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718709 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719897 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719643 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719049 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , @@ -1149,111 +1127,133 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } , +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } +, { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.714873 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716061 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.714567 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.715009 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716706 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716774 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478311, 37.715841 ] } } , { "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } , +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715009 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.716197 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713753 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.712989 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713549 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710901 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469985, 37.714432 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.714313 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.714330 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714194 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467110, 37.711648 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712327 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.711631 ] } } , { "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711274 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713176 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711444 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.716553 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.714839 ] } } , +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.714160 ] } } +, { "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713277 ] } } , +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713159 ] } } +, { "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } , +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +, { "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710290 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460673, 37.706148 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716061 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452133, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.714160 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.711716 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708660 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.712853 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709611 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716706 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.716452 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716469 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717148 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716401 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.716333 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439301, 37.715705 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.714771 ] } } , +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.711665 ] } } +, { "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.716095 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710935 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710154 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712938 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.712836 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708864 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.708966 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } ] } @@ -1263,115 +1263,123 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788471 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788404 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509897, 37.779890 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512043, 37.779025 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775176 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510240, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.509983, 37.773208 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773649 ] } } , { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505519, 37.782129 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504232, 37.781010 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505004, 37.779840 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.779551 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499683, 37.784978 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502987, 37.781078 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.779653 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775345 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500670, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507751, 37.773412 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771580 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771580 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771478 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779144 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779280 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500327, 37.771868 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.771783 ] } } , +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510455, 37.767373 ] } } +, { "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509189, 37.760350 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507408, 37.764184 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508781, 37.760164 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.764032 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760350 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505820, 37.760486 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506034, 37.760350 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758654 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505434, 37.754752 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505562, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505434, 37.754752 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781790 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499125, 37.760639 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781993 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.781654 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779789 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.779568 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490499, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783571 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781892 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779958 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781993 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.780009 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493074, 37.777686 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494576, 37.775888 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492173, 37.777753 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496336, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.771970 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772089 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776668 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492044, 37.775888 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491829, 37.776024 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487538, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776091 ] } } , { "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487495, 37.772462 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785860 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785690 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.783808 ] } } , { "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481658, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484963, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484705, 37.781942 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.780247 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.781959 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482688, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481401, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.782299 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.782214 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479255, 37.780450 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.780586 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476251, 37.780365 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.778042 ] } } , @@ -1381,235 +1389,243 @@ , { "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483804, 37.772513 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476509, 37.772835 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494705, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764354 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764727 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494705, 37.764744 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488267, 37.765032 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.760825 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495649, 37.760758 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495520, 37.758892 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759129 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757263 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.757025 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755397 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495048, 37.753497 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492645, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.753615 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761165 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486122, 37.765134 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765100 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765372 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765202 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761300 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.761368 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.761453 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481101, 37.757874 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761538 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754040 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753870 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.761453 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761572 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476809, 37.761742 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753972 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476938, 37.759943 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476294, 37.754107 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476423, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752784 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505562, 37.752886 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752818 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749323 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751020 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504961, 37.745590 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747423 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504790, 37.745421 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745421 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500155, 37.753123 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503030, 37.747423 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499812, 37.747542 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504833, 37.743741 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504704, 37.741857 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504532, 37.741688 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504489, 37.741823 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505305, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736020 ] } } , { "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736122 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500198, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500455, 37.741891 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505348, 37.735528 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498052, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506807, 37.735477 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735002 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498953, 37.734120 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.730658 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.728214 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502515, 37.726754 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753327 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495005, 37.751800 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.751291 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493331, 37.747830 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495348, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494791, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748135 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494662, 37.744216 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487667, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494533, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742299 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494276, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744504 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487538, 37.742638 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } -, -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740771 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748271 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485864, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484577, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479427, 37.748441 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748712 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.748526 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742672 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742774 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.742723 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742876 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496765, 37.733899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741280 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734781 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493675, 37.733356 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493846, 37.732015 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733950 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485821, 37.734120 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482173, 37.734289 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483933, 37.734204 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477238, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478483, 37.728061 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.730420 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } , { "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718692 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483633, 37.722749 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721832 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481229, 37.720729 ] } } , +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725940 ] } } +, { "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725973 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476852, 37.725973 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476122, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719626 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784368 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.782485 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471144, 37.782689 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475350, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780704 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780569 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470586, 37.780840 ] } } , +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467024, 37.784741 ] } } +, { "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466810, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785012 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464707, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.776770 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464793, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 37.780772 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.776939 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472131, 37.776481 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773038 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773038 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.777194 ] } } +, { "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.775023 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773344 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773242 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773479 ] } } , @@ -1617,123 +1633,115 @@ , { "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785690 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783214 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.785555 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.781128 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780874 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459815, 37.783079 ] } } , { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786029 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.785589 ] } } -, { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783961 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781078 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781518 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.777279 ] } } -, -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776973 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775447 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461746, 37.777397 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464106, 37.773666 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } -, -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777075 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777550 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } -, -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.774599 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454836, 37.774802 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765609 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765643 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765813 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770426 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468698, 37.765745 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } , { "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.766016 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765847 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.765847 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766084 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763913 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466295, 37.762098 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762081 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761911 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761911 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758111 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.759129 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761945 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.756364 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.759163 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473204, 37.754243 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761979 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761945 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.758196 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.760232 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758535 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465694, 37.756500 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765948 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461874, 37.766050 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464020, 37.764150 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462003, 37.762301 ] } } , { "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460501, 37.762658 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.764354 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.764998 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763709 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763302 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764354 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.758417 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463119, 37.758688 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463548, 37.754888 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755295 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.755329 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450244, 37.786708 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782231 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.785232 ] } } , @@ -1741,117 +1749,115 @@ , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.784758 ] } } -, -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782129 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782672 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.782706 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449644, 37.778347 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.775413 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778228 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774022 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773038 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450845, 37.773378 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449450, 37.773412 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.778754 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778754 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } -, { "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778907 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775701 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.776939 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.776804 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446039, 37.774056 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446511, 37.773920 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445610, 37.771953 ] } } -, { "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774192 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785148 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439988, 37.786284 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.783842 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.779500 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439516, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439215, 37.781603 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780501 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785996 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.786080 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781078 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432392, 37.781518 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779280 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440159, 37.777516 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438571, 37.777804 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439902, 37.777635 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777855 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441490, 37.774565 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438056, 37.776770 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440546, 37.770749 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441490, 37.774565 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774497 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773174 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778534 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769324 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.769307 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.766406 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450202, 37.766830 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450416, 37.768527 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } -, -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764591 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.764422 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449901, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.765745 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.765558 ] } } -, -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449858, 37.764778 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764761 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769002 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769154 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.767254 ] } } , +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } +, { "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.770206 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767339 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.770426 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.767509 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , @@ -1859,95 +1865,93 @@ , { "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765813 ] } } -, -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761674 ] } } -, -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } -, -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.760910 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442906, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760927 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447670, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446125, 37.758942 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761945 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761199 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444065, 37.761317 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } , +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.761640 ] } } +, { "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758213 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.756398 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } , +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.767729 ] } } +, { "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.768832 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766491 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.768052 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765355 ] } } , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.767271 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.767611 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.769392 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.764269 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764490 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762539 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761606 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763947 ] } } , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760486 ] } } , +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438142, 37.760758 ] } } +, { "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759027 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.754040 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.754006 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439001, 37.755363 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435138, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.760842 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434795, 37.759163 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757772 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.757636 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.756092 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754413 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750799 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472045, 37.752682 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748712 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746744 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473505, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470286, 37.745030 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467668, 37.749086 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752716 ] } } -, -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.749153 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.750850 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.749323 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743113 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.743062 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741518 ] } } , @@ -1955,367 +1959,371 @@ , { "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465994, 37.740924 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.741009 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } -, -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740873 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740941 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.740839 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465651, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.737853 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.739668 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } -, -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750952 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465265, 37.739550 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.751495 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.748373 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748271 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747898 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748169 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745285 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457111, 37.747813 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746371 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745760 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740228 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463677, 37.739923 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.740195 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740228 ] } } , { "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461445, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740873 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455480, 37.743113 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743232 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.741976 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475264, 37.734493 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.734713 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474792, 37.732117 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.731812 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735036 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471616, 37.734798 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734578 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.734306 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.731625 ] } } -, -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474535, 37.731031 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731167 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734696 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467840, 37.734934 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468054, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469084, 37.729979 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728383 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467883, 37.728383 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } , +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721187 ] } } +, { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721102 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474320, 37.721323 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475007, 37.720933 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } -, -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471788, 37.721612 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719524 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719558 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 37.732287 ] } } +, { "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459643, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729962 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460415, 37.730556 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732083 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457325, 37.731116 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.730691 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455823, 37.731268 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731099 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455652, 37.731438 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462132, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463462, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724378 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724259 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.723767 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723428 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723462 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454193, 37.723428 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457240, 37.719965 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.720101 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454965, 37.720067 ] } } , { "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749255 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.749934 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745319 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745319 ] } } -, -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748916 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.745624 ] } } , { "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.750409 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752072 ] } } -, -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442820, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750850 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447755, 37.746659 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.746354 ] } } , { "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } -, -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746880 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.747033 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.746676 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444193, 37.747151 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746880 ] } } , { "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450674, 37.744470 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741722 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742587 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738192 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737717 ] } } , { "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740195 ] } } , +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739244 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +, { "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450716, 37.738175 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } -, -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.736614 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } , { "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752411 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442605, 37.749255 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438357, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.746931 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.751121 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.751223 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.751071 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.749645 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.752767 ] } } , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.751257 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749595 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748848 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749798 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744674 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.748068 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743588 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.748068 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.743622 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.743249 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744640 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435524, 37.741620 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435353, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740195 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436297, 37.738294 ] } } , { "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740025 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740059 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.738260 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.737344 ] } } -, -{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.739991 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.736224 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.736071 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731608 ] } } , +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.731472 ] } } +, { "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729945 ] } } , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.728299 ] } } , +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448528, 37.731472 ] } } +, { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.728485 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735511 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.733984 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733950 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734459 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.731472 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.726041 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.725532 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453206, 37.723190 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723852 ] } } -, { "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723020 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452991, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721934 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721968 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722851 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.720390 ] } } , +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722952 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721051 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447112, 37.720984 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720950 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720848 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720848 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446210, 37.721238 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } , { "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720559 ] } } , +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720610 ] } } +, { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.722851 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722749 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722817 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720067 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440073, 37.734866 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727739 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.731506 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734459 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.733916 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.733492 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.733492 ] } } , { "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725668 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441189, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441232, 37.723258 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.723563 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438657, 37.723665 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724718 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723903 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.726347 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.726347 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.721459 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434280, 37.722409 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722375 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776855 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } +, { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -2329,137 +2337,145 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502129, 37.836446 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831802 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833870 ] } } , { "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833599 ] } } , +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483375, 37.833141 ] } } +, { "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829429 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793558 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806563 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806071 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806563 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.803596 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806919 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801019 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800120 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803766 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456725, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800748 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456295, 37.798391 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455094, 37.798238 ] } } , { "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799120 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445223, 37.803630 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.798052 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803766 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.803647 ] } } -, -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.801545 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801901 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798408 ] } } -, { "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800612 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443120, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 37.799832 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.799069 ] } } , +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796695 ] } } +, { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790710 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447369, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444236, 37.791185 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439344, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799290 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.804427 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.802630 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802748 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , { "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.805122 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800883 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.799713 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800951 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799696 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796780 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.797119 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } -, { "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.791727 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791931 ] } } -, -{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436855, 37.795848 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.789964 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794915 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.792524 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792711 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.789828 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792338 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.790099 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } , +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } +, { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801341 ] } } ] } ] } , @@ -2467,125 +2483,121 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719711 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719829 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712938 ] } } +, { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712836 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.711071 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711105 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709814 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423208, 37.709305 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.708660 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710018 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.712598 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711716 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711852 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.712021 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } -, { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715026 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713277 ] } } , +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711054 ] } } +, { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712768 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411492, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.710493 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709865 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419946, 37.708372 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.707896 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.707132 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.709051 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708253 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.717148 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.716655 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.717046 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709899 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.711444 ] } } , +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } +, { "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713210 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.716604 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716469 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716265 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } -, -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.712361 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399347, 37.714805 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712174 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714228 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712225 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712225 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.712242 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.711139 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713549 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398961, 37.711614 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.709339 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399175, 37.711580 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708932 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709848 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.709526 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711206 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.710884 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } ] } @@ -2595,916 +2607,928 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.785996 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781518 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778534 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.764490 ] } } -, -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.763947 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } -, -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , { "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788539 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789201 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427800, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.785894 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423851, 37.779687 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.781942 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780942 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776855 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776024 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776532 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423294, 37.777737 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772767 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773174 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773072 ] } } , { "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } , +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } +, { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419646, 37.785012 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } +, { "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782977 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783180 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780196 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779992 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.783231 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.782638 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.780569 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780772 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.785792 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } -, -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786097 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.785843 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } -, -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.781078 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414067, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.780637 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782095 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783384 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775515 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775532 ] } } , { "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778737 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.777584 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777397 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , { "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.772988 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.774209 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774565 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } , { "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.778500 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410762, 37.779178 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.771987 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.773886 ] } } , { "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767814 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767763 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767339 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427242, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764727 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768391 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766254 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759774 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.764846 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426856, 37.757229 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.764625 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754786 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421491, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423637, 37.761521 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.758739 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753395 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768204 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.768459 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764998 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765134 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.762624 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.765253 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.765049 ] } } , { "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765372 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762115 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769103 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765711 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764015 ] } } -, { "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760656 ] } } -, -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416985, 37.758925 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756584 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.755159 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416770, 37.758858 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416685, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.755821 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758993 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } , +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.761674 ] } } +, { "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409904, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.755940 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759333 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786335 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785351 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783910 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784062 ] } } , { "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.784520 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784639 ] } } +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.784792 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784775 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784673 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.783994 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404583, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786640 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784842 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } , { "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785521 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784334 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782841 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.780738 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781179 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.782638 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.785962 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786335 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784639 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.786080 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.780433 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409217, 37.777923 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.780671 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.778618 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775718 ] } } , +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } +, { "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.772530 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407072, 37.772326 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.771325 ] } } -, -{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778941 ] } } -, -{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.778907 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776159 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398102, 37.786555 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395012, 37.784096 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782638 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.783282 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398059, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.781858 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781824 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783587 ] } } , +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.779619 ] } } +, { "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396643, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775430 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397158, 37.775481 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777177 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776363 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776244 ] } } , +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776057 ] } } +, { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397802, 37.773123 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779280 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778093 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.775481 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772835 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.771156 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768255 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764557 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.763302 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.770155 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769748 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.768730 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767305 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766322 ] } } , { "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.764897 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.764761 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.764778 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766220 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761843 ] } } , { "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404196, 37.760944 ] } } , +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.757399 ] } } +, { "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755872 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406600, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.755414 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.754413 ] } } -, -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.759672 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758383 ] } } -, -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.758128 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.760927 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758009 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.756160 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754447 ] } } , { "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757263 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.754854 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766661 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754888 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762420 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391021, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769544 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.762878 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389348, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.764422 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.764354 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.763353 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389648, 37.762895 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761402 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759977 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.755974 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753548 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.757263 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757636 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391751, 37.757704 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760452 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.389991, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390077, 37.757874 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.755159 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387888, 37.755685 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746778 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752038 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751902 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, { "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743588 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.742808 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742638 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742095 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742163 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.737717 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.736326 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738905 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737106 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425740, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.742163 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.742299 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.741009 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742434 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425482, 37.739618 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424281, 37.739821 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.739380 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.736207 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.752173 ] } } , { "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752173 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749510 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.750273 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749510 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752309 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.746931 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.746235 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.745081 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.748305 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414196, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.749052 ] } } , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748475 ] } } , { "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413766, 37.748084 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745319 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748339 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418444, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739312 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741450 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.738922 ] } } -, -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.738260 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737174 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740059 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411406, 37.739923 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , { "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733339 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733712 ] } } , { "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429645, 37.731387 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730454 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426383, 37.730963 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730827 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426083, 37.728553 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728706 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723105 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723105 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720135 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 37.722901 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725430 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725600 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426040, 37.720390 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735783 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420118, 37.735138 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.732287 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733271 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.728825 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.734663 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.734900 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725855 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718709 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727009 ] } } , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.723920 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753056 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408960, 37.752750 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.752988 ] } } , { "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744708 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406085, 37.751630 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752106 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744708 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750748 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747117 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.743317 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.742842 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405183, 37.742876 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738362 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403338, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738701 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.739125 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400548, 37.739533 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398875, 37.736360 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398403, 37.752377 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752275 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749018 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.749866 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } , +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.747253 ] } } +, { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745964 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387846, 37.752547 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398231, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737208 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736835 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744233 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.740687 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742672 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.739753 ] } } , { "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736326 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736292 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391622, 37.736258 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738905 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389133, 37.738905 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.737921 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737632 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.734238 ] } } , +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +, { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732966 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404797, 37.732999 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730250 ] } } , { "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.727993 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.727433 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.734764 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.734170 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727637 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727739 ] } } , { "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.730369 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.726143 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.729096 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.723377 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.723733 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.723869 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.726907 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.720101 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.402995, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724073 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402093, 37.724174 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723869 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.723546 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721085 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721595 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733203 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727908 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392180, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392352, 37.735681 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734357 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.734781 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.733848 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732270 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391493, 37.732253 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390335, 37.735409 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390034, 37.731642 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732898 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.729215 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728078 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729232 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726924 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727908 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725481 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726924 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725295 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.723801 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.724157 ] } } , { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721119 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720780 ] } } -, { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719761 ] } } +, { "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722409 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395399, 37.722630 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.722443 ] } } , { "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.727026 ] } } -, -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.721408 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.727060 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386730, 37.755397 ] } } , { "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749086 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742536 ] } } -, -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383168, 37.743690 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743792 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385871, 37.736597 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739991 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384112, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384155, 37.737581 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737072 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387030, 37.731845 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731845 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386601, 37.732355 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383082, 37.733237 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733339 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385614, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.734018 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732490 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377160, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730573 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } -, -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.728214 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727976 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375615, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730250 ] } } , { "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729130 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725329 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365186, 37.728587 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } -, { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } @@ -3515,15 +3539,15 @@ { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788709 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778669 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778534 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784300 ] } } ] } ] } , @@ -3531,383 +3555,393 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } -, -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792711 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790099 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806342 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.805580 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805630 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805630 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805698 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808309 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.805478 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808072 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.807411 ] } } -, { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807800 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.808343 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805732 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806495 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } -, -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427843, 37.801816 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801341 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.800849 ] } } , +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.805105 ] } } +, { "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805156 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425354, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425096, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805020 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424881, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424624, 37.802579 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423379, 37.803477 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.798577 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423894, 37.798645 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792168 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.790710 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } , +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796068 ] } } +, { "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794779 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.793830 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792439 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.793694 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794169 ] } } , { "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.791151 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791151 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790438 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.791931 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.790438 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804783 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.805325 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804206 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419131, 37.799171 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798306 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.804952 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.801833 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802935 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.801833 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803121 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800103 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799730 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.799018 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.800375 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410634, 37.800188 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795390 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.795356 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794644 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795542 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } , +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +, { "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794847 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417886, 37.792745 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.792948 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.791710 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789353 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789658 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.791829 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420375, 37.789540 ] } } , { "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.791134 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.791083 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417285, 37.790167 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.795983 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795254 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796204 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411664, 37.795593 ] } } -, { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409990, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.796407 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792677 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792677 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791863 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807258 ] } } , +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806783 ] } } +, { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806614 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.803494 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.802341 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800544 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.796780 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800680 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797594 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800748 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406728, 37.796984 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805020 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.797323 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } , { "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.802969 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801256 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.803257 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798137 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797391 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400720, 37.798543 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.796729 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793830 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407587, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404540, 37.793762 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792066 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409132, 37.792304 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791083 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407029, 37.789472 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792372 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788539 ] } } , { "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.795729 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795898 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792762 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.792931 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401493, 37.794474 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794271 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794169 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793287 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790913 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788607 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789743 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790337 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400506, 37.790354 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.798967 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.797085 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396986, 37.795407 ] } } -, -{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792473 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397716, 37.792541 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793525 ] } } , { "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793185 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796678 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793626 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.793643 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.794423 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793694 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793898 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793457 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793355 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.792999 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791642 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789251 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790845 ] } } , { "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.790761 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.789947 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393296, 37.790540 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.790405 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789184 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789811 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392309, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792405 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792677 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792338 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790744 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790812 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.790472 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789455 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.789591 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377203, 37.828175 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373469, 37.829819 ] } } , { "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373898, 37.823514 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374284, 37.823396 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829260 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825192 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369907, 37.825226 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369521, 37.818497 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366946, 37.825311 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819938 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369521, 37.818497 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821938 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813124 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813056 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } , { "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363770, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364285, 37.811327 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363384, 37.810377 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } +, { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , @@ -3916,6 +3950,10 @@ , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.793152 ] } } ] } ] } , @@ -3930,6 +3968,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } ] } ] } , diff --git a/tests/muni/out/-Z11_-z13_-M10000_-pd.json b/tests/muni/out/-Z11_-z13_-M10000_-pd.json index c729a45e9..a7dac102e 100644 --- a/tests/muni/out/-Z11_-z13_-M10000_-pd.json +++ b/tests/muni/out/-Z11_-z13_-M10000_-pd.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M10000_-pd.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"dropped_as_needed\":212,\"tile_size_desired\":10887},{\"dropped_by_rate\":2974,\"dropped_as_needed\":225,\"tile_size_desired\":10721},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4078,\"dropped_as_needed\":220,\"tile_size_desired\":11064},{\"dropped_by_rate\":2980,\"dropped_as_needed\":224,\"tile_size_desired\":10687},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,7 +17,7 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } ] } @@ -27,169 +27,167 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } -, { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } , +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +, { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721068 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } -, -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714551 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713159 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713260 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710273 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714686 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712853 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714754 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715026 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.710477 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713193 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712208 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } ] } ] } , @@ -197,955 +195,943 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831785 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483268, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833141 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480950, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } -, -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801545 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799849 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } , { "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799713 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799713 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796797 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512021, 37.779025 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.779161 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508759, 37.760164 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779568 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771970 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.780247 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484469, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764371 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488246, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758875 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492623, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480350, 37.765185 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761317 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482753, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761725 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754124 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752903 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751003 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753106 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745438 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747406 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744216 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725956 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483611, 37.722766 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726330 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780857 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765999 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765796 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763896 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761928 ] } } -, -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759112 ] } } -, -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } -, -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758196 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759146 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786691 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784520 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.778754 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774175 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773937 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785131 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781061 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781535 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781739 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778551 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } -, -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.764439 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765728 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770206 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767492 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760910 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } -, -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.758230 ] } } -, -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761317 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766474 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.761657 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.769120 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768035 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769392 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763964 ] } } , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.754057 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755346 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760842 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754396 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749102 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } -, -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743130 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749306 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.739193 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.739533 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747881 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745777 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741976 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471595, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.731048 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.731184 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468076, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469106, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731116 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455630, 37.731455 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724259 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723445 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.723411 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747134 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746897 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.746659 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743639 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.751274 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749611 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736071 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725549 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723852 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720593 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733492 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433486, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722358 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806359 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808326 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801341 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } +{ "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 & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802562 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800459 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.803477 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793135 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793677 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } , { "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.791168 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.791914 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804189 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800120 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.800392 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789540 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795983 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795237 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796187 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.796560 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792660 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.808224 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806597 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802969 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.800663 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801070 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805003 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789472 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795712 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795915 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.789743 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798967 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797068 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.793711 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792999 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793881 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789947 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788522 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.789201 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792321 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789608 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374263, 37.823379 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825175 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813140 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773191 ] } } -, -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } -, -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783164 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785809 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780654 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783367 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778686 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.775498 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.777703 ] } } -, -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.779365 ] } } , { "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778483 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.767356 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764710 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768374 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766678 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764981 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768442 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765728 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758875 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.755821 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784045 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784520 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.777940 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776142 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768272 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764914 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761860 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757178 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.755414 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759689 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , { "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769561 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763353 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754667 ] } } -, -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } -, -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391772, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746524 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.757857 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751885 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742791 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746761 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736343 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739397 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739804 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.752055 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749510 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752292 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748492 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744352 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738922 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740076 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728604 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730844 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723105 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725413 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732813 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734917 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.723920 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.752971 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738379 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } -, -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739125 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742519 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752292 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.752360 ] } } -, -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749849 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.747270 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736852 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740687 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738922 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.734238 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732949 ] } } -, -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734170 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727722 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724191 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.723546 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.735664 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732881 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729215 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390399, 37.728061 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722630 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.737055 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730233 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } ] } ] } , @@ -1156,6 +1142,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } ] } ] } , @@ -1165,11 +1153,11 @@ , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527235, 37.832582 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527192, 37.832480 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527664, 37.829057 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830480 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830362 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831328 ] } } ] } @@ -1179,169 +1167,167 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718709 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719897 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719643 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } -, { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719049 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469943, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } -, { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716231 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716061 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.714873 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.714567 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711206 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.715009 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716706 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716774 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478311, 37.715841 ] } } , { "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715009 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.716197 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713753 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714058 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } , { "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.712989 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713549 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710901 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469985, 37.714432 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.714313 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.714330 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467368, 37.712514 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710358 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714194 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467110, 37.711648 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712327 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711410 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708728 ] } } , { "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714228 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711274 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713176 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713142 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711444 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.716553 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.714839 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458870, 37.711478 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.714160 ] } } , { "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713277 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.713328 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713159 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , { "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710290 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706114 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460673, 37.706148 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.716248 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716061 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713939 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452133, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.714160 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.711716 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708660 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.712853 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709611 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716706 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.716452 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716469 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717148 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716401 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.716333 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439301, 37.715705 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.714771 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.711665 ] } } , { "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438228, 37.711156 ] } } , @@ -1349,25 +1335,25 @@ , { "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.716095 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713481 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710935 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710154 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713311 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712938 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.712836 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } , { "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434580, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708864 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.708966 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } ] } @@ -1377,115 +1363,123 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788471 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788404 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509897, 37.779890 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512043, 37.779025 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775176 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510240, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.509983, 37.773208 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773649 ] } } , { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505519, 37.782129 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504232, 37.781010 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505004, 37.779840 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.779551 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499683, 37.784978 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502987, 37.781078 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.779653 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775345 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500670, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507751, 37.773412 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771580 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771580 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771478 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779144 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779280 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500327, 37.771868 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.771783 ] } } , +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510455, 37.767373 ] } } +, { "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509189, 37.760350 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507408, 37.764184 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508781, 37.760164 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.764032 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760350 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505820, 37.760486 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506034, 37.760350 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758654 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505434, 37.754752 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505562, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505434, 37.754752 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781790 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499125, 37.760639 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781993 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.781654 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779789 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.779568 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490499, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783571 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781892 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779958 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781993 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.780009 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493074, 37.777686 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494576, 37.775888 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492173, 37.777753 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496336, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.771970 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772089 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776668 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492044, 37.775888 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491829, 37.776024 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487538, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776091 ] } } , { "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487495, 37.772462 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785860 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785690 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.783808 ] } } , { "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481658, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484963, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484705, 37.781942 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.780247 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.781959 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482688, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481401, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.782299 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.782214 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479255, 37.780450 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.780586 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476251, 37.780365 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.778042 ] } } , @@ -1495,235 +1489,243 @@ , { "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483804, 37.772513 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476509, 37.772835 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494705, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764354 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764727 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494705, 37.764744 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488267, 37.765032 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.760825 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495649, 37.760758 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495520, 37.758892 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759129 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757263 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.757025 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755397 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495048, 37.753497 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492645, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.753615 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761165 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486122, 37.765134 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765100 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765372 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765202 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761300 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.761368 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.761453 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481101, 37.757874 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761538 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754040 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753870 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.761453 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761572 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476809, 37.761742 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753972 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476938, 37.759943 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476294, 37.754107 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476423, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752784 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505562, 37.752886 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752818 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749323 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751020 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504961, 37.745590 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747423 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504790, 37.745421 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745421 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500155, 37.753123 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503030, 37.747423 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499812, 37.747542 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504833, 37.743741 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504704, 37.741857 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504532, 37.741688 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504489, 37.741823 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505305, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736020 ] } } , { "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736122 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500198, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500455, 37.741891 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505348, 37.735528 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498052, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506807, 37.735477 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735002 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498953, 37.734120 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.730658 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.728214 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502515, 37.726754 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753327 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495005, 37.751800 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.751291 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493331, 37.747830 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495348, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494791, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748135 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494662, 37.744216 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487667, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494533, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742299 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494276, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744504 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487538, 37.742638 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } -, -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740771 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748271 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485864, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484577, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479427, 37.748441 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748712 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.748526 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } -, -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742672 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742774 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.742723 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742876 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496765, 37.733899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741280 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734781 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493675, 37.733356 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493846, 37.732015 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733950 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485821, 37.734120 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482173, 37.734289 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483933, 37.734204 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477238, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478483, 37.728061 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.730420 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } , { "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718692 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483633, 37.722749 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721832 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481229, 37.720729 ] } } , +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725940 ] } } +, { "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725973 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476852, 37.725973 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476122, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719626 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784368 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.782485 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471144, 37.782689 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475350, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780704 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780569 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470586, 37.780840 ] } } , +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467024, 37.784741 ] } } +, { "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466810, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785012 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464707, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.776770 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464793, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.776939 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472131, 37.776481 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773038 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773038 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.777194 ] } } +, { "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.775023 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773344 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773242 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773479 ] } } , @@ -1731,123 +1733,115 @@ , { "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785690 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783214 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.785555 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.781128 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780874 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459815, 37.783079 ] } } , { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786029 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.785589 ] } } -, { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783961 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781078 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781518 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.777279 ] } } -, -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776973 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775447 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461746, 37.777397 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464106, 37.773666 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777075 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777550 ] } } -, -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } -, -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.774599 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454836, 37.774802 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765609 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765643 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765813 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770426 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468698, 37.765745 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } , { "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.766016 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765847 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.765847 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766084 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763913 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466295, 37.762098 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762081 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761911 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761911 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758111 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.759129 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761945 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.756364 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.759163 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473204, 37.754243 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761979 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761945 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.758196 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.760232 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } -, -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465694, 37.756500 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758535 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765948 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461874, 37.766050 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464020, 37.764150 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462003, 37.762301 ] } } , { "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460501, 37.762658 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.764354 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.764998 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763709 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763302 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764354 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.758417 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463119, 37.758688 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463548, 37.754888 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755295 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.755329 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450244, 37.786708 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782231 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.785232 ] } } , @@ -1855,117 +1849,115 @@ , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782129 ] } } -, -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782672 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.782706 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449644, 37.778347 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.775413 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778228 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774022 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773038 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450845, 37.773378 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449450, 37.773412 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.778754 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778754 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } -, { "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778907 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775701 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.776939 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.776804 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446039, 37.774056 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446511, 37.773920 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445610, 37.771953 ] } } -, { "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774192 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785148 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439988, 37.786284 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.779500 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.783842 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439215, 37.781603 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439516, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780501 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785996 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.786080 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781078 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432392, 37.781518 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779280 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440159, 37.777516 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438571, 37.777804 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439902, 37.777635 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777855 ] } } , +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438056, 37.776770 ] } } +, { "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441490, 37.774565 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440546, 37.770749 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774497 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773174 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778534 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769324 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } -, -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.769307 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.766406 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450202, 37.766830 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450416, 37.768527 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } -, -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764591 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.764422 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449901, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.765745 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.765558 ] } } -, -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449858, 37.764778 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764761 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769002 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769154 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.767254 ] } } , +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } +, { "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.770206 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767339 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.770426 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.767509 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , @@ -1973,95 +1965,93 @@ , { "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765813 ] } } -, -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761674 ] } } -, -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } -, -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.760910 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442906, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760927 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447670, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446125, 37.758942 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761945 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761199 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444065, 37.761317 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } , +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.761640 ] } } +, { "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758213 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.756398 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } , +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.767729 ] } } +, { "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.768832 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766491 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.768052 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765355 ] } } , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.767271 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.767611 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.769392 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.764269 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764490 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762539 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761606 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763947 ] } } , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760486 ] } } , +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438142, 37.760758 ] } } +, { "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759027 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.754040 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.754006 ] } } +, +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439001, 37.755363 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435138, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.760842 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434795, 37.759163 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757772 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.757636 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.756092 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754413 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750799 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472045, 37.752682 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748712 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746744 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473505, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470286, 37.745030 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467668, 37.749086 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752716 ] } } -, -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.749153 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.750850 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.749323 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743113 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.743062 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741518 ] } } , @@ -2069,367 +2059,371 @@ , { "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465994, 37.740924 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.741009 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } -, -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740873 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740941 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.740839 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465651, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.737853 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.739668 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } -, -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750952 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465265, 37.739550 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.751495 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.748373 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748271 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747898 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748169 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745285 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457111, 37.747813 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746371 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745760 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740228 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463677, 37.739923 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.740195 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740228 ] } } , { "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461445, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740873 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455480, 37.743113 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743232 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.741976 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475264, 37.734493 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.734713 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474792, 37.732117 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.731812 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735036 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471616, 37.734798 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734578 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.734306 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.731625 ] } } -, -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474535, 37.731031 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731167 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734696 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467840, 37.734934 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468054, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469084, 37.729979 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728383 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467883, 37.728383 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } , +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721187 ] } } +, { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721102 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474320, 37.721323 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475007, 37.720933 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719524 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471788, 37.721612 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719558 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719711 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 37.732287 ] } } +, { "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459643, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729962 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460415, 37.730556 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732083 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457325, 37.731116 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.730691 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455823, 37.731268 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731099 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455652, 37.731438 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462132, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463462, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724378 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724259 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.723767 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723428 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723462 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454193, 37.723428 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457240, 37.719965 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.720101 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454965, 37.720067 ] } } , { "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749255 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.749934 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745319 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745319 ] } } -, -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748916 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.745624 ] } } , { "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.750409 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752072 ] } } -, -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442820, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750850 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447755, 37.746659 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.746354 ] } } , { "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.747033 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746880 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444193, 37.747151 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.746676 ] } } -, -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746880 ] } } , { "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450674, 37.744470 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741722 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742587 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738192 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737717 ] } } , { "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740195 ] } } , +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739244 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +, { "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450716, 37.738175 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } -, -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.736614 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } , { "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752411 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442605, 37.749255 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438357, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.746931 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.751121 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.751223 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.751071 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.749645 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.752767 ] } } , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.751257 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749595 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748848 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749798 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744674 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.748068 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743588 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.748068 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.743622 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.743249 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744640 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435524, 37.741620 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435353, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740195 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436297, 37.738294 ] } } , { "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740025 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740059 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.738260 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.737344 ] } } -, -{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.739991 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.736224 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.736071 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731608 ] } } , +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.731472 ] } } +, { "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729945 ] } } , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.728299 ] } } , +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448528, 37.731472 ] } } +, { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.728485 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735511 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.733984 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733950 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734459 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.731472 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.726041 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.725532 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453206, 37.723190 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723852 ] } } -, { "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723020 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452991, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721934 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721968 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722851 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.720390 ] } } , +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722952 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721051 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447112, 37.720984 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720950 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720848 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720848 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446210, 37.721238 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } , { "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720559 ] } } , +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720610 ] } } +, { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.722851 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722749 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722817 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720067 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440073, 37.734866 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727739 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.731506 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734459 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.733916 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.733492 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.733492 ] } } , { "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725668 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441189, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441232, 37.723258 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.723563 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438657, 37.723665 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724718 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723903 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.726347 ] } } -, -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.726347 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434280, 37.722409 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.721459 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722375 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776855 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } +, { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -2443,21 +2437,23 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831802 ] } } +, { "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832955 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502129, 37.836446 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833870 ] } } , { "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833599 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483375, 37.833141 ] } } , { "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829429 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793558 ] } } , @@ -2465,185 +2461,181 @@ , { "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806563 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806071 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806919 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.803596 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.801782 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801019 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462218, 37.802901 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797933 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803799 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456768, 37.801629 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456725, 37.801612 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803766 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.801731 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.797730 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800748 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453935, 37.800527 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456295, 37.798391 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455094, 37.798238 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800341 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799120 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } , { "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445223, 37.803630 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445180, 37.803409 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803766 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.803647 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802477 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.801545 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801901 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798408 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797153 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800612 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443120, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 37.799832 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.798883 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796695 ] } } , { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.795898 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790710 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447369, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444236, 37.791185 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441833, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439344, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799290 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437456, 37.800714 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.804427 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.802630 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436512, 37.802392 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802748 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , { "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.805122 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800883 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.799713 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436039, 37.799595 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799696 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800951 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.801104 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796780 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.797119 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } , { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791558 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.791727 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.789964 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791931 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788505 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436855, 37.795848 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794915 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794135 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.792524 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792711 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792202 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792338 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.789828 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.790099 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } , { "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787183 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } -, { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } , +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } +, { "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } +, { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801341 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } -, -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } ] } ] } , @@ -2651,163 +2643,165 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719711 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719829 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718845 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719388 ] } } +, { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719388 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719931 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712938 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712836 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.711071 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711105 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422221, 37.713549 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709814 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423208, 37.709305 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.708660 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.712598 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710018 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711716 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711852 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.713294 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.712021 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715026 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713277 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711054 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712768 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710731 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.710493 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411492, 37.710578 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709865 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419946, 37.708372 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.707896 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.707132 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } , { "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.706283 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.709051 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708253 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.717148 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.716655 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.717046 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712632 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.710205 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709899 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.711444 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711342 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , { "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713210 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711885 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.710561 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.716604 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716469 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716265 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , { "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.714669 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399347, 37.714805 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714228 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.712361 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712174 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712293 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712225 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712225 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.712242 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.711139 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713549 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.712904 ] } } , { "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.712021 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398961, 37.711614 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399175, 37.711580 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.709339 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709848 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708932 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708932 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.709526 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711206 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.710969 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.710884 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , @@ -2815,7 +2809,7 @@ , { "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713379 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } ] } @@ -2825,261 +2819,251 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.785996 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783011 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781518 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778534 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.764490 ] } } -, -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.763947 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } -, -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } -, { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } -, -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } -, -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788200 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } +, { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400634, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788539 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789201 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427800, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.785894 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785673 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.785606 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.784808 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.782400 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423851, 37.779687 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.781942 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780942 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776855 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776024 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777380 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.776753 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777550 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776532 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423294, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773819 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772767 ] } } , { "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773174 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773072 ] } } , { "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.772869 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419646, 37.785012 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.786352 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782977 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783180 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780196 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779992 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.780162 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783350 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.783231 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781688 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.782638 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.780569 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.780603 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780772 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.786555 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.785792 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786097 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.785843 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414067, 37.783672 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.781078 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.780637 ] } } , { "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782095 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411921, 37.782061 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783384 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775515 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775532 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } , { "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778737 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.777584 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777397 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.774972 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.773310 ] } } , { "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.772988 ] } } , -{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.772801 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774565 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.774209 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.773327 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } , { "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.778500 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410762, 37.779178 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776125 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772123 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.771987 ] } } , @@ -3087,183 +3071,185 @@ , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } , { "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767662 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767814 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767763 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767339 ] } } , { "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427242, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428873, 37.767780 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.764456 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } , { "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764727 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , { "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.770562 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768391 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766254 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.764625 ] } } , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428401, 37.761470 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761368 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759774 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , { "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428057, 37.757382 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426856, 37.757229 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , { "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754786 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425911, 37.761385 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423637, 37.761521 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421491, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.758739 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755550 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753395 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768204 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.768459 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.766203 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764998 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765134 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.762624 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.765253 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.765049 ] } } , { "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765372 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.763828 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762115 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769103 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.768103 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410676, 37.768442 ] } } , { "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765304 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765711 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764015 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763133 ] } } , { "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760656 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416985, 37.758925 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416770, 37.758858 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756584 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.755159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.755821 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416685, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758993 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.761674 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409904, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.755940 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759333 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786335 ] } } , { "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785351 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.784266 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783910 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784062 ] } } , { "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.784520 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784639 ] } } +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784775 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784775 ] } } , { "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.783994 ] } } , { "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784673 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786640 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404583, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784842 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , { "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785521 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784334 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782841 ] } } , { "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.783503 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.780738 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781179 ] } } , { "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782773 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.782638 ] } } , { "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.785962 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786504 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786335 ] } } , @@ -3271,311 +3257,311 @@ , { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.786080 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784842 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.783994 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.783978 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.780433 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400849, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409217, 37.777923 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.780671 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407844, 37.776634 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.778618 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775718 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777143 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } , { "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.772530 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407072, 37.772326 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.778907 ] } } , { "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778941 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.776159 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776159 ] } } , { "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.771699 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398102, 37.786555 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395313, 37.784520 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.784181 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395012, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.782434 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782638 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.783282 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398059, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394583, 37.779975 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779551 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387974, 37.784622 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.781858 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781824 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783587 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389863, 37.779721 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.779619 ] } } , { "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396643, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.776532 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.776312 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775430 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397158, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.777279 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777414 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777177 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776363 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776057 ] } } , { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397802, 37.773123 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779280 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778093 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.775481 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772835 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.771156 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768255 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.764218 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764557 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.763302 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.762200 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.770155 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769748 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.768730 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767305 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766152 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766322 ] } } , { "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764863 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.764761 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.764897 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.764778 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766220 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764931 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401364, 37.763506 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761843 ] } } , { "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404196, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757500 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.757399 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754141 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755872 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406600, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.755414 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.754413 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.761979 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.759672 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758383 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.760927 ] } } , { "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.758128 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758009 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.756160 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754447 ] } } , { "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.754328 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } , { "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.757331 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757263 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755770 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.754854 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754888 ] } } , { "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766661 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762420 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762624 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.762827 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391021, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766763 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769714 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769544 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389348, 37.767797 ] } } , { "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.762878 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.764354 ] } } , { "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.764422 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764252 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389648, 37.762895 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.763353 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762963 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762691 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761402 ] } } , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.760079 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759977 ] } } , { "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758383 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.755974 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753548 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.757263 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757636 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755499 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391794, 37.757772 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391751, 37.757704 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760452 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.389991, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390077, 37.757874 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.757585 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.755159 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387888, 37.755685 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } , { "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.751647 ] } } , { "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746778 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752038 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751902 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , { "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743588 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.742808 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742638 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742095 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742095 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742163 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.737717 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.736326 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738905 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737106 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425740, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.742163 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.742299 ] } } , { "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.742434 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.741009 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.742299 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740839 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741009 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.742434 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742434 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425482, 37.739618 ] } } , @@ -3583,187 +3569,187 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.739380 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739719 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.736207 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740195 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.752173 ] } } , { "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752173 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750748 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.750273 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749510 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752479 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752309 ] } } , { "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420418, 37.748661 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.746931 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.746235 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.745081 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.748305 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414196, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752445 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.749052 ] } } , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748475 ] } } , { "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413766, 37.748084 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745319 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748339 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739923 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418444, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739312 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741450 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.741823 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.738922 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.738871 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.738260 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737174 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740059 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411406, 37.739923 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733475 ] } } , { "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733339 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733712 ] } } , { "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429645, 37.731387 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730454 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426383, 37.730963 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730827 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.728604 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735070 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426083, 37.728553 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728706 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.728893 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723105 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720135 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 37.722901 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.426984, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , { "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725074 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725193 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725430 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725600 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426040, 37.720390 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735783 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420118, 37.735138 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.735053 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.732287 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416728, 37.734968 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } , { "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733271 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.729130 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.728825 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734730 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.734866 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.734663 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.734934 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.734900 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735002 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726398 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718709 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726584 ] } } , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , @@ -3771,19 +3757,19 @@ , { "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.723241 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.722698 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753056 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408960, 37.752750 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752818 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.752988 ] } } , { "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , @@ -3791,340 +3777,338 @@ , { "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744708 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752106 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } , { "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750714 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750748 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747117 ] } } , { "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.743317 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.742842 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405183, 37.742876 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.739685 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.739668 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738362 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.739855 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738701 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403338, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } , { "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399004, 37.743928 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.741484 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.739125 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400548, 37.739533 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398875, 37.736360 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398403, 37.752377 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752275 ] } } , { "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } , { "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.751427 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749018 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.749866 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396257, 37.747338 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.747253 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745964 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387846, 37.752547 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398231, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737208 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.736088 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736835 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736631 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744233 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.740687 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742706 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742672 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.742434 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740890 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.739753 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737581 ] } } , { "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736326 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736292 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391622, 37.736258 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738905 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389133, 37.738905 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.739906 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388403, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737208 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.737921 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737632 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.734238 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732338 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732966 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404797, 37.732999 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730250 ] } } , { "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.727993 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.727433 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.734764 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399390, 37.731829 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.727976 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403553, 37.727331 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727637 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727739 ] } } , { "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.730369 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.729096 ] } } , { "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.726143 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.726669 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.723377 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.723733 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.723869 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.726907 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.720101 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.402995, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724073 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402093, 37.724174 ] } } , { "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723869 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.723648 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.723546 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721085 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720678 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721595 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733203 ] } } , { "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727908 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392652, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392180, 37.735800 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392352, 37.735681 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734357 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390807, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734018 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.733848 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732270 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391343, 37.732406 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391493, 37.732253 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732202 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390335, 37.735409 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390163, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390034, 37.731642 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732898 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729368 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.729215 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392609, 37.729283 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729232 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.729198 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728078 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727908 ] } } , { "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726924 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725481 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725295 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.723801 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.724157 ] } } , { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721119 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720780 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721187 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719761 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722409 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395399, 37.722630 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.722443 ] } } , { "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.721408 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.727026 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.727060 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720339 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386730, 37.755397 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753123 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386816, 37.752801 ] } } , { "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749086 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386644, 37.745760 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , { "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742536 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383382, 37.743894 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383168, 37.743690 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743792 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740907 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385871, 37.736597 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739991 ] } } , { "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384112, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384155, 37.737581 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738769 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737072 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.735850 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732049 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387030, 37.731845 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731845 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386601, 37.732355 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383039, 37.734680 ] } } , { "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383082, 37.733237 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733339 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385142, 37.730793 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385614, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.734018 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381837, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732490 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379348, 37.734391 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377160, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730573 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727976 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.728214 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375615, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374027, 37.730929 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730250 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729877 ] } } , { "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729130 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725329 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365186, 37.728587 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } -, { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } @@ -4135,17 +4119,15 @@ { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788709 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775142 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778669 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778534 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784300 ] } } ] } ] } , @@ -4153,229 +4135,225 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } -, -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792711 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790099 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806342 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420676, 37.806715 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.805580 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805630 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805698 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805630 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808309 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.805478 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808072 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.806563 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807800 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.808343 ] } } , { "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805732 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806495 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801341 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427843, 37.801816 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.800849 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798204 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.805105 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805156 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425354, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425096, 37.805037 ] } } , { "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.804105 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805020 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424839, 37.802341 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424881, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424624, 37.802579 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423379, 37.803477 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.798577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.798459 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423894, 37.798645 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797730 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792168 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.790710 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796068 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794779 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.793830 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.793084 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792439 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.793694 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794169 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.793491 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.793185 ] } } , { "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.791151 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.792100 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790438 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791151 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.791931 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.790438 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804783 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.805325 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } , { "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804206 ] } } , { "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800171 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.799273 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419131, 37.799171 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798340 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798306 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417500, 37.799323 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799527 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.804952 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803782 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.801833 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411878, 37.804952 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801222 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803121 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799730 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.800968 ] } } , { "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800103 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.799018 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800375 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.800375 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410634, 37.800188 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.795356 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795390 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794644 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794406 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793626 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794847 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417886, 37.792745 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.793813 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.792948 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.791710 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.790693 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789658 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789353 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420375, 37.789540 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.791829 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417457, 37.791100 ] } } , { "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.791134 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.791083 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417285, 37.790167 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.795780 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.795983 ] } } , @@ -4383,185 +4361,183 @@ , { "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796204 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796204 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411664, 37.795593 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411706, 37.795441 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409990, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.796407 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794576 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794440 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792677 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } , { "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412307, 37.791710 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791863 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788844 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807258 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806783 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806614 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.803494 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.802341 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } , { "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.802664 ] } } , { "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801765 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800544 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800680 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.796780 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797594 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800748 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406728, 37.796984 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405655, 37.797051 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.797323 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.805190 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805020 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } , { "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.802969 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.802155 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.803257 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801256 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.799663 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798137 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797391 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.800595 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400720, 37.798543 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.796729 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796238 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793830 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.792948 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 37.793728 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407587, 37.793236 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.792507 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404411, 37.794474 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404540, 37.793762 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404239, 37.792592 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792066 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409132, 37.792304 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } , { "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.792117 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791083 ] } } , { "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407029, 37.789472 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792372 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788539 ] } } , { "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.795729 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795898 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401493, 37.794474 ] } } , { "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.792931 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794271 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794169 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } , { "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793287 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.793270 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790913 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788607 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789743 ] } } , { "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790286 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790337 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400506, 37.790354 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400634, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.798967 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799544 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797831 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.797085 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396986, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793626 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.793592 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792473 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397716, 37.792541 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793525 ] } } , @@ -4569,150 +4545,146 @@ , { "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793016 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793185 ] } } -, { "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396171, 37.793474 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796678 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.794830 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793728 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793626 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.794423 ] } } , { "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793694 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793898 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793457 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793355 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.792999 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791642 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789251 ] } } , { "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789489 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788522 ] } } , { "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791829 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790845 ] } } , { "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.790761 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.790574 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393296, 37.790540 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.789947 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.790405 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789184 ] } } , { "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789811 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392309, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792677 ] } } , { "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392395, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792405 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792338 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791083 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790744 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790812 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.790472 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789455 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.789591 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377203, 37.828175 ] } } , { "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829836 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373469, 37.829819 ] } } , { "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374971, 37.823243 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374284, 37.823396 ] } } , { "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373898, 37.823514 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829260 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369907, 37.825226 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825192 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366946, 37.825311 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371795, 37.816022 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369521, 37.818497 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821938 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819938 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366130, 37.819921 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813056 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370851, 37.813140 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813124 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811801 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } , { "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363770, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364285, 37.811327 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363384, 37.810377 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } @@ -4720,6 +4692,10 @@ , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.793152 ] } } ] } ] } , @@ -4734,6 +4710,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } ] } ] } , diff --git a/tests/muni/out/-Z11_-z13_-M5000_-as.json b/tests/muni/out/-Z11_-z13_-M5000_-as.json index 6909f2eb1..96713295e 100644 --- a/tests/muni/out/-Z11_-z13_-M5000_-as.json +++ b/tests/muni/out/-Z11_-z13_-M5000_-as.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M5000_-as.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"dropped_as_needed\":481,\"tile_size_desired\":10887},{\"dropped_by_rate\":2974,\"dropped_as_needed\":1311,\"tile_size_desired\":10721},{\"dropped_as_needed\":3251,\"tile_size_desired\":9664}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4078,\"dropped_as_needed\":495,\"tile_size_desired\":11064},{\"dropped_by_rate\":2980,\"dropped_as_needed\":1222,\"tile_size_desired\":10687},{\"dropped_as_needed\":3251,\"tile_size_desired\":9664}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,7 +17,7 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } ] } ] } , @@ -25,77 +25,61 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } -, -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } -, { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721068 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719711 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } -, -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.712344 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714686 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } -, -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707115 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713193 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } ] } ] } , @@ -103,511 +87,503 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } -, -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833141 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796797 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } , { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504210, 37.780993 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.779161 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509189, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760503 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760503 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781875 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775905 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.780247 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764371 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480350, 37.765185 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757857 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } -, -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745573 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747542 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751003 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747406 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736003 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744216 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494254, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746456 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733899 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740754 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } , { "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725956 ] } } -, -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483611, 37.722766 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.780789 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.775430 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765796 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.775430 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759146 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786691 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.782248 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782960 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.775396 ] } } -, -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778754 ] } } -, -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.778754 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783842 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } -, -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779500 ] } } -, -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } -, -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781061 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781739 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } -, -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768510 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767492 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } -, -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766474 ] } } -, -{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769392 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751478 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.747813 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745777 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740211 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.731184 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728400 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746897 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742587 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749645 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736071 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729962 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.731523 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } -, -{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722358 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808326 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793135 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800459 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796390 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796390 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.791914 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795983 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792660 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796390 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801070 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802358 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801273 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800527 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795712 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792049 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792931 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795915 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788183 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.789743 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798967 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794423 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } -, -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789947 ] } } -, -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790828 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 37.829819 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825175 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818497 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778618 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783367 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778686 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767763 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768374 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764846 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , { "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766678 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768442 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.777940 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.780654 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } -, -{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783299 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771156 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755889 ] } } -, -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764371 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395978, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.755957 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.757857 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751885 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736444 ] } } +, { "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739804 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749510 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752292 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748492 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744352 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723105 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.728706 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724734 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732270 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732813 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734917 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.725855 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.727009 ] } } , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.752971 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747134 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742519 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752292 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390399, 37.728061 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727925 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732881 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -627,11 +603,7 @@ , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527235, 37.832582 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527664, 37.829057 ] } } -, -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830480 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } ] } ] } , @@ -639,71 +611,75 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718709 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719643 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.714873 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } +, { "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.715009 ] } } , { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716706 ] } } , +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478311, 37.715841 ] } } +, { "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713549 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 37.710697 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.714330 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467368, 37.712514 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710358 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714194 ] } } , +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712327 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708728 ] } } +, { "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711274 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713142 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711444 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458870, 37.711478 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.714160 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708660 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716706 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713481 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710935 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } ] } @@ -713,569 +689,573 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788471 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775176 ] } } -, -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779992 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788098 ] } } , { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505519, 37.782129 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504232, 37.781010 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505219, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502987, 37.781078 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499683, 37.784978 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505949, 37.775209 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502987, 37.781078 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775345 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500670, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771580 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505949, 37.775209 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771580 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779144 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779280 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500327, 37.771868 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510283, 37.767882 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509189, 37.760350 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507408, 37.764184 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760350 ] } } , +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760520 ] } } +, { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758654 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505734, 37.756771 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760520 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760758 ] } } , +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.781654 ] } } +, { "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781790 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779789 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.779806 ] } } -, { "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783791 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490499, 37.783672 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781892 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781841 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494576, 37.775888 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493246, 37.777855 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487495, 37.772462 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487538, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785860 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785690 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.780247 ] } } -, { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482688, 37.780077 ] } } -, -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477496, 37.782282 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.780586 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.782299 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776464 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774548 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480607, 37.772648 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764354 ] } } +, { "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494705, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757263 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490413, 37.764931 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759129 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755397 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495306, 37.753531 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.753615 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763675 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486122, 37.765134 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.761368 ] } } , { "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481101, 37.757874 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.757891 ] } } -, -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.756008 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476680, 37.756211 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507493, 37.750918 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753123 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749323 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751020 ] } } , { "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507536, 37.745438 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505090, 37.747457 ] } } -, { "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504961, 37.745590 ] } } , +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503030, 37.747423 ] } } +, { "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499812, 37.747542 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497623, 37.747626 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504833, 37.743741 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504704, 37.741857 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505305, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736020 ] } } , { "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736122 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502601, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500455, 37.741891 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506807, 37.735477 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.730658 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.728214 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502515, 37.726754 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753327 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749798 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.751291 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495348, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489040, 37.748000 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494791, 37.746082 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494662, 37.744216 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494533, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.746354 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494276, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744504 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487538, 37.742638 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748271 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740771 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481315, 37.748458 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.742723 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742876 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496765, 37.733899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.743181 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741280 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733950 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477367, 37.734747 ] } } -, -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } , { "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718692 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483633, 37.722749 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481229, 37.720729 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725973 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725940 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719626 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725973 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.784385 ] } } +, { "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473247, 37.784503 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471144, 37.782689 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475350, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785012 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780704 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468998, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467024, 37.784741 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780976 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.776770 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773038 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.773191 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.777058 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469814, 37.773174 ] } } -, -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.775023 ] } } -, { "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784876 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785690 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462561, 37.785182 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783214 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785690 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462561, 37.783079 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.781128 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461145, 37.781044 ] } } -, -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459815, 37.783079 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.777279 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783893 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776973 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464235, 37.779161 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775447 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461746, 37.777397 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464106, 37.773666 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454150, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454836, 37.774802 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765609 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765813 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770426 ] } } , +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } +, { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766084 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761979 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761911 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765948 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761945 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.759163 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762725 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758535 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.764998 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.763302 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765948 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464278, 37.764082 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764354 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.754650 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } , { "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.755397 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.755329 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } , { "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450244, 37.786708 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448270, 37.784978 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.781841 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782231 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.782146 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449644, 37.778347 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.778093 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.775413 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449644, 37.778347 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.778754 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778754 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } -, -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778907 ] } } -, { "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445610, 37.771953 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.783842 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.779500 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439215, 37.781603 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780501 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437670, 37.783621 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434795, 37.785945 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785996 ] } } -, { "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781078 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.783011 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779280 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777313 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779280 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440159, 37.777516 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441490, 37.774565 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440546, 37.770749 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435181, 37.778144 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.769171 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775413 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.766406 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450202, 37.766830 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450416, 37.768527 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769935 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.767102 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769002 ] } } -, -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.767509 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.764490 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446125, 37.758942 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447670, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446125, 37.758942 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766491 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765355 ] } } , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.769392 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435825, 37.767373 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.769392 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764490 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762624 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759027 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435138, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757772 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.756092 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750799 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472045, 37.752682 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745081 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745098 ] } } , { "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.749153 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743300 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741484 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741484 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } , { "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.741162 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.738090 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.751698 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456896, 37.749832 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.751495 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.748373 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457111, 37.747813 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746371 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745760 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.740398 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463677, 37.739923 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740228 ] } } , { "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461445, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475264, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.732779 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735036 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731167 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467840, 37.734934 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734696 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467840, 37.734934 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.727246 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467883, 37.728383 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721187 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 37.732287 ] } } , { "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735494 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729962 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455823, 37.731268 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.730691 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724955 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731099 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724378 ] } } -, { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.723767 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } -, { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.720101 ] } } -, { "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749255 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.749934 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } , { "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748916 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.752343 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750850 ] } } , { "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.748034 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } -, { "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746880 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743486 ] } } , { "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450674, 37.744470 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738192 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742587 ] } } , { "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740195 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } , { "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752411 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442605, 37.749255 ] } } -, -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.752784 ] } } -, -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.746931 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.751121 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441404, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748848 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.749645 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743588 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749798 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.743249 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744640 ] } } , { "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740025 ] } } , +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.736071 ] } } +, { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731608 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.731608 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729945 ] } } , { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.728485 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.733984 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734459 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.731472 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.726041 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453206, 37.723190 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452991, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721934 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721051 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } -, { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.720271 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735002 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722749 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.731506 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727739 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.733831 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734459 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433851, 37.732389 ] } } , { "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.731319 ] } } , +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441618, 37.726822 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441189, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438657, 37.723665 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718641 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.726347 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.721459 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722375 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } , +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } +, { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -1287,63 +1267,79 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833870 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483375, 37.833141 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793558 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806071 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806919 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.801782 ] } } +, { "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801019 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803799 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } , +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } +, { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800341 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456295, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.799103 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800612 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802477 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443120, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797153 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.798883 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800612 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796695 ] } } , { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } +, { "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437456, 37.800714 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.804427 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800883 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796780 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } , { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791931 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791558 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788505 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.789964 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792202 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.789828 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , @@ -1351,13 +1347,7 @@ , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } -, -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } ] } ] } , @@ -1365,21 +1355,25 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719829 ] } } +, { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719388 ] } } +, { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719388 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719931 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711105 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , @@ -1387,41 +1381,59 @@ , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710018 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711852 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.712021 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } +, { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715026 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711054 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712768 ] } } , +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710731 ] } } +, { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709865 ] } } , +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.707896 ] } } +, { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.707132 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.713838 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.710205 ] } } , +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } +, { "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713210 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.710561 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399175, 37.711580 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.716604 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709848 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713549 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.710884 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } ] } ] } , @@ -1429,427 +1441,517 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.785996 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783011 ] } } -, -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.764490 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } , -{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } +, { "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } +, { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.785894 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423851, 37.779687 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.783197 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777550 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777380 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776532 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423294, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.772869 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772767 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780196 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782977 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783180 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783350 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414067, 37.783672 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782095 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411921, 37.782061 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783384 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } , +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.772801 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.773310 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774565 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772123 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.776210 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.773886 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428873, 37.767780 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767763 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , { "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.770562 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768391 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766254 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428401, 37.761470 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.764846 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759774 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , { "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754786 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425911, 37.761385 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } , { "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753395 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.768459 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.766203 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.768459 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.762624 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.763828 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765304 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762115 ] } } , { "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416985, 37.758925 ] } } -, { "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416685, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761860 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.755940 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758993 ] } } , { "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785351 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.780738 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786640 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.785962 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782841 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784639 ] } } , +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784842 ] } } +, { "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.783994 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400849, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.780671 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409217, 37.777923 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.778618 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775718 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777143 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } , { "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.772530 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.778907 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395313, 37.784520 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776159 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.783282 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394583, 37.779975 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398059, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.781858 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } -, { "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783587 ] } } , { "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396643, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.776532 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.776312 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.777279 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397158, 37.775481 ] } } , { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779280 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764557 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.771156 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766152 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401364, 37.763506 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764863 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.760927 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.758128 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757500 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755872 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.761979 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754888 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.758128 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766661 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.754854 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.762827 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391021, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.762878 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769714 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.764354 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389648, 37.762895 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761402 ] } } , { "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758383 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.755974 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.757263 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757636 ] } } , +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +, { "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391794, 37.757772 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390077, 37.757874 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.757585 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.755159 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387888, 37.755685 ] } } , { "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752038 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } -, { "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743588 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } , +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.737717 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737106 ] } } +, { "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425740, 37.742010 ] } } , { "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.742434 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.741009 ] } } -, { "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424281, 37.739821 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.736207 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740195 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750748 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752309 ] } } , { "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420418, 37.748661 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739923 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.746931 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.748305 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741450 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748475 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , { "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } , +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733712 ] } } +, { "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429645, 37.731387 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426383, 37.730963 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723105 ] } } , +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } +, { "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720135 ] } } , +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } +, { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , { "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735783 ] } } -, -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.732287 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } , { "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733271 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.729130 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.734900 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726398 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726584 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752818 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.752988 ] } } , { "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744708 ] } } , +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747117 ] } } +, { "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.739685 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.743317 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.739855 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738362 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399004, 37.743928 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.741484 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399004, 37.743928 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749018 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398875, 37.736360 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396257, 37.747338 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752275 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749018 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387846, 37.752547 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737208 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.750392 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.736088 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744233 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737581 ] } } , { "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736326 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737208 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.727976 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399390, 37.731829 ] } } , { "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.730369 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.720101 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.402995, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724073 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721085 ] } } , +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721595 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719371 ] } } +, { "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727908 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390335, 37.735409 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728078 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732898 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727908 ] } } , { "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726924 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.724157 ] } } +, { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721119 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720780 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.727060 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753123 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749086 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , { "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } , +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383382, 37.743894 ] } } +, { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385871, 37.736597 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739991 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384112, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737072 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732049 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.735850 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733339 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385614, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727976 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.728214 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374027, 37.730929 ] } } , { "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729130 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725329 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727348 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , @@ -1865,9 +1967,13 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.805580 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808309 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , @@ -1875,131 +1981,173 @@ , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.805105 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 37.805410 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.798577 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792168 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.790710 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794169 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.792100 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.790438 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.804766 ] } } , { "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800171 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799527 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.804952 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411878, 37.804952 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803121 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799730 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794406 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789658 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417285, 37.790167 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.790150 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.795983 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796204 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.796407 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794576 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792677 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412307, 37.791710 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788844 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.802341 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800544 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.800900 ] } } , { "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.798120 ] } } -, { "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.805190 ] } } , +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.803257 ] } } +, { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801256 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798137 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.796729 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.800595 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796238 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793830 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 37.793728 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404411, 37.794474 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792372 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792066 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788539 ] } } , { "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.795729 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795898 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401493, 37.794474 ] } } , { "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.792931 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794271 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789743 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.798967 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396986, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796678 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793728 ] } } , { "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.792524 ] } } , +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.794423 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790845 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.789947 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791083 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792405 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789455 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377203, 37.828175 ] } } , { "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829836 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373469, 37.829819 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829260 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366946, 37.825311 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825192 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371795, 37.816022 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369521, 37.818497 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813056 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819938 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } , { "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } , @@ -2007,12 +2155,6 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } -, -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } -, -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } ] } , diff --git a/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json b/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json index acc884954..961fd2efd 100644 --- a/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json +++ b/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json @@ -5,259 +5,253 @@ "description": "tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json.check.mbtiles -Z11 -z13 -O100 --cluster-densest-as-needed tests/muni/muni.json", -"json": "{\"vector_layers\":[{\"id\":\"muni\",\"description\":\"\",\"minzoom\":11,\"maxzoom\":13,\"fields\":{\"clustered\":\"Boolean\",\"name\":\"String\",\"point_count\":\"Number\",\"point_count_abbreviated\":\"String\",\"sqrt_point_count\":\"Number\"}},{\"id\":\"subway\",\"description\":\"\",\"minzoom\":11,\"maxzoom\":13,\"fields\":{\"clustered\":\"Boolean\",\"name\":\"String\",\"point_count\":\"Number\",\"point_count_abbreviated\":\"String\",\"sqrt_point_count\":\"Number\"}}],\"tilestats\":{\"layerCount\":2,\"layers\":[{\"layer\":\"muni\",\"count\":4592,\"geometry\":\"Point\",\"attributeCount\":5,\"attributes\":[{\"attribute\":\"clustered\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"name\",\"count\":1000,\"type\":\"string\",\"values\":[\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]},{\"attribute\":\"point_count\",\"count\":43,\"type\":\"number\",\"values\":[10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,38,39,4,40,42,45,5,51,54,6,61,7,8,9],\"min\":2,\"max\":61},{\"attribute\":\"point_count_abbreviated\",\"count\":43,\"type\":\"string\",\"values\":[\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\",\"18\",\"19\",\"2\",\"20\",\"21\",\"22\",\"23\",\"24\",\"25\",\"26\",\"27\",\"28\",\"29\",\"3\",\"30\",\"31\",\"32\",\"33\",\"34\",\"35\",\"36\",\"38\",\"39\",\"4\",\"40\",\"42\",\"45\",\"5\",\"51\",\"54\",\"6\",\"61\",\"7\",\"8\",\"9\"]},{\"attribute\":\"sqrt_point_count\",\"count\":43,\"type\":\"number\",\"values\":[1.410000,1.730000,2.000000,2.240000,2.450000,2.650000,2.830000,3.000000,3.160000,3.320000,3.460000,3.610000,3.740000,3.870000,4.000000,4.120000,4.240000,4.360000,4.470000,4.580000,4.690000,4.800000,4.900000,5.000000,5.100000,5.200000,5.290000,5.390000,5.480000,5.570000,5.660000,5.740000,5.830000,5.920000,6.000000,6.160000,6.240000,6.320000,6.480000,6.710000,7.140000,7.350000,7.810000],\"min\":1.41,\"max\":7.81}]},{\"layer\":\"subway\",\"count\":19,\"geometry\":\"Point\",\"attributeCount\":5,\"attributes\":[{\"attribute\":\"clustered\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"name\",\"count\":18,\"type\":\"string\",\"values\":[\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]},{\"attribute\":\"point_count\",\"count\":5,\"type\":\"number\",\"values\":[12,2,3,5,7],\"min\":2,\"max\":12},{\"attribute\":\"point_count_abbreviated\",\"count\":5,\"type\":\"string\",\"values\":[\"12\",\"2\",\"3\",\"5\",\"7\"]},{\"attribute\":\"sqrt_point_count\",\"count\":5,\"type\":\"number\",\"values\":[1.410000,1.730000,2.240000,2.650000,3.460000],\"min\":1.41,\"max\":3.46}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"muni\",\"description\":\"\",\"minzoom\":11,\"maxzoom\":13,\"fields\":{\"clustered\":\"Boolean\",\"name\":\"String\",\"point_count\":\"Number\",\"point_count_abbreviated\":\"String\",\"sqrt_point_count\":\"Number\"}},{\"id\":\"subway\",\"description\":\"\",\"minzoom\":11,\"maxzoom\":13,\"fields\":{\"clustered\":\"Boolean\",\"name\":\"String\",\"point_count\":\"Number\",\"point_count_abbreviated\":\"String\",\"sqrt_point_count\":\"Number\"}}],\"tilestats\":{\"layerCount\":2,\"layers\":[{\"layer\":\"muni\",\"count\":4592,\"geometry\":\"Point\",\"attributeCount\":5,\"attributes\":[{\"attribute\":\"clustered\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"name\",\"count\":1000,\"type\":\"string\",\"values\":[\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]},{\"attribute\":\"point_count\",\"count\":42,\"type\":\"number\",\"values\":[10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,33,34,38,39,4,40,42,43,45,5,51,52,57,6,61,7,8,9],\"min\":2,\"max\":61},{\"attribute\":\"point_count_abbreviated\",\"count\":42,\"type\":\"string\",\"values\":[\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\",\"18\",\"19\",\"2\",\"20\",\"21\",\"22\",\"23\",\"24\",\"25\",\"26\",\"27\",\"28\",\"29\",\"3\",\"30\",\"31\",\"33\",\"34\",\"38\",\"39\",\"4\",\"40\",\"42\",\"43\",\"45\",\"5\",\"51\",\"52\",\"57\",\"6\",\"61\",\"7\",\"8\",\"9\"]},{\"attribute\":\"sqrt_point_count\",\"count\":42,\"type\":\"number\",\"values\":[1.410000,1.730000,2.000000,2.240000,2.450000,2.650000,2.830000,3.000000,3.160000,3.320000,3.460000,3.610000,3.740000,3.870000,4.000000,4.120000,4.240000,4.360000,4.470000,4.580000,4.690000,4.800000,4.900000,5.000000,5.100000,5.200000,5.290000,5.390000,5.480000,5.570000,5.740000,5.830000,6.160000,6.240000,6.320000,6.480000,6.560000,6.710000,7.140000,7.210000,7.550000,7.810000],\"min\":1.41,\"max\":7.81}]},{\"layer\":\"subway\",\"count\":19,\"geometry\":\"Point\",\"attributeCount\":5,\"attributes\":[{\"attribute\":\"clustered\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"name\",\"count\":18,\"type\":\"string\",\"values\":[\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]},{\"attribute\":\"point_count\",\"count\":5,\"type\":\"number\",\"values\":[12,2,3,5,6],\"min\":2,\"max\":12},{\"attribute\":\"point_count_abbreviated\",\"count\":5,\"type\":\"string\",\"values\":[\"12\",\"2\",\"3\",\"5\",\"6\"]},{\"attribute\":\"sqrt_point_count\",\"count\":5,\"type\":\"number\",\"values\":[1.410000,1.730000,2.240000,2.450000,3.460000],\"min\":1.41,\"max\":3.46}]}]}}", "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"coalesced_as_needed\":681,\"feature_count_desired\":703},{\"dropped_by_rate\":2974,\"coalesced_as_needed\":1789,\"feature_count_desired\":755},{\"coalesced_as_needed\":4457,\"feature_count_desired\":856}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4078,\"coalesced_as_needed\":683,\"feature_count_desired\":705},{\"dropped_by_rate\":2980,\"coalesced_as_needed\":1757,\"feature_count_desired\":758},{\"coalesced_as_needed\":4457,\"feature_count_desired\":856}]", "type": "overlay", "version": "2" }, "features": [ { "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" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.525454, 37.830192 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.528458, 37.831785 ] } } ] } ] } , { "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", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.720254 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.482367, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.441726, 37.713804 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.462969, 37.712581 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.711427 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.714075 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.712106 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.713939 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "clustered": true, "point_count": 26, "sqrt_point_count": 5.1, "point_count_abbreviated": "26" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.712140 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.718149 ] } } ] } ] } , { "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", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.826192 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.825175 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.800799 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.798967 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.792931 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.783435 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.503481, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "clustered": true, "point_count": 34, "sqrt_point_count": 5.83, "point_count_abbreviated": "34" }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.772309 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.777329 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "clustered": true, "point_count": 21, "sqrt_point_count": 4.58, "point_count_abbreviated": "21" }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742825 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.507472, 37.759926 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.744046 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "clustered": true, "point_count": 22, "sqrt_point_count": 4.69, "point_count_abbreviated": "22" }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "clustered": true, "point_count": 21, "sqrt_point_count": 4.58, "point_count_abbreviated": "21" }, "geometry": { "type": "Point", "coordinates": [ -122.488246, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.732066 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.741840 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.755889 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.734985 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.783537 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.470651, 37.767492 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.460909, 37.764167 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.460179, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.763285 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.761928 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.778754 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "clustered": true, "point_count": 33, "sqrt_point_count": 5.74, "point_count_abbreviated": "33" }, "geometry": { "type": "Point", "coordinates": [ -122.450738, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.777872 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.775803 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.775905 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.773055 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "clustered": true, "point_count": 25, "sqrt_point_count": 5, "point_count_abbreviated": "25" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "clustered": true, "point_count": 29, "sqrt_point_count": 5.39, "point_count_abbreviated": "29" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "clustered": true, "point_count": 20, "sqrt_point_count": 4.47, "point_count_abbreviated": "20" }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.735935 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.750562 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.467432, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.745811 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.744352 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "clustered": true, "point_count": 29, "sqrt_point_count": 5.39, "point_count_abbreviated": "29" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.740381 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.737564 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.739736 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "clustered": true, "point_count": 21, "sqrt_point_count": 4.58, "point_count_abbreviated": "21" }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "clustered": true, "point_count": 24, "sqrt_point_count": 4.9, "point_count_abbreviated": "24" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.744963 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.729656 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.802121 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720797 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796390 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.730030 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.804189 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.794118 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.424817, 37.797747 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795441 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.798696 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.790421 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "clustered": true, "point_count": 21, "sqrt_point_count": 4.58, "point_count_abbreviated": "21" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.795441 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "clustered": true, "point_count": 31, "sqrt_point_count": 5.57, "point_count_abbreviated": "31" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.796526 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "clustered": true, "point_count": 28, "sqrt_point_count": 5.29, "point_count_abbreviated": "28" }, "geometry": { "type": "Point", "coordinates": [ -122.404819, 37.796187 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "clustered": true, "point_count": 20, "sqrt_point_count": 4.47, "point_count_abbreviated": "20" }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "clustered": true, "point_count": 24, "sqrt_point_count": 4.9, "point_count_abbreviated": "24" }, "geometry": { "type": "Point", "coordinates": [ -122.390656, 37.797814 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.415590, 37.781196 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.803036 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.784452 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.430739, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.772513 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.777940 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.758434 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.763048 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.779195 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.782282 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.756432 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.779093 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.392201, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.753683 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.776855 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.747474 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.393661, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.429366, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.766542 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.749170 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.749442 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.758841 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.738515 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.415590, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751885 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.726669 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.741196 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.742960 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.406363, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.742791 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.724667 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.732779 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "clustered": true, "point_count": 40, "sqrt_point_count": 6.32, "point_count_abbreviated": "40" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.738311 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.745098 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.385678, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "clustered": true, "point_count": 20, "sqrt_point_count": 4.47, "point_count_abbreviated": "20" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.728163 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.382932, 37.737361 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.716927 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.716791 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.718149 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775226 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.775498 ] } } ] } ] } , { "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", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 653, "y": 1582 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.532771, 37.832260 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527664, 37.829057 ] } } -, -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.523844, 37.830904 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.528222, 37.831684 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1584 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.478011, 37.719456 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.477367, 37.719218 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.467775, 37.719643 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.716536 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.483933, 37.716316 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.716129 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.714601 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.714567 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "clustered": true, "point_count": 27, "sqrt_point_count": 5.2, "point_count_abbreviated": "27" }, "geometry": { "type": "Point", "coordinates": [ -122.458313, 37.712598 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712717 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.445481, 37.712581 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.460909, 37.712938 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.711987 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.454858, 37.712293 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.713872 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.442327, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.714958 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.715280 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.710901 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.711410 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } ] } @@ -265,167 +259,167 @@ , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1583 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.464814, 37.788726 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.781654 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.460909, 37.785606 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499683, 37.784978 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.501829, 37.780280 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.505090, 37.780908 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.502923, 37.780365 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779144 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.505262, 37.773123 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.768747 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.506957, 37.759434 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.775532 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.509639, 37.764049 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.488933, 37.781858 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "clustered": true, "point_count": 20, "sqrt_point_count": 4.47, "point_count_abbreviated": "20" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.768306 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "clustered": true, "point_count": 33, "sqrt_point_count": 5.74, "point_count_abbreviated": "33" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "clustered": true, "point_count": 40, "sqrt_point_count": 6.32, "point_count_abbreviated": "40" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.778635 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.477968, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.489641, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "clustered": true, "point_count": 52, "sqrt_point_count": 7.21, "point_count_abbreviated": "52" }, "geometry": { "type": "Point", "coordinates": [ -122.488546, 37.758450 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.757008 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.501421, 37.747474 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.490413, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.740398 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "clustered": true, "point_count": 22, "sqrt_point_count": 4.69, "point_count_abbreviated": "22" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.761945 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.503438, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "clustered": true, "point_count": 22, "sqrt_point_count": 4.69, "point_count_abbreviated": "22" }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.748305 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.729436 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.501142, 37.736173 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502515, 37.726754 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.495627, 37.745047 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.492731, 37.748763 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.489469, 37.744097 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.492044, 37.741314 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.478268, 37.747542 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.748288 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.736139 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.478440, 37.747185 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.742926 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.479556, 37.729826 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.491357, 37.733458 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.479663, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.730861 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.473354, 37.784469 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.726584 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.469385, 37.781959 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "clustered": true, "point_count": 27, "sqrt_point_count": 5.2, "point_count_abbreviated": "27" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.758315 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.773174 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.775566 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.776431 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.462261, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.773886 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.783689 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.777686 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.459986, 37.783503 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.772292 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.461188, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.764032 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.775277 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.758790 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.763048 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "clustered": true, "point_count": 22, "sqrt_point_count": 4.69, "point_count_abbreviated": "22" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.764727 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.467282, 37.758892 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.460008, 37.764099 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.447498, 37.785300 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.461724, 37.756126 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "clustered": true, "point_count": 24, "sqrt_point_count": 4.9, "point_count_abbreviated": "24" }, "geometry": { "type": "Point", "coordinates": [ -122.447412, 37.776872 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.450674, 37.784808 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.439644, 37.786063 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.448227, 37.781145 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.778279 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.786504 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.782892 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.433143, 37.781552 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.777313 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.776397 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.773378 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.436855, 37.771274 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.776651 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.768306 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.768900 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.767407 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.445695, 37.766627 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.763336 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "clustered": true, "point_count": 39, "sqrt_point_count": 6.24, "point_count_abbreviated": "39" }, "geometry": { "type": "Point", "coordinates": [ -122.439988, 37.761504 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.444708, 37.759672 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.759061 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.767865 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.749476 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "clustered": true, "point_count": 39, "sqrt_point_count": 6.24, "point_count_abbreviated": "39" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.757789 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.472990, 37.741840 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.745862 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.466724, 37.740517 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.465308, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "clustered": true, "point_count": 25, "sqrt_point_count": 5, "point_count_abbreviated": "25" }, "geometry": { "type": "Point", "coordinates": [ -122.462261, 37.744199 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.739652 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.458355, 37.744012 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "clustered": true, "point_count": 24, "sqrt_point_count": 4.9, "point_count_abbreviated": "24" }, "geometry": { "type": "Point", "coordinates": [ -122.468247, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.472303, 37.732999 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.467775, 37.719643 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.468290, 37.722138 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.735036 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 37.732287 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.729826 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.460244, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.461960, 37.719965 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.730047 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.454600, 37.729758 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.727857 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748916 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.750460 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.750952 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "clustered": true, "point_count": 43, "sqrt_point_count": 6.56, "point_count_abbreviated": "43" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.745692 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.747423 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.739753 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.741993 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.435868, 37.749221 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.740008 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "clustered": true, "point_count": 29, "sqrt_point_count": 5.39, "point_count_abbreviated": "29" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.722443 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.449214, 37.731642 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.436039, 37.732677 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.452304, 37.723852 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.724480 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "clustered": true, "point_count": 25, "sqrt_point_count": 5, "point_count_abbreviated": "25" }, "geometry": { "type": "Point", "coordinates": [ -122.447240, 37.720933 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.434366, 37.729028 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.438271, 37.729504 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.775396 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.434580, 37.723903 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.430739, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.430568, 37.772835 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.747355 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.430632, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.430975, 37.742706 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.750850 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.729877 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.735477 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.722817 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.717894 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -435,239 +429,297 @@ , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1582 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.833700 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.832175 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.488675, 37.833361 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.478075, 37.799663 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.799798 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.481658, 37.825497 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801884 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.478933, 37.797357 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.468312, 37.802138 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "clustered": true, "point_count": 26, "sqrt_point_count": 5.1, "point_count_abbreviated": "26" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.800731 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "clustered": true, "point_count": 29, "sqrt_point_count": 5.39, "point_count_abbreviated": "29" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.800765 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "clustered": true, "point_count": 20, "sqrt_point_count": 4.47, "point_count_abbreviated": "20" }, "geometry": { "type": "Point", "coordinates": [ -122.438743, 37.799323 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.436898, 37.795475 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.446554, 37.790269 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791931 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.438829, 37.801426 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.438400, 37.791117 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.802443 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.443163, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.435997, 37.796933 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.431448, 37.801426 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.796458 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.799103 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.790337 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.791218 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.791049 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.437069, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.801409 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.796221 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1584 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.426984, 37.719218 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.428250, 37.719269 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.415633, 37.716587 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.716503 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.717419 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.425911, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.710918 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.711818 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.713481 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "clustered": true, "point_count": 32, "sqrt_point_count": 5.66, "point_count_abbreviated": "32" }, "geometry": { "type": "Point", "coordinates": [ -122.406857, 37.712581 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.710663 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.713583 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.389004, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.405849, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.711037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.389369, 37.715399 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1583 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.783689 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "clustered": true, "point_count": 20, "sqrt_point_count": 4.47, "point_count_abbreviated": "20" }, "geometry": { "type": "Point", "coordinates": [ -122.426126, 37.771987 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.410741, 37.787301 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.422478, 37.784707 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 27, "sqrt_point_count": 5.2, "point_count_abbreviated": "27" }, "geometry": { "type": "Point", "coordinates": [ -122.424624, 37.777787 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "clustered": true, "point_count": 27, "sqrt_point_count": 5.2, "point_count_abbreviated": "27" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.783418 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 34, "sqrt_point_count": 5.83, "point_count_abbreviated": "34" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.775243 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.419217, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.423594, 37.784368 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.775396 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.782570 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.777889 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.777211 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "clustered": true, "point_count": 36, "sqrt_point_count": 6, "point_count_abbreviated": "36" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.780433 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.783537 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767492 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "clustered": true, "point_count": 22, "sqrt_point_count": 4.69, "point_count_abbreviated": "22" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.776244 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.772665 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.760113 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.429216, 37.767441 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.417800, 37.765253 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.422822, 37.767034 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.766220 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.428315, 37.758993 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "clustered": true, "point_count": 29, "sqrt_point_count": 5.39, "point_count_abbreviated": "29" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.774327 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "clustered": true, "point_count": 20, "sqrt_point_count": 4.47, "point_count_abbreviated": "20" }, "geometry": { "type": "Point", "coordinates": [ -122.403810, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.773276 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.410247, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.778008 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.392094, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761114 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.781603 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "clustered": true, "point_count": 34, "sqrt_point_count": 5.83, "point_count_abbreviated": "34" }, "geometry": { "type": "Point", "coordinates": [ -122.405655, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.395141, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.775226 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773140 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "clustered": true, "point_count": 24, "sqrt_point_count": 4.9, "point_count_abbreviated": "24" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.768137 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.783689 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.759519 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.758467 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.758247 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.390292, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "clustered": true, "point_count": 22, "sqrt_point_count": 4.69, "point_count_abbreviated": "22" }, "geometry": { "type": "Point", "coordinates": [ -122.393296, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.395377, 37.776770 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.390077, 37.758196 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.392867, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755499 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.404025, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "clustered": true, "point_count": 28, "sqrt_point_count": 5.29, "point_count_abbreviated": "28" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.758247 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.747355 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.389905, 37.768391 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.425654, 37.748560 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.759061 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391794, 37.757772 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.423723, 37.740670 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.759265 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740195 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.757585 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.419131, 37.751478 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755550 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.749238 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.747796 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.751970 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.751003 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.428272, 37.741009 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.745573 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.423851, 37.740228 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.740449 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "clustered": true, "point_count": 25, "sqrt_point_count": 5, "point_count_abbreviated": "25" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.749323 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.732117 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.739923 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.425225, 37.732728 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.424881, 37.732864 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.426813, 37.725973 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.721561 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "clustered": true, "point_count": 28, "sqrt_point_count": 5.29, "point_count_abbreviated": "28" }, "geometry": { "type": "Point", "coordinates": [ -122.421362, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.734374 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.731981 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.418444, 37.726415 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.724107 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.724327 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.745115 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.752038 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.752004 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.749578 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.748746 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.401965, 37.744708 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747117 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.394283, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.406428, 37.740144 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744233 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "clustered": true, "point_count": 39, "sqrt_point_count": 6.24, "point_count_abbreviated": "39" }, "geometry": { "type": "Point", "coordinates": [ -122.399132, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.741790 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.724497 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398875, 37.736360 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.721187 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.750222 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "clustered": true, "point_count": 22, "sqrt_point_count": 4.69, "point_count_abbreviated": "22" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.732253 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.393425, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.722698 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "clustered": true, "point_count": 23, "sqrt_point_count": 4.8, "point_count_abbreviated": "23" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.737378 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.734374 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.742434 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.727399 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "clustered": true, "point_count": 26, "sqrt_point_count": 5.1, "point_count_abbreviated": "26" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.731438 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.721764 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.401879, 37.724497 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.720882 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "clustered": true, "point_count": 22, "sqrt_point_count": 4.69, "point_count_abbreviated": "22" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.732338 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.722613 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.723496 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.385013, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.381580, 37.738481 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "clustered": true, "point_count": 20, "sqrt_point_count": 4.47, "point_count_abbreviated": "20" }, "geometry": { "type": "Point", "coordinates": [ -122.381558, 37.729707 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.717962 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.717911 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.778907 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1582 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "clustered": true, "point_count": 21, "sqrt_point_count": 4.58, "point_count_abbreviated": "21" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.803799 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.426856, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.807207 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.801595 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.799730 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.425354, 37.799442 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.422349, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.417972, 37.801765 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.430053, 37.801578 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.413037, 37.803443 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.801443 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.799815 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.793270 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "clustered": true, "point_count": 52, "sqrt_point_count": 7.21, "point_count_abbreviated": "52" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.795441 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.790879 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.799408 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "clustered": true, "point_count": 23, "sqrt_point_count": 4.8, "point_count_abbreviated": "23" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795186 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.402437, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.799222 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "clustered": true, "point_count": 35, "sqrt_point_count": 5.92, "point_count_abbreviated": "35" }, "geometry": { "type": "Point", "coordinates": [ -122.415354, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.790812 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.793660 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.788573 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.407243, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.793999 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.801222 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "clustered": true, "point_count": 57, "sqrt_point_count": 7.55, "point_count_abbreviated": "57" }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "clustered": true, "point_count": 20, "sqrt_point_count": 4.47, "point_count_abbreviated": "20" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.792643 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377203, 37.828175 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "clustered": true, "point_count": 21, "sqrt_point_count": 4.58, "point_count_abbreviated": "21" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.791676 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.372997, 37.826226 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "clustered": true, "point_count": 54, "sqrt_point_count": 7.35, "point_count_abbreviated": "54" }, "geometry": { "type": "Point", "coordinates": [ -122.392695, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.818599 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.368319, 37.823362 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.370572, 37.815734 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.370529, 37.812666 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.405140, 37.793965 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.380292, 37.805139 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.402737, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.787369 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.400162, 37.790218 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1908, "y": 1582 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } ] } ] } , diff --git a/tests/muni/out/-Z11_-z13_-rf2000.json b/tests/muni/out/-Z11_-z13_-rf2000.json index e4396f49b..353bd7eb8 100644 --- a/tests/muni/out/-Z11_-z13_-rf2000.json +++ b/tests/muni/out/-Z11_-z13_-rf2000.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-rf2000.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":2544},{\"dropped_by_rate\":1546},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":2551},{\"dropped_by_rate\":1538},{}]", "tippecanoe_decisions": "{\"basezoom\":13,\"droprate\":1.45103,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" @@ -20,13 +20,15 @@ , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532363, 37.831819 ] } } , +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +, { "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524381, 37.830362 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529702, 37.821819 ] } } ] } @@ -36,113 +38,103 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } -, { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "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 & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719711 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } -, { "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.719711 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } , { "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 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" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720118 ] } } -, { "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.720050 ] } } , { "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719982 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } -, { "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719711 ] } } , { "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } , +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } +, { "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720457 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } -, { "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 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" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718726 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.719167 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.719711 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.721272 ] } } , @@ -150,7 +142,9 @@ , { "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } , @@ -162,25 +156,15 @@ , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720797 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , @@ -190,85 +174,87 @@ , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.720967 ] } } , +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +, { "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } -, { "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } , +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } +, { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714551 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716316 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } -, -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711189 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.716689 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } , { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715908 ] } } +, { "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.715026 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714992 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470222, 37.714754 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713600 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714075 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.712989 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713532 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714279 ] } } , +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +, { "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467389, 37.712514 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710341 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.712344 ] } } -, { "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711563 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711427 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464900, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711835 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705757 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.710918 ] } } , @@ -276,15 +262,13 @@ , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } -, { "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714822 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.714992 ] } } , { "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.711495 ] } } , @@ -292,57 +276,57 @@ , { "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455974, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } , { "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710273 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706131 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.705961 ] } } , { "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707421 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , { "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" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714143 ] } } -, { "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714075 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710205 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714686 ] } } , { "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.710952 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712853 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452197, 37.708881 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717131 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715705 ] } } , @@ -350,39 +334,39 @@ , { "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713464 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710952 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710952 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.712921 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708949 ] } } -, { "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } , { "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718149 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } , @@ -392,75 +376,75 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , { "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.713226 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708643 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.708983 ] } } , { "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } , +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.712615 ] } } +, { "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } -, { "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713532 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.713396 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715026 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.710748 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.710477 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.708473 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710341 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708507 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708643 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707115 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708372 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.706946 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709322 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709051 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706538 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , { "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } , { "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } , @@ -468,47 +452,47 @@ , { "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712649 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.710205 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710001 ] } } , +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709899 ] } } +, { "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711563 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711427 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711359 ] } } -, -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713193 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.713838 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.712581 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.710578 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716248 ] } } , { "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } , -{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } +{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712276 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712242 ] } } , @@ -518,35 +502,35 @@ , { "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708983 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.708847 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } , { "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.710986 ] } } , { "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710884 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.716995 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713396 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387781, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.712140 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } ] } ] } , @@ -554,183 +538,183 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.833005 ] } } , { "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } , -{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.833683 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } , { "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.833616 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.833073 ] } } +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483268, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.833073 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829446 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } , { "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , { "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.792219 ] } } , -{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807546 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792321 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.806563 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807241 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472110, 37.806732 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803579 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.803477 ] } } , { "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } , { "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800120 ] } } , { "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798425 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803918 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801612 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.801375 ] } } , { "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802087 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802291 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } , { "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } , -{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797713 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801002 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } -, { "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453914, 37.800527 ] } } , +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } +, { "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798154 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799103 ] } } -, -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798052 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.798187 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804325 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.804562 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803613 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.804562 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800392 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.797611 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797136 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.800052 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.799069 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795610 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790693 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790693 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791269 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441812, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439666, 37.800426 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437434, 37.800731 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804868 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805410 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805139 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805274 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805105 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805139 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801070 ] } } , +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } +, { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799713 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.799578 ] } } -, { "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800934 ] } } , +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.800934 ] } } +, { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796797 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } , { "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.797407 ] } } -, { "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796153 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791575 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.791710 ] } } , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788183 ] } } , -{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794898 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795848 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794898 ] } } , @@ -740,69 +724,69 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.792728 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792728 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792185 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.791439 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.789743 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , { "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788929 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779907 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779772 ] } } -, { "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512021, 37.779025 ] } } , { "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510219, 37.774989 ] } } , { "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.773191 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771427 ] } } , +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771699 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.779907 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780043 ] } } , { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779738 ] } } -, { "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779840 ] } } , { "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.779772 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499576, 37.784995 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.779636 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499576, 37.784995 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779466 ] } } , +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +, { "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775226 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.773530 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505670, 37.773564 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771766 ] } } , @@ -810,13 +794,13 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771902 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771970 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } , { "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767356 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509189, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , { "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } , @@ -824,21 +808,21 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762200 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.764032 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762200 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760503 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760503 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760334 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758467 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754905 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756601 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754735 ] } } , @@ -846,47 +830,47 @@ , { "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760639 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779432 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.781637 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.783435 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781739 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781535 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779670 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781671 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781671 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490048, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.781739 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781875 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779873 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781976 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775769 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493052, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.777872 ] } } , { "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } , @@ -894,69 +878,69 @@ , { "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776040 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496314, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771902 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772241 ] } } , { "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776685 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.775973 ] } } , +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776210 ] } } +, { "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } , { "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772513 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785877 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785673 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782044 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.782146 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779907 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482667, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.784113 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782214 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.784113 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782282 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780586 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484469, 37.778042 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776176 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482409, 37.776312 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484212, 37.774311 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774548 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , @@ -966,167 +950,167 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.772852 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } , { "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764540 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495799, 37.762607 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } , +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } +, { "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760808 ] } } , { "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760775 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758875 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760910 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.757008 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757246 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753412 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492623, 37.753446 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761114 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487302, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765117 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480350, 37.765185 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763658 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765524 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765389 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761385 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } -, { "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482753, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753989 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.761453 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.761385 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.761385 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759960 ] } } , { "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.756025 ] } } , { "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754124 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756228 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.755991 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754328 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754124 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750935 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752903 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752835 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750935 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753106 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751003 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506700, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747270 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.753039 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745573 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745404 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753310 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747406 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747542 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747609 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741840 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504640, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741840 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504554, 37.740008 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736003 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504382, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736003 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.741908 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.741807 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.742112 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.742112 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.735358 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735392 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498975, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729724 ] } } , @@ -1134,95 +1118,95 @@ , { "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } , { "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495027, 37.751783 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494855, 37.749578 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "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": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748051 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747745 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744216 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742112 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742248 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742349 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.738379 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494254, 37.738616 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736750 ] } } , +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736546 ] } } +, { "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744521 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } -, -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748254 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748288 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481294, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752699 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481551, 37.748356 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750188 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.748560 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748695 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746456 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.748526 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742655 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742791 ] } } , { "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486100, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.742960 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } , @@ -1232,25 +1216,25 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733763 ] } } , +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733831 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.734136 ] } } -, { "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } , { "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728536 ] } } , @@ -1260,19 +1244,19 @@ , { "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728876 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726975 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727111 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483611, 37.722766 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727178 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } , { "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726907 ] } } , @@ -1280,57 +1264,57 @@ , { "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475715, 37.726873 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720661 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719575 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.784520 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784249 ] } } , { "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , { "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472539, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.784588 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471080, 37.784452 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.782485 ] } } , -{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780687 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780620 ] } } , { "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784792 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784792 ] } } , { "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.784825 ] } } , +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782689 ] } } +, { "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780993 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } -, -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.780789 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776787 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , @@ -1338,57 +1322,57 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773055 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.777194 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777058 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464814, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775192 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773462 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.773327 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464471, 37.784656 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.773327 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785334 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.785165 ] } } , { "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.783096 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.782858 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780891 ] } } +, { "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780857 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.781264 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786894 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786046 ] } } -, -{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785606 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783842 ] } } , { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784113 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783231 ] } } , @@ -1398,187 +1382,187 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781264 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464213, 37.779161 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781535 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.777262 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464213, 37.779161 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776990 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461724, 37.777397 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.775600 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773666 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777058 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773937 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455373, 37.777635 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774378 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774277 ] } } , +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774616 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774751 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765456 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765694 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765796 ] } } , -{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.468934, 37.770545 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.762064 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765999 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765830 ] } } , +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.765694 ] } } +, { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764269 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763896 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763896 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761928 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759282 ] } } -, { "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761792 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759146 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.756364 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.756364 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758196 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467904, 37.758400 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } -, { "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758400 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.756500 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.764167 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.762200 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.764235 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.764235 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762505 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.764371 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.763319 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763794 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766101 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758467 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } , -{ "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.757721 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463527, 37.754905 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.756907 ] } } , { "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786487 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } , { "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } , { "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786691 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787471 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.786928 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448249, 37.784995 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.781841 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782010 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.787335 ] } } , +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.787267 ] } } +, { "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787166 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787369 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.785232 ] } } -, { "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.784385 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784385 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.782146 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782689 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782655 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782316 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778008 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.778076 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778347 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.774989 ] } } , @@ -1586,65 +1570,65 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778754 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778754 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777533 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778754 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775905 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775701 ] } } +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776922 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774005 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.773937 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773937 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771970 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774073 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774412 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774175 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.787980 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.786284 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785300 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.786284 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.785266 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785402 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779500 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783435 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783164 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.785945 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785775 ] } } , @@ -1654,157 +1638,157 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.783978 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783028 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781739 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780925 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779365 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777804 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777669 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.777872 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777872 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.770749 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770918 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.771291 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778144 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.771291 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.775159 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778551 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.778347 ] } } , +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775396 ] } } +, { "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775633 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.771054 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } -, { "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771766 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769324 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.769324 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766406 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769460 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769697 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.764439 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } , +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765931 ] } } +, { "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765728 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764914 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764778 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764778 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769935 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } -, -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770070 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.766949 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.767085 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767153 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767288 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770342 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767492 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.770443 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766135 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766271 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765389 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.764303 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.763014 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.764303 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } , { "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } , +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764507 ] } } +, { "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.761691 ] } } -, { "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760910 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } , { "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760910 ] } } , +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760944 ] } } +, { "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760842 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758773 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761317 ] } } -, { "type": "Feature", "properties": { "name": "320 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.759926 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } , { "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.760367 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.761657 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.757789 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.758400 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756432 ] } } , @@ -1812,160 +1796,162 @@ , { "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.753989 ] } } , -{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , { "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768035 ] } } , { "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.766813 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767288 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.769188 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , { "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767288 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769120 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.769120 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.765592 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762607 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762471 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762403 ] } } , { "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763964 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.763896 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761691 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760639 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760707 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.754057 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.755041 ] } } , { "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755957 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } , -{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755346 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755821 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.754226 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755346 ] } } , { "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.760842 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757789 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Collingwood St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.755957 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.756092 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754396 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.750799 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748797 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748831 ] } } , { "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } -, { "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746727 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473483, 37.745064 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.745030 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , { "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.750697 ] } } , +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } +, { "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749306 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.748831 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } -, -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741501 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743130 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.739193 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737564 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470393, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.737327 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } , { "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.741026 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741094 ] } } , { "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.740924 ] } } , { "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740890 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740958 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740958 ] } } , { "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } , +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740754 ] } } +, { "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740788 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740822 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.737870 ] } } -, { "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739668 ] } } , +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +, { "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.739533 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } , { "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748152 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } -, { "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751478 ] } } , { "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } @@ -1974,139 +1960,139 @@ , { "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.748084 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748152 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747881 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747847 ] } } , { "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.745370 ] } } , +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745302 ] } } +, { "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746388 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745777 ] } } -, -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739940 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740211 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740211 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.740076 ] } } , { "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.743978 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743469 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740890 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455459, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743469 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742859 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736716 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741976 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734476 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732779 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.731795 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734781 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734612 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.734306 ] } } -, { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.734306 ] } } , { "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734917 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.731184 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.731184 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.731048 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731252 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734713 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734849 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468076, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469106, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467561, 37.728265 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.729928 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727246 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727178 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } , { "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.721476 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727178 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } , { "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460780, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733695 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.732609 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730539 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732236 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } , @@ -2114,25 +2100,25 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724938 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724904 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } , { "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720084 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724395 ] } } +, { "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724259 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.723648 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } -, -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.720050 ] } } , @@ -2140,27 +2126,27 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721747 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } , +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.751274 ] } } +, { "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745777 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745302 ] } } , { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } -, { "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.750392 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.751749 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } , @@ -2172,447 +2158,447 @@ , { "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748017 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.746456 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.748084 ] } } +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747134 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } , { "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } , +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746897 ] } } +, { "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } -, -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.741840 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.744487 ] } } , { "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } , { "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.737802 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , { "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } , { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446017, 37.741365 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741094 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738922 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } , { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.752496 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } , -{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.750731 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } , { "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.748526 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.745268 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } , +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751206 ] } } +, { "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.751071 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749645 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752903 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752767 ] } } , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751342 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.751206 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.751274 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751342 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } -, -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749611 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.748695 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745641 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744691 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748152 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743639 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741840 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.741569 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.738582 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738311 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.738243 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738786 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737293 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.738243 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738345 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } , +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } +, { "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731455 ] } } -, { "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } , { "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +, { "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.727620 ] } } , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728400 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735528 ] } } -, { "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445588, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.726024 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725549 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723852 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723037 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , { "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.723105 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719677 ] } } , { "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.721985 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723037 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720933 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720423 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719846 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } -, { "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720593 ] } } +{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720593 ] } } , { "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.722901 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720050 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.734985 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441897, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728808 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727722 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.730369 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731387 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.733933 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.734442 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733492 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.733322 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731319 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.732406 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.725753 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725889 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.725889 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725956 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723445 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.723343 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723580 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.723377 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724667 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.723920 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723920 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433486, 37.726364 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722358 ] } } , +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721612 ] } } +, { "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806359 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807038 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.806732 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.805580 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } , { "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } -, -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805613 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805715 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805783 ] } } , { "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808326 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.807241 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805478 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807851 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807851 ] } } , { "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806495 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410569, 37.806868 ] } } , { "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801680 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801816 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.802019 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800934 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800866 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.805105 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804800 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804800 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804291 ] } } , -{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423787, 37.803376 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804122 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803647 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.803477 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801477 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800324 ] } } , { "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.798594 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422414, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797747 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } , +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } +, { "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.790354 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.790523 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796390 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.790693 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796390 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794898 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793813 ] } } , { "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.793948 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422414, 37.793067 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.794186 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790896 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.792117 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.790421 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } , { "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.790354 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790421 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790421 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.788387 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790625 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804800 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } , { "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } , @@ -2624,57 +2610,57 @@ , { "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799239 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800154 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798289 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799442 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } , { "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799679 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.803782 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802697 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.804969 ] } } -, { "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.799985 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800019 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.800188 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800392 ] } } , { "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.800392 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800392 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797340 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.796492 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } , @@ -2682,177 +2668,177 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794627 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793609 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792863 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.793813 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793813 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790828 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792931 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789540 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789675 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.791982 ] } } , { "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790998 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792049 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415590, 37.791269 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415590, 37.791269 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789133 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.788421 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.790150 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795034 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.795780 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795237 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795983 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796390 ] } } , +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796187 ] } } +, { "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795441 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796390 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795305 ] } } -, { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794423 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794491 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792660 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791710 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } , { "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806088 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807241 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } , +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406020, 37.806631 ] } } +, { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806597 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802358 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } -, -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.801409 ] } } , { "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802969 ] } } , -{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } , { "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800527 ] } } +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801748 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.800663 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.799103 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } , { "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801070 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.797611 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.797814 ] } } , { "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797034 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805003 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802969 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803918 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801409 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.802155 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801273 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.802969 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.799679 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.800595 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798323 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.796729 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796255 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.794627 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.793745 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.793745 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796051 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793406 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792490 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792728 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792592 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } , { "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } , @@ -2860,183 +2846,189 @@ , { "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792117 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791100 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792321 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788387 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789472 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789608 ] } } , { "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.788285 ] } } , { "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } +, { "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795915 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795712 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.794695 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793847 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.794016 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.794830 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794288 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.793135 ] } } , { "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793135 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.793270 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } , { "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.788997 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +, { "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790320 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790286 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.791303 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399154, 37.790896 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } , { "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788929 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797814 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.799069 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797848 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.797204 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793609 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.794491 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.793575 ] } } , { "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.792592 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.792524 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793033 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793474 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793474 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.795000 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.795034 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794457 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794423 ] } } , -{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794220 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } , -{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794220 ] } } , -{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793881 ] } } +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793745 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793474 ] } } , +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793372 ] } } +, { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793202 ] } } +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } , { "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.791914 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791642 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } -, -{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } , { "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.789641 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788522 ] } } , -{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791812 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790828 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790591 ] } } +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } , { "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790591 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790421 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790557 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.789879 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.789201 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.789811 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.793813 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +, { "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } , { "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } , { "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791168 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792151 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , { "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788658 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.790557 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789608 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.789675 ] } } , { "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828192 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828294 ] } } , @@ -3044,117 +3036,115 @@ , { "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } -, { "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373919, 37.823514 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829277 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368941, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } , { "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825311 ] } } , { "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371430, 37.816226 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822362 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819921 ] } } , +{ "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366109, 37.819921 ] } } +, { "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , { "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813140 ] } } -, -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811784 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822226 ] } } , { "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364564, 37.811852 ] } } , { "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364306, 37.811344 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810360 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.786487 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } , { "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786114 ] } } , { "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } , +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786555 ] } } +, { "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.785673 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } , +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.779466 ] } } +, { "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.779636 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781942 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778618 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } -, { "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426963, 37.779195 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } , { "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772038 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.772445 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779365 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777737 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776515 ] } } , { "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.775973 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772920 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772920 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.770952 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } , { "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.774039 ] } } , @@ -3166,7 +3156,7 @@ , { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786894 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.787776 ] } } , { "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.786793 ] } } , @@ -3174,57 +3164,57 @@ , { "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.787233 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.787030 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.785063 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.787233 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783164 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.782282 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.782180 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779975 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780314 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780179 ] } } -, { "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783231 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.782451 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.780382 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780518 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.780382 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780789 ] } } , +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.787437 ] } } +, { "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.786555 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.786420 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.786860 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } -, -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785809 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.784690 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786962 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787200 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784113 ] } } , @@ -3232,11 +3222,11 @@ , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.781061 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780552 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.782078 ] } } , @@ -3246,29 +3236,27 @@ , { "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.780314 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778686 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.777296 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775226 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775226 ] } } -, -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.775498 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } , { "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775498 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778720 ] } } , { "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777601 ] } } , -{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777397 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , @@ -3276,149 +3264,147 @@ , { "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773327 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.772988 ] } } -, { "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774209 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774209 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.779365 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } , { "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778483 ] } } +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778585 ] } } , { "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779093 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.777703 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.779365 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772106 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , { "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772411 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.769460 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.769460 ] } } , { "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431254, 37.767526 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.767662 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767763 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767662 ] } } , { "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } +, { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767763 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } , { "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.766271 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } , { "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.764439 ] } } -, -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } , { "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764710 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769799 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766271 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.764981 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763082 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764642 ] } } , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } , { "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761453 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.761182 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761250 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.757246 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757450 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761385 ] } } , { "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761521 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.761996 ] } } , { "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758739 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.755550 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770477 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.753615 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766678 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768442 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767119 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.766203 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765117 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764981 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.765151 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.765287 ] } } , +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765253 ] } } +, { "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } , { "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763828 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } , { "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770342 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } , @@ -3426,165 +3412,165 @@ , { "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762200 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410140, 37.762946 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764032 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.760639 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.758162 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.758942 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757517 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.755821 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.753412 ] } } -, -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755482 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758976 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.759010 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761657 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761860 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785063 ] } } , { "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783910 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784317 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } , { "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784520 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784792 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784792 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.784147 ] } } -, { "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } , { "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.783876 ] } } , +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783978 ] } } +, { "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.786589 ] } } , { "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781196 ] } } , { "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782756 ] } } , -{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } , { "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781434 ] } } , { "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787505 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787742 ] } } , { "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403188, 37.787708 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786521 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786352 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.784249 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.786080 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786216 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780314 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } , { "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782146 ] } } , +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781807 ] } } +, { "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.777940 ] } } , { "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776855 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778618 ] } } -, { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.772547 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } , { "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.774684 ] } } , { "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771563 ] } } -, { "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.777940 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776142 ] } } , { "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } , { "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.772038 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773666 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.771699 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786555 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785300 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784520 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787403 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.784181 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784283 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782417 ] } } , @@ -3592,123 +3578,123 @@ , { "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779975 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779568 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781807 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784588 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390571, 37.780687 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.779704 ] } } , { "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776312 ] } } , { "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775430 ] } } -, -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.777262 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775226 ] } } , { "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777092 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.776990 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776244 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776312 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.776040 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } , { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773123 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , +{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +, { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775464 ] } } , { "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775294 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.776244 ] } } -, { "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768238 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771156 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768272 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766339 ] } } , { "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } -, { "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764235 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.763285 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.766067 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , { "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764778 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764914 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766271 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763489 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764914 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762200 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } , { "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759621 ] } } +, { "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.757382 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } -, { "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757178 ] } } , -{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755889 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753989 ] } } , @@ -3718,165 +3704,165 @@ , { "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.759655 ] } } , +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759689 ] } } +, { "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } , { "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.759621 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.759587 ] } } -, { "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756160 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754464 ] } } , { "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754328 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757450 ] } } , +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } +, { "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755889 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } -, -{ "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766406 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755753 ] } } , { "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } , { "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393231, 37.762742 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762607 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769697 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769561 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769052 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.762878 ] } } +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } , { "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764371 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764371 ] } } , -{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } , { "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761317 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.762980 ] } } , { "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760096 ] } } , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.759994 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395978, 37.758400 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.760028 ] } } -, -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758366 ] } } , { "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.755957 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.756839 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755448 ] } } , -{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.760571 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } -, { "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.757857 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } , -{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.758060 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755142 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.757585 ] } } , { "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.755007 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755278 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.751647 ] } } , { "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , { "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.749374 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.749170 ] } } -, { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746659 ] } } , +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745200 ] } } +, { "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746761 ] } } , { "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751885 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } -, { "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , { "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743605 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } -, { "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742112 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } , { "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426448, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742112 ] } } , { "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.737734 ] } } , { "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.737123 ] } } +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738888 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742010 ] } } , @@ -3886,27 +3872,27 @@ , { "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.742316 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741060 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.740992 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424130, 37.739736 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739736 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738854 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740211 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736207 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740279 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740211 ] } } , { "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } , @@ -3914,137 +3900,137 @@ , { "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751953 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750731 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752292 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752496 ] } } +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.750663 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.748661 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.747983 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.746252 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.745913 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748288 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752428 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , { "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749238 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748492 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.748152 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.748084 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.739702 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.739092 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744148 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.744284 ] } } , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741433 ] } } , { "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741840 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738922 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.738820 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738922 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738243 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738786 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } , +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +, { "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739770 ] } } -, { "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.735630 ] } } , { "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731829 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733492 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } , { "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730641 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730437 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.731387 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.728706 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728672 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730844 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.728468 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728604 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.728604 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735901 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.734035 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735256 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.728706 ] } } , { "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728740 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.723988 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723105 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722494 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721612 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.721272 ] } } , @@ -4052,15 +4038,15 @@ , { "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724633 ] } } -, -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725074 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724734 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725210 ] } } , @@ -4072,65 +4058,65 @@ , { "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735800 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735053 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735053 ] } } , { "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732609 ] } } , +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } +, { "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732813 ] } } , { "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } -, { "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734713 ] } } , { "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.734713 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.734951 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.734815 ] } } -, { "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729826 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727382 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.725855 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.726398 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , { "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412887, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.724972 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723241 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722834 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752835 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.752530 ] } } , { "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752835 ] } } , @@ -4140,67 +4126,67 @@ , { "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751274 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } , { "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750697 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750731 ] } } , { "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750867 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747134 ] } } , { "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742859 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.739668 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.739533 ] } } , +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738379 ] } } +, { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739872 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737938 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741908 ] } } , { "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.741060 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398810, 37.743911 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738786 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739533 ] } } -, { "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.736343 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752224 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752224 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.752564 ] } } , +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752224 ] } } +, { "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.751274 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.751410 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } -, { "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749849 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.749985 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.747338 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746150 ] } } , { "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752631 ] } } , @@ -4208,99 +4194,99 @@ , { "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396922, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.736309 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737225 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.736207 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394519, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736614 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394519, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740687 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.744046 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742723 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742451 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740890 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737496 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736343 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739329 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738922 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740110 ] } } , { "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737225 ] } } -, { "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737632 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.732406 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.732338 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.732406 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.733220 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733254 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404819, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } , { "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727450 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727314 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734170 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727450 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.735256 ] } } , -{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731659 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.731829 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.727314 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727722 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727518 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727722 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.729079 ] } } , { "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726126 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } , @@ -4308,97 +4294,97 @@ , { "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726907 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.720423 ] } } , +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +, { "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724191 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } , { "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723648 ] } } -, { "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.723275 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720661 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721476 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.721544 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721476 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.731795 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395377, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727925 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392716, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735155 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 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" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734340 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.734103 ] } } , +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734001 ] } } +, { "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.733899 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733831 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } -, { "type": "Feature", "properties": { "name": "3rd St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735392 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.731659 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392030, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729283 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.726941 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.725312 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.725312 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.722494 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , @@ -4406,237 +4392,237 @@ , { "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722358 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722358 ] } } , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.721408 ] } } , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755617 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.750324 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749102 ] } } , { "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748933 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745777 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } , { "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742519 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.743911 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } , { "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739872 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737598 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.737021 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732066 ] } } , { "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732575 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386065, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } , +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } +, { "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.729554 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.729520 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } , { "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733356 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733288 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } , { "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734374 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377181, 37.732711 ] } } , { "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.730776 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730573 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727993 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726092 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.728231 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726024 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375894, 37.731998 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730912 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731998 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373748, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730233 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , { "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728740 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367911, 37.725312 ] } } , { "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365422, 37.727925 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360959, 37.727348 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716316 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } -, { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715908 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717131 ] } } +, { "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718149 ] } } , { "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } -, { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , { "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } , { "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } -, { "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.716995 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762607 ] } } -, { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.788692 ] } } -, { "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.792999 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793135 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775226 ] } } , +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, { "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784181 ] } } +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784283 ] } } ] } ] } , @@ -4664,18 +4650,20 @@ , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527235, 37.832582 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831870 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527192, 37.832480 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527235, 37.832582 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527664, 37.829057 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , { "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825023 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830362 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830480 ] } } , { "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831412 ] } } , +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831328 ] } } +, { "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529681, 37.821819 ] } } ] } ] } @@ -4684,24 +4672,18 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.718743 ] } } -, { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718709 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719897 ] } } -, { "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483203, 37.718607 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719643 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479599, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719694 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719694 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719541 ] } } @@ -4716,20 +4698,20 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465222, 37.719761 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.719948 ] } } -, { "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719694 ] } } , { "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } , +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } @@ -4738,12 +4720,8 @@ , { "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439086, 37.719150 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } -, { "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716774 ] } } -, { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } , { "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716231 ] } } @@ -4756,9 +4734,9 @@ , { "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716333 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485263, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , { "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711206 ] } } , @@ -4766,9 +4744,9 @@ , { "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.715009 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477067, 37.717691 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } , { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716706 ] } } , @@ -4792,7 +4770,7 @@ , { "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.715213 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.715009 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715009 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } , @@ -4806,7 +4784,7 @@ , { "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.714126 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713583 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713753 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714058 ] } } , @@ -4820,7 +4798,7 @@ , { "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.714398 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710901 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469985, 37.714432 ] } } , @@ -4828,12 +4806,12 @@ , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.714330 ] } } , +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469256, 37.712480 ] } } +, { "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467368, 37.712514 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710358 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714194 ] } } -, { "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712327 ] } } , { "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711563 ] } } @@ -4842,24 +4820,24 @@ , { "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711410 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711818 ] } } , { "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708728 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705757 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463377, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714228 ] } } , { "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713176 ] } } , +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711274 ] } } +, { "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462261, 37.710901 ] } } , { "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713142 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.711291 ] } } -, { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.718455 ] } } @@ -4886,11 +4864,11 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713210 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713210 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , @@ -4904,17 +4882,17 @@ , { "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707404 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.716248 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.716248 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713311 ] } } , @@ -4930,7 +4908,7 @@ , { "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } , @@ -4938,7 +4916,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708660 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.712853 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452197, 37.708881 ] } } , @@ -4948,7 +4926,7 @@ , { "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716503 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716706 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.716452 ] } } , @@ -4970,7 +4948,7 @@ , { "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438228, 37.711156 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711071 ] } } , { "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } , @@ -4978,7 +4956,7 @@ , { "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.717674 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.716095 ] } } , { "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } , @@ -4988,15 +4966,15 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.714024 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710935 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710935 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713328 ] } } , { "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713311 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432950, 37.712921 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712938 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.712836 ] } } , @@ -5014,6 +4992,8 @@ , { "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } +, { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } , { "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710561 ] } } @@ -5024,13 +5004,17 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788471 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789184 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788404 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788980 ] } } , +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } +, { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788098 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440374, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789336 ] } } , @@ -5056,15 +5040,15 @@ , { "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.509983, 37.773208 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.773208 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773649 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771410 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509382, 37.771342 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771682 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779992 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509382, 37.771342 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.779907 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780043 ] } } , { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505519, 37.782129 ] } } , @@ -5088,19 +5072,19 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506249, 37.779042 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775243 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505949, 37.775209 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775345 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775243 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773276 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.775481 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507751, 37.773412 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771580 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505820, 37.773530 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771478 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771580 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771580 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505670, 37.773564 ] } } , { "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503524, 37.771732 ] } } , @@ -5114,15 +5098,15 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500327, 37.771868 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.771783 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771885 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497966, 37.771970 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.771783 ] } } , { "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510455, 37.767373 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509189, 37.760350 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , { "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } , @@ -5132,11 +5116,11 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764049 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.764032 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762200 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508137, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760350 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760367 ] } } , @@ -5144,7 +5128,7 @@ , { "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505820, 37.760486 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760384 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760486 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506034, 37.760350 ] } } , @@ -5154,7 +5138,7 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505734, 37.756771 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505605, 37.754922 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505562, 37.756601 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505434, 37.754752 ] } } , @@ -5172,15 +5156,15 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.781654 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.783418 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781790 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.783418 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492516, 37.781603 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492216, 37.781739 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781993 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493503, 37.781502 ] } } , @@ -5198,25 +5182,25 @@ , { "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492280, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781654 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783791 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490499, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781654 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779721 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490048, 37.780772 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779958 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779721 ] } } , { "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783655 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.781739 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781892 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779856 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781993 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.780009 ] } } , @@ -5234,15 +5218,15 @@ , { "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776024 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496336, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771919 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.771970 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772089 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772224 ] } } , { "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492001, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492044, 37.775888 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776668 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491829, 37.776024 ] } } , @@ -5256,19 +5240,19 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772394 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487495, 37.772462 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772513 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487495, 37.772462 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785860 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785690 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485092, 37.783994 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.783808 ] } } , @@ -5282,9 +5266,9 @@ , { "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.780247 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.779924 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } , @@ -5292,23 +5276,23 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482688, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 37.784113 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481401, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478440, 37.784232 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 37.784113 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.782214 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479470, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477496, 37.782282 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479255, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476251, 37.780365 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.780586 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778279 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.778042 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } , @@ -5318,13 +5302,13 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482409, 37.776329 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484212, 37.774311 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774548 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772597 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484062, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483804, 37.772513 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484062, 37.772343 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.776431 ] } } , @@ -5358,15 +5342,15 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488267, 37.765032 ] } } , +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760995 ] } } +, { "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.760825 ] } } , { "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495649, 37.760758 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759129 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493203, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495520, 37.758892 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492945, 37.761063 ] } } , @@ -5376,7 +5360,7 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.757025 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755397 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753429 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495263, 37.755159 ] } } , @@ -5384,11 +5368,11 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489727, 37.761199 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492645, 37.753446 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761165 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761063 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761097 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } , @@ -5398,7 +5382,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753582 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487302, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486122, 37.765134 ] } } , @@ -5410,13 +5394,13 @@ , { "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.763133 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479684, 37.765423 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763675 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } , @@ -5428,19 +5412,19 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765372 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765202 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763675 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761300 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.761368 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.761453 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.761334 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761606 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.761453 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761538 ] } } , @@ -5450,29 +5434,29 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754040 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483847, 37.753972 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753870 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.761538 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.761453 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.761657 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.757755 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761606 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477109, 37.761402 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477067, 37.761742 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761775 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477109, 37.761402 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761572 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760147 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476938, 37.759943 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757857 ] } } , @@ -5482,7 +5466,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753972 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476680, 37.756211 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479599, 37.754328 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476423, 37.755991 ] } } , @@ -5490,9 +5474,9 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507493, 37.750918 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752784 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753022 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507493, 37.750918 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505562, 37.752886 ] } } , @@ -5500,13 +5484,13 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753123 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751189 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751020 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749153 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749323 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747338 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749153 ] } } , { "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506700, 37.745353 ] } } , @@ -5518,7 +5502,7 @@ , { "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745421 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502301, 37.753022 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504790, 37.745421 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } , @@ -5526,17 +5510,17 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498009, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503030, 37.747423 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499812, 37.747542 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497623, 37.747626 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504833, 37.743741 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504704, 37.741857 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504661, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504489, 37.741823 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504704, 37.741857 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504532, 37.741688 ] } } , @@ -5544,7 +5528,7 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505305, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504404, 37.739821 ] } } , { "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736020 ] } } , @@ -5552,7 +5536,7 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502344, 37.741925 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502601, 37.741807 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500455, 37.741891 ] } } , @@ -5566,11 +5550,11 @@ , { "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504919, 37.735392 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.735358 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735375 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499297, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735002 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498953, 37.734120 ] } } , @@ -5584,7 +5568,7 @@ , { "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726381 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753327 ] } } , @@ -5606,9 +5590,9 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.747762 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493331, 37.747830 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494791, 37.746082 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493331, 37.747830 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } , @@ -5620,37 +5604,37 @@ , { "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494662, 37.744216 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487667, 37.746150 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } , +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494533, 37.742349 ] } } +, { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.742129 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742299 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742265 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } -, { "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742349 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.738379 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494276, 37.738616 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494147, 37.736767 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736529 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.744267 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744504 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487538, 37.742638 ] } } , @@ -5660,7 +5644,7 @@ , { "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740771 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.738769 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748271 ] } } , @@ -5672,11 +5656,11 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481315, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481573, 37.748356 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750188 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479169, 37.748543 ] } } , @@ -5690,11 +5674,11 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742536 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742655 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742672 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742774 ] } } , @@ -5708,9 +5692,9 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741280 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475607, 37.743011 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496765, 37.733899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741280 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733593 ] } } , @@ -5726,17 +5710,17 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493675, 37.733356 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493846, 37.732015 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493846, 37.732015 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493503, 37.730335 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733950 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733848 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489254, 37.734238 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733950 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485821, 37.734120 ] } } , @@ -5744,9 +5728,9 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483933, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482173, 37.734289 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482173, 37.734289 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , @@ -5770,17 +5754,17 @@ , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484877, 37.724225 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726975 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.727111 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483633, 37.722749 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721832 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483203, 37.718607 ] } } , @@ -5800,9 +5784,9 @@ , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480886, 37.720678 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719626 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479599, 37.719592 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , @@ -5810,7 +5794,7 @@ , { "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473247, 37.784503 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784249 ] } } , { "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784368 ] } } , @@ -5818,7 +5802,7 @@ , { "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470844, 37.784588 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , { "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471101, 37.784452 ] } } , @@ -5854,21 +5838,21 @@ , { "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468998, 37.782790 ] } } , +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468355, 37.782689 ] } } +, { "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780976 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.782892 ] } } -, -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466466, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.782892 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 37.780772 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.776770 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776787 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.776939 ] } } , @@ -5880,17 +5864,17 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474191, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773038 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773208 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.777194 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.777058 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465909, 37.775176 ] } } , @@ -5898,11 +5882,11 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469814, 37.773174 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773242 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773344 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773479 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.773462 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } , @@ -5912,33 +5896,33 @@ , { "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784707 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785351 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462561, 37.785182 ] } } , { "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785690 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783214 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.785555 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462561, 37.783079 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464321, 37.782858 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.781128 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.780891 ] } } +, { "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780874 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461145, 37.781044 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460930, 37.781281 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786029 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.786911 ] } } , { "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.785656 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783893 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.785589 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783859 ] } } , @@ -5948,11 +5932,11 @@ , { "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454493, 37.784113 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454751, 37.783961 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783961 ] } } , -{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783248 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.783740 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783248 ] } } , @@ -5966,11 +5950,11 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456424, 37.781264 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464235, 37.779161 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781518 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464235, 37.779161 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461960, 37.777262 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.777279 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776973 ] } } , @@ -5978,17 +5962,17 @@ , { "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775447 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461746, 37.777397 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463806, 37.775600 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464106, 37.773666 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773734 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773937 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } , @@ -5996,7 +5980,7 @@ , { "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 37.777143 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777550 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.777635 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774361 ] } } , @@ -6004,17 +5988,17 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454836, 37.774802 ] } } , +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.774599 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774751 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454150, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } -, { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765456 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765609 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765711 ] } } , @@ -6022,47 +6006,47 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765643 ] } } , -{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.468913, 37.770528 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470329, 37.762064 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770426 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468698, 37.765745 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765999 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.765847 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765847 ] } } , +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466509, 37.765677 ] } } +, { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764286 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766084 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764099 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.763794 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764099 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763913 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466681, 37.762216 ] } } -, { "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.762030 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762081 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761911 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761911 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759299 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761911 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758111 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.761843 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761945 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.761792 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.759163 ] } } , @@ -6076,16 +6060,16 @@ , { "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.754107 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761945 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761979 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470071, 37.758298 ] } } , +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.758196 ] } } +, { "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.758400 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } -, { "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.760232 ] } } , { "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758535 ] } } @@ -6102,29 +6086,29 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765948 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461874, 37.766050 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } , { "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464278, 37.764082 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464020, 37.764150 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.762200 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462840, 37.762386 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.764218 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462003, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.764218 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762725 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460501, 37.762658 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762793 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762522 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457948, 37.765982 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762793 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.764354 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457626, 37.766050 ] } } , @@ -6134,19 +6118,19 @@ , { "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763302 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763709 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763811 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766203 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764354 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766084 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758467 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } , { "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.758417 ] } } , -{ "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.757721 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463119, 37.758688 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } , @@ -6164,17 +6148,17 @@ , { "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755295 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } , { "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453506, 37.786335 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453506, 37.784113 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784198 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } , { "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450244, 37.786708 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787488 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.786911 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } , @@ -6208,13 +6192,13 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.782146 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782129 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.782502 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.782706 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782672 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782316 ] } } , @@ -6222,11 +6206,11 @@ , { "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.777753 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451360, 37.778008 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.778093 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449644, 37.778347 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.775413 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778228 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.775362 ] } } , @@ -6240,7 +6224,7 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450845, 37.773378 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.773242 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } , @@ -6254,7 +6238,7 @@ , { "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778754 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.777567 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775888 ] } } , @@ -6262,9 +6246,9 @@ , { "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775701 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778907 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443593, 37.779110 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } , { "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776770 ] } } , @@ -6272,15 +6256,15 @@ , { "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.776804 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774022 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446039, 37.774056 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.773937 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446511, 37.773920 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445610, 37.771953 ] } } , @@ -6294,23 +6278,23 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787980 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439988, 37.786284 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785148 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439988, 37.786284 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439730, 37.785300 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.785249 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785521 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.785402 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.783842 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.779500 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783418 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439559, 37.783180 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439516, 37.783164 ] } } , @@ -6320,11 +6304,11 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780501 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438743, 37.780535 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437155, 37.780874 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434795, 37.785945 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785792 ] } } , @@ -6338,7 +6322,7 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.784724 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.783978 ] } } , @@ -6356,9 +6340,9 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431941, 37.779856 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779280 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777313 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779348 ] } } , @@ -6368,9 +6352,9 @@ , { "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777720 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777855 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.777855 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438400, 37.777686 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777855 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438056, 37.776770 ] } } , @@ -6378,7 +6362,7 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441490, 37.774565 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440546, 37.770749 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774497 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440245, 37.770918 ] } } , @@ -6386,17 +6370,17 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773038 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437370, 37.771291 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773174 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435181, 37.778144 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437370, 37.771291 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434924, 37.778262 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.775142 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775209 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } , @@ -6404,9 +6388,9 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431748, 37.778347 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775616 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775413 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775616 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.771054 ] } } , @@ -6418,25 +6402,25 @@ , { "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769324 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.768323 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.769307 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453334, 37.768238 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.766440 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.766406 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450759, 37.769443 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769884 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448657, 37.769714 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450416, 37.768527 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450202, 37.766830 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765541 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765372 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , @@ -6448,9 +6432,9 @@ , { "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765881 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449901, 37.765931 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.765745 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.765864 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.764897 ] } } , @@ -6462,19 +6446,19 @@ , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.763133 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769935 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445395, 37.770087 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769002 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.766932 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.767102 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767136 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.767305 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } , @@ -6484,15 +6468,15 @@ , { "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.767509 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.770426 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767339 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447927, 37.766152 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766288 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765406 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447755, 37.765219 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.764286 ] } } , @@ -6524,14 +6508,14 @@ , { "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761843 ] } } , +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760927 ] } } +, { "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760859 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446125, 37.758942 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758790 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758654 ] } } -, { "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761945 ] } } @@ -6542,19 +6526,19 @@ , { "type": "Feature", "properties": { "name": "341 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.759909 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444236, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } , { "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.760350 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.761640 ] } } , { "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.758383 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.757789 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758213 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.758400 ] } } , { "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444150, 37.757500 ] } } , @@ -6576,7 +6560,7 @@ , { "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438271, 37.766695 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437198, 37.767288 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438142, 37.766847 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } , @@ -6590,7 +6574,7 @@ , { "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.767271 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.767424 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.767611 ] } } , { "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.769392 ] } } , @@ -6600,29 +6584,31 @@ , { "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767509 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.765609 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.762301 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762624 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762454 ] } } , { "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762539 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762386 ] } } , { "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.762522 ] } } , { "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764490 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763947 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.763913 ] } } , { "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761606 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761708 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.761894 ] } } , @@ -6630,29 +6616,29 @@ , { "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438271, 37.761589 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438142, 37.760758 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.760622 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437284, 37.760690 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438142, 37.760758 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759027 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.754040 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440417, 37.755041 ] } } , { "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.754006 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757399 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437842, 37.757551 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755974 ] } } , -{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439001, 37.755363 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755804 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438743, 37.753514 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439001, 37.755363 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.754209 ] } } , { "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435138, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434924, 37.760825 ] } } , { "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.760842 ] } } , @@ -6666,39 +6652,39 @@ , { "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.757636 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434452, 37.755957 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.756092 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754413 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472947, 37.750528 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750799 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472045, 37.752682 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748797 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750799 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748661 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748831 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748712 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.748593 ] } } , { "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746744 ] } } , { "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745098 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473505, 37.745064 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470286, 37.745030 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745081 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468355, 37.749035 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467668, 37.749086 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752716 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466466, 37.752886 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , @@ -6706,12 +6692,12 @@ , { "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.750850 ] } } , +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.749153 ] } } +, { "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.749323 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.748831 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } -, { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475436, 37.743113 ] } } @@ -6720,15 +6706,15 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473419, 37.743198 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741484 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470286, 37.743402 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743113 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470157, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471187, 37.741518 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741484 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741518 ] } } , @@ -6746,7 +6732,7 @@ , { "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.741162 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.741009 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741094 ] } } , { "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465994, 37.740924 ] } } , @@ -6754,7 +6740,7 @@ , { "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740873 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740941 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } , { "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740941 ] } } , @@ -6764,32 +6750,32 @@ , { "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465522, 37.741145 ] } } , +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465909, 37.740754 ] } } +, { "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.740839 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465780, 37.740788 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465737, 37.740839 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.738090 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.738090 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738056 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.737853 ] } } -, { "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.739618 ] } } , { "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.739668 ] } } , { "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.739448 ] } } , +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +, { "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465265, 37.739550 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751121 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750952 ] } } , { "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748169 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.751698 ] } } -, { "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , { "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.751495 ] } } @@ -6804,6 +6790,8 @@ , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748169 ] } } , +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748169 ] } } +, { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747898 ] } } @@ -6814,7 +6802,7 @@ , { "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457111, 37.747813 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.745370 ] } } , @@ -6828,11 +6816,11 @@ , { "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745692 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463677, 37.739923 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.740398 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740093 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460072, 37.739380 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740228 ] } } , { "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.740195 ] } } , @@ -6846,9 +6834,9 @@ , { "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456510, 37.741620 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.743469 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740873 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455480, 37.743113 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.743469 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742859 ] } } , @@ -6864,20 +6852,20 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474492, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732456 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.732779 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474792, 37.732117 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.731812 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.732015 ] } } , { "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735036 ] } } , +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734781 ] } } +, { "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734612 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.734289 ] } } -, { "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734289 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.734306 ] } } @@ -6886,7 +6874,7 @@ , { "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471445, 37.734815 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731167 ] } } , @@ -6894,17 +6882,17 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474706, 37.730963 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474363, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474535, 37.731031 ] } } , { "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.730980 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731235 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731268 ] } } , { "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.731336 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734696 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734849 ] } } , @@ -6912,11 +6900,11 @@ , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733203 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.733152 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469471, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469471, 37.729945 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469084, 37.729979 ] } } , @@ -6930,11 +6918,11 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721187 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721187 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721187 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721170 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721255 ] } } , @@ -6948,7 +6936,7 @@ , { "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472947, 37.721595 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.720220 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719694 ] } } , @@ -6962,7 +6950,7 @@ , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719558 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466466, 37.727195 ] } } , @@ -6970,15 +6958,15 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465222, 37.719761 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 37.732287 ] } } , { "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459643, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460544, 37.735307 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } , @@ -6992,7 +6980,7 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732083 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457755, 37.732236 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.730691 ] } } , @@ -7006,7 +6994,7 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724955 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464063, 37.726007 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461402, 37.724904 ] } } , @@ -7014,7 +7002,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463462, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462132, 37.720050 ] } } , { "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461102, 37.720084 ] } } , @@ -7028,7 +7016,7 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.723631 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723428 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454193, 37.723428 ] } } , @@ -7042,15 +7030,15 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.721764 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719965 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.720101 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455909, 37.720135 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719965 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454965, 37.720067 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.751291 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.751274 ] } } , { "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749255 ] } } , @@ -7058,9 +7046,9 @@ , { "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745319 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.745760 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.745624 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745319 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745319 ] } } , @@ -7090,7 +7078,7 @@ , { "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.746456 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447755, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.748068 ] } } , @@ -7098,19 +7086,19 @@ , { "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444193, 37.747151 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.747033 ] } } , { "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748220 ] } } , +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746880 ] } } +, { "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.746693 ] } } , { "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443035, 37.745183 ] } } -, -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.746676 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.743062 ] } } , @@ -7126,11 +7114,11 @@ , { "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738192 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451489, 37.737819 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737717 ] } } , { "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740195 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.740042 ] } } , { "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739244 ] } } , @@ -7138,11 +7126,11 @@ , { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446017, 37.741382 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.448013, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741077 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.739889 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446039, 37.738922 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } , @@ -7152,15 +7140,15 @@ , { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442563, 37.752479 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.736614 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752292 ] } } , -{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441661, 37.750748 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752411 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442605, 37.749255 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.440546, 37.751020 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.750969 ] } } , @@ -7170,11 +7158,11 @@ , { "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.751121 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.748509 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438357, 37.751105 ] } } , { "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.746931 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.745251 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441404, 37.745200 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , @@ -7188,21 +7176,21 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.752767 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752886 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.752072 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.752767 ] } } , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.751359 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.751189 ] } } , { "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749798 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749595 ] } } , @@ -7214,25 +7202,25 @@ , { "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435825, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.746252 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435868, 37.745641 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744674 ] } } , +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433894, 37.748203 ] } } +, { "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748152 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.748068 ] } } -, { "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748271 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.743622 ] } } , { "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437241, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744640 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.743249 ] } } , @@ -7240,7 +7228,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435524, 37.741620 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435739, 37.741586 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435353, 37.741603 ] } } , @@ -7250,9 +7238,9 @@ , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.738667 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436297, 37.738294 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740025 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } , @@ -7268,7 +7256,7 @@ , { "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.739991 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.738328 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.736071 ] } } , @@ -7276,31 +7264,31 @@ , { "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.734187 ] } } , +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } +, { "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.731472 ] } } -, { "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.731608 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.731455 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.731472 ] } } , { "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , { "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729945 ] } } , +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +, { "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.727620 ] } } , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451274, 37.728417 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731608 ] } } -, { "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731404 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448528, 37.731472 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.728485 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735511 ] } } , @@ -7308,7 +7296,7 @@ , { "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733950 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445567, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734561 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.731625 ] } } , @@ -7316,15 +7304,15 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.731472 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.726041 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.731506 ] } } , { "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.725532 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453206, 37.723190 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.724090 ] } } , { "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.723529 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.723462 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723852 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723088 ] } } , @@ -7360,49 +7348,49 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721051 ] } } , +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447112, 37.720984 ] } } +, { "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720950 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720950 ] } } , { "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.720865 ] } } -, { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.720848 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446210, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.720831 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.720678 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720440 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447197, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.719999 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719388 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } -, { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } , +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } +, { "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720559 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } , -{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720610 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446554, 37.720610 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720610 ] } } , { "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722749 ] } } , @@ -7426,9 +7414,9 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729028 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.728994 ] } } , @@ -7444,7 +7432,7 @@ , { "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.733831 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734459 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.733916 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.734459 ] } } , @@ -7462,17 +7450,17 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433250, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441618, 37.726822 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.729588 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.725753 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442348, 37.725872 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442391, 37.725889 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442434, 37.725685 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725668 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441189, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725973 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441318, 37.723360 ] } } , @@ -7480,21 +7468,21 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438657, 37.723665 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.723563 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439086, 37.719150 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.723360 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435181, 37.724310 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.724582 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724650 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724718 ] } } , @@ -7516,9 +7504,9 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434280, 37.722409 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432950, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , @@ -7532,16 +7520,18 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773751 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430761, 37.772139 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } +, { "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431276, 37.767526 ] } } , { "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767662 ] } } @@ -7552,17 +7542,21 @@ , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765677 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } +, { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746676 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } , +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745183 ] } } +, { "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } , { "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , @@ -7570,7 +7564,7 @@ , { "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735630 ] } } , { "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.731829 ] } } , @@ -7586,8 +7580,6 @@ , { "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } -, { "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722511 ] } } @@ -7598,8 +7590,6 @@ , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478740, 37.717962 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477067, 37.717691 ] } } -, { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } , { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } @@ -7622,15 +7612,11 @@ , { "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.717674 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435224, 37.762624 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458613, 37.748339 ] } } ] } ] } , @@ -7640,11 +7626,11 @@ , { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831802 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832955 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508824, 37.833022 ] } } , { "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833870 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502129, 37.836446 ] } } , { "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493804, 37.833700 ] } } , @@ -7656,7 +7642,7 @@ , { "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829429 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484019, 37.829514 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.806665 ] } } , @@ -7666,33 +7652,33 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788454 ] } } , -{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482259, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.792083 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792304 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807563 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806563 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807224 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807461 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806071 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472110, 37.806732 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806919 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.803596 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.803477 ] } } , { "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801019 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801595 ] } } , { "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.799832 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462218, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } , { "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800120 ] } } , @@ -7706,7 +7692,7 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.801765 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456725, 37.801612 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456768, 37.801629 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456381, 37.801375 ] } } , @@ -7714,17 +7700,17 @@ , { "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803766 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802070 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802291 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.801731 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.801426 ] } } , -{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.801731 ] } } , { "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.800188 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797882 ] } } , { "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.797730 ] } } , @@ -7742,15 +7728,15 @@ , { "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800341 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.799103 ] } } , -{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799120 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } , { "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799222 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.798052 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.798170 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.804342 ] } } , @@ -7758,7 +7744,7 @@ , { "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443893, 37.804545 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443678, 37.803630 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803766 ] } } , { "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.803647 ] } } , @@ -7776,7 +7762,7 @@ , { "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798408 ] } } , -{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445695, 37.797594 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797153 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800612 ] } } , @@ -7786,7 +7772,7 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.800052 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.799069 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.798883 ] } } , @@ -7794,21 +7780,21 @@ , { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.795898 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795593 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790710 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447369, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789184 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790710 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788963 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444365, 37.791269 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444236, 37.791185 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441833, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , @@ -7820,9 +7806,9 @@ , { "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437456, 37.800714 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.804427 ] } } , @@ -7834,23 +7820,23 @@ , { "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802748 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804868 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.805122 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.801155 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800883 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801087 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.799713 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799696 ] } } , @@ -7860,25 +7846,25 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796780 ] } } +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.800934 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435482, 37.797391 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796780 ] } } , { "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.797119 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , { "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } , { "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.796170 ] } } , { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796729 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791558 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } , @@ -7888,15 +7874,15 @@ , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791931 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440374, 37.788183 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.791761 ] } } , -{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788505 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437027, 37.795932 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794881 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436855, 37.795848 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794915 ] } } , @@ -7910,7 +7896,7 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433379, 37.792660 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.792745 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792711 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792202 ] } } , @@ -7918,7 +7904,7 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789319 ] } } , @@ -7928,7 +7914,7 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.789828 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.789743 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , @@ -7936,13 +7922,13 @@ , { "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.790099 ] } } -, -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787488 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.786911 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } , @@ -7958,6 +7944,8 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787980 ] } } , +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +, { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } @@ -7966,16 +7954,12 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } -, { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } -, { "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } ] } ] } @@ -7984,13 +7968,19 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719711 ] } } +, { "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719829 ] } } , +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, { "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718845 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } , @@ -7998,12 +7988,10 @@ , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718777 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719388 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.719592 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } +, { "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719388 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719049 ] } } @@ -8016,11 +8004,13 @@ , { "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } , +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719931 ] } } +, { "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432950, 37.712921 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712938 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712836 ] } } , @@ -8032,9 +8022,9 @@ , { "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } , @@ -8050,9 +8040,9 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , { "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } , @@ -8064,7 +8054,7 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708983 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.708660 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.708983 ] } } , { "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419946, 37.712972 ] } } , @@ -8072,7 +8062,7 @@ , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711852 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710018 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711716 ] } } , @@ -8090,11 +8080,11 @@ , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718030 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718030 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715026 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.713243 ] } } , @@ -8104,7 +8094,7 @@ , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710969 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711054 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712768 ] } } , @@ -8112,7 +8102,7 @@ , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710731 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.710493 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411492, 37.710578 ] } } , { "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710358 ] } } , @@ -8120,7 +8110,7 @@ , { "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.708490 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.708643 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419946, 37.708372 ] } } , @@ -8130,15 +8120,15 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415526, 37.706929 ] } } , +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +, { "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } , { "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706521 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709305 ] } } -, { "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.709051 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717759 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708253 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , @@ -8148,7 +8138,7 @@ , { "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405441, 37.717215 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } , { "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.717046 ] } } , @@ -8166,15 +8156,15 @@ , { "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } , +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709899 ] } } +, { "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711563 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.711444 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711342 ] } } -, { "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713210 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406728, 37.713855 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405140, 37.712564 ] } } , @@ -8188,11 +8178,11 @@ , { "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716469 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716265 ] } } , { "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , @@ -8200,21 +8190,21 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } , -{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714228 ] } } +{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.712361 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } , { "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712361 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712225 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712293 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } , @@ -8246,7 +8236,7 @@ , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.709526 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404840, 37.709085 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } , @@ -8258,9 +8248,9 @@ , { "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.711240 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.717012 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.717012 ] } } , { "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387803, 37.714109 ] } } , @@ -8268,11 +8258,11 @@ , { "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.712785 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.712123 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } ] } ] } , @@ -8286,7 +8276,7 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.783978 ] } } , @@ -8308,39 +8298,37 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775616 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } , { "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767509 ] } } , { "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.764490 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.763947 ] } } -, { "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.760961 ] } } , { "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432005, 37.751376 ] } } , +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +, { "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } , { "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748271 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.738175 ] } } -, { "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734578 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } , +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +, { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } , { "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } , @@ -8354,13 +8342,13 @@ , { "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.788319 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.788692 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , @@ -8372,12 +8360,16 @@ , { "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } +, { "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } , { "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.789014 ] } } , { "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.788488 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +, { "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.789251 ] } } , { "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788946 ] } } @@ -8388,6 +8380,10 @@ , { "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789268 ] } } , +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788539 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789201 ] } } +, { "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , { "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } @@ -8404,17 +8400,17 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.784842 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.785894 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427800, 37.785029 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.782129 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.781756 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787200 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.786114 ] } } , { "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785046 ] } } , @@ -8422,14 +8418,14 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } , +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.786572 ] } } +, { "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421319, 37.786097 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785673 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.785606 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421319, 37.784910 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784673 ] } } @@ -8440,22 +8436,22 @@ , { "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.782400 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423851, 37.779687 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423680, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423851, 37.779687 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.779636 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.782502 ] } } , +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.781942 ] } } +, { "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780942 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780094 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778856 ] } } -, { "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } @@ -8466,7 +8462,7 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776057 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426941, 37.779178 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776024 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } , @@ -8476,11 +8472,11 @@ , { "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773751 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430761, 37.772139 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } , @@ -8488,7 +8484,7 @@ , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777550 ] } } +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779382 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776532 ] } } , @@ -8498,15 +8494,15 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772937 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772937 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773819 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772767 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.772631 ] } } , { "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.774022 ] } } , @@ -8534,7 +8530,7 @@ , { "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419646, 37.785012 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.784961 ] } } , { "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } , @@ -8546,11 +8542,11 @@ , { "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783180 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.782282 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780196 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.782180 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779992 ] } } , @@ -8564,7 +8560,7 @@ , { "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781688 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417200, 37.782451 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } , @@ -8582,17 +8578,17 @@ , { "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787352 ] } } , +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.787454 ] } } +, { "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.786555 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.786420 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786759 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.784707 ] } } , @@ -8604,7 +8600,7 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786029 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } , { "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786097 ] } } , @@ -8618,7 +8614,7 @@ , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781824 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.781078 ] } } , @@ -8638,7 +8634,7 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.777279 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } , @@ -8648,7 +8644,7 @@ , { "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775209 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.775243 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } , { "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , @@ -8662,11 +8658,11 @@ , { "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.777584 ] } } , -{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416298, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777397 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.774972 ] } } +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , @@ -8674,8 +8670,6 @@ , { "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774955 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774921 ] } } -, { "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773327 ] } } , { "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.772988 ] } } @@ -8684,21 +8678,21 @@ , { "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774565 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.774209 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417285, 37.774294 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.774209 ] } } , { "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.773327 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } , { "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.778788 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.778500 ] } } +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414753, 37.778568 ] } } , { "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414367, 37.779093 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777228 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.777703 ] } } , @@ -8708,13 +8702,13 @@ , { "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.779348 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776125 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.776210 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.775108 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772123 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.771580 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , { "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.770850 ] } } , @@ -8726,33 +8720,35 @@ , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429688, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } , { "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429388, 37.769409 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.769460 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.769460 ] } } , { "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431276, 37.767526 ] } } , { "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767662 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767814 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767763 ] } } , { "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767780 ] } } , +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767662 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } , { "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769782 ] } } , { "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427242, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428873, 37.767780 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428615, 37.767831 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428873, 37.767780 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767373 ] } } , { "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.766271 ] } } , @@ -8760,9 +8756,9 @@ , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765677 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.764456 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } , { "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } , @@ -8770,12 +8766,12 @@ , { "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764727 ] } } +, { "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428486, 37.762810 ] } } , { "type": "Feature", "properties": { "name": "Church St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428486, 37.762810 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.769799 ] } } -, { "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.767848 ] } } @@ -8784,7 +8780,7 @@ , { "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764710 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766254 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.764846 ] } } , @@ -8800,7 +8796,7 @@ , { "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761368 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761182 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.761233 ] } } , { "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , @@ -8810,43 +8806,43 @@ , { "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428057, 37.757382 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426856, 37.757229 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426984, 37.757450 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754786 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426813, 37.756432 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.754599 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425911, 37.761385 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423637, 37.761521 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } , { "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762013 ] } } +, { "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421491, 37.759859 ] } } -, { "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758264 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.758739 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755550 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753395 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419775, 37.770460 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.753598 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768204 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419775, 37.767136 ] } } , @@ -8854,11 +8850,11 @@ , { "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.766203 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764998 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765134 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.765134 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } , @@ -8876,11 +8872,11 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.763828 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762115 ] } } , { "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412264, 37.770359 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , @@ -8902,17 +8898,17 @@ , { "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764015 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.762929 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763133 ] } } , { "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760656 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417071, 37.761877 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.758162 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416985, 37.758925 ] } } , @@ -8920,17 +8916,17 @@ , { "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756584 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.755159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.755821 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.753429 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.755159 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.754277 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755482 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416685, 37.755719 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758976 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758993 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } , @@ -8942,17 +8938,17 @@ , { "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759333 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.755940 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.787454 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786335 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785351 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785063 ] } } , @@ -8960,11 +8956,11 @@ , { "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784062 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.784317 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } , { "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.784520 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407887, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785419 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } , @@ -8996,17 +8992,17 @@ , { "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785521 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405741, 37.785860 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782841 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784334 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408659, 37.783384 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782841 ] } } , { "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.783503 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.780738 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.782095 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781179 ] } } , @@ -9014,7 +9010,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782723 ] } } , -{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.782638 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } , { "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404754, 37.781451 ] } } , @@ -9032,21 +9028,21 @@ , { "type": "Feature", "properties": { "name": "3rd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786369 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786029 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786335 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784639 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.784249 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.786080 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786199 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784842 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.786080 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.784944 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783961 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.783994 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.783978 ] } } , @@ -9072,21 +9068,21 @@ , { "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.772530 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773530 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407072, 37.772326 ] } } , +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +, { "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.774701 ] } } , { "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771546 ] } } -, { "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.771325 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.778907 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778941 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.779314 ] } } , { "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776159 ] } } , @@ -9098,11 +9094,11 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773666 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.771699 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398102, 37.786555 ] } } , @@ -9112,7 +9108,7 @@ , { "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.785317 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , @@ -9120,7 +9116,7 @@ , { "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.784181 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395012, 37.784096 ] } } +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395055, 37.784283 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.782706 ] } } , @@ -9134,7 +9130,7 @@ , { "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779551 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } , @@ -9142,29 +9138,29 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784588 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781824 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.781858 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390678, 37.780620 ] } } , +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390549, 37.780704 ] } } +, { "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783587 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779789 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389863, 37.779721 ] } } , { "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.779619 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389541, 37.779602 ] } } -, { "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.778296 ] } } , { "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.776532 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397158, 37.775481 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.776312 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775430 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397158, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.777279 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775226 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777414 ] } } , @@ -9174,23 +9170,23 @@ , { "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.777007 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.777007 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776363 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776244 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393897, 37.776312 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776142 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776057 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } , @@ -9200,12 +9196,12 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392437, 37.778975 ] } } , +{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778093 ] } } +, { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.775481 ] } } , { "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775277 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.776244 ] } } -, { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } , { "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.772954 ] } } @@ -9228,19 +9224,19 @@ , { "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764727 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.764218 ] } } , { "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763234 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764557 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.763302 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763234 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770223 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.770155 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769748 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403295, 37.769884 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.768730 ] } } , @@ -9250,37 +9246,37 @@ , { "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766152 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766322 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766118 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401621, 37.766050 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , { "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.764761 ] } } , { "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.764778 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764761 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.764897 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764761 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766220 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } , { "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764981 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401364, 37.763506 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764931 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.762200 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761843 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.759112 ] } } , @@ -9316,12 +9312,12 @@ , { "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } , +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.759672 ] } } +, { "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } , { "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.759621 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.759587 ] } } -, { "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.758501 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.760927 ] } } @@ -9330,11 +9326,11 @@ , { "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.758128 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758009 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.756160 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403896, 37.754481 ] } } , @@ -9342,9 +9338,9 @@ , { "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.754328 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.757433 ] } } , @@ -9352,13 +9348,13 @@ , { "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757297 ] } } , +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757263 ] } } +, { "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398832, 37.755906 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754888 ] } } -, -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.754854 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755770 ] } } , { "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.766389 ] } } , @@ -9368,7 +9364,7 @@ , { "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762420 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } , { "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762691 ] } } , @@ -9378,7 +9374,7 @@ , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391021, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766763 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766864 ] } } , { "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769714 ] } } , @@ -9396,7 +9392,7 @@ , { "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.764354 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.764422 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764388 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } , @@ -9414,16 +9410,16 @@ , { "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398360, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761402 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.760130 ] } } , +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.760079 ] } } +, { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759977 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.760028 ] } } -, { "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758383 ] } } , { "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } @@ -9444,11 +9440,11 @@ , { "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.757263 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757636 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395699, 37.756822 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395785, 37.755448 ] } } , -{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755499 ] } } , { "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.753734 ] } } , @@ -9458,9 +9454,9 @@ , { "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388446, 37.760792 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.760588 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } , @@ -9470,13 +9466,13 @@ , { "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } , -{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388232, 37.758077 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , { "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.758009 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.755159 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.757585 ] } } , { "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.755007 ] } } , @@ -9484,39 +9480,39 @@ , { "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755278 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } , { "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.751800 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } , { "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427328, 37.751766 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.749391 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.749391 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746676 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } , +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745183 ] } } +, { "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746778 ] } } , { "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425268, 37.751783 ] } } -, { "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751902 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } , { "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , @@ -9528,11 +9524,11 @@ , { "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742129 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } , { "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742095 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426448, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742095 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742163 ] } } , @@ -9560,9 +9556,9 @@ , { "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.741009 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741009 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741043 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740839 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741009 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.742434 ] } } , @@ -9582,13 +9578,13 @@ , { "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738871 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.737446 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740195 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.736207 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.740296 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740195 ] } } , { "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.752173 ] } } , @@ -9600,19 +9596,19 @@ , { "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.751953 ] } } , +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750748 ] } } +, { "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.750273 ] } } , { "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.750663 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752309 ] } } -, { "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752479 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752275 ] } } , { "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750646 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420418, 37.748661 ] } } , @@ -9622,19 +9618,19 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.748237 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.746931 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746744 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.746235 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.746642 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.745913 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.748305 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.745081 ] } } , { "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.752564 ] } } , @@ -9644,7 +9640,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , { "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749221 ] } } , @@ -9652,7 +9648,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752682 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748475 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } , @@ -9662,20 +9658,20 @@ , { "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.748101 ] } } , +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +, { "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.748203 ] } } , +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748339 ] } } +, { "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.748424 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739923 ] } } -, { "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.739702 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739312 ] } } @@ -9684,16 +9680,16 @@ , { "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.739092 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.744131 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } , +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.744284 ] } } +, { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741450 ] } } , { "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.741823 ] } } -, { "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.738820 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.738922 ] } } @@ -9702,7 +9698,7 @@ , { "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.738871 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.738260 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738803 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } , @@ -9720,7 +9716,7 @@ , { "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735630 ] } } , { "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.731829 ] } } , @@ -9728,7 +9724,7 @@ , { "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733712 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733339 ] } } , @@ -9750,45 +9746,45 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.728604 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.728587 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.425911, 37.734035 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424409, 37.735901 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.735240 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735070 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426083, 37.728553 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728706 ] } } , { "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421920, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.728893 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.728740 ] } } , -{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422478, 37.728757 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.728893 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.723988 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723105 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722511 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720135 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429903, 37.722375 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429452, 37.720101 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721612 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } , { "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721357 ] } } , @@ -9800,19 +9796,19 @@ , { "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720508 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.720406 ] } } , +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, { "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724650 ] } } -, { "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725074 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724734 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725193 ] } } , @@ -9822,7 +9818,7 @@ , { "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426040, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.719354 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , @@ -9830,17 +9826,17 @@ , { "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420118, 37.735138 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.735053 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734968 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.735053 ] } } , { "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418916, 37.732609 ] } } , { "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416942, 37.734832 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416728, 37.734968 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416942, 37.734832 ] } } , { "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } , @@ -9852,7 +9848,7 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.728825 ] } } , { "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734730 ] } } , @@ -9862,23 +9858,23 @@ , { "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.735783 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.734934 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.734798 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } , { "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.733610 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.734900 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729843 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735002 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727399 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725855 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730963 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.725973 ] } } , @@ -9906,11 +9902,11 @@ , { "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.722698 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722834 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718760 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753056 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409174, 37.752513 ] } } , @@ -9928,7 +9924,7 @@ , { "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753056 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406085, 37.751630 ] } } , @@ -9940,17 +9936,17 @@ , { "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750714 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750714 ] } } , { "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750850 ] } } , { "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750748 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.746405 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747117 ] } } , { "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.742859 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.743317 ] } } , @@ -9972,17 +9968,17 @@ , { "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } , +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403338, 37.741874 ] } } +, { "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741891 ] } } , { "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.741077 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398810, 37.743894 ] } } -, { "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.741484 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.738786 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.739125 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.738786 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739550 ] } } , @@ -9990,33 +9986,33 @@ , { "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752275 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752241 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398403, 37.752377 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752241 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.752564 ] } } , { "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } , +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752241 ] } } +, { "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.751257 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.751427 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.751105 ] } } -, { "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.749866 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.752682 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396214, 37.750002 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.752682 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396257, 37.747338 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.747253 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745964 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746167 ] } } , { "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752614 ] } } , @@ -10026,7 +10022,7 @@ , { "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396922, 37.742774 ] } } , { "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } , @@ -10034,17 +10030,17 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.736309 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737208 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737157 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.736207 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.736088 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736835 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.736088 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736631 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744233 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.736088 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390463, 37.744029 ] } } , @@ -10052,11 +10048,11 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742977 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742723 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742672 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742706 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , @@ -10074,7 +10070,7 @@ , { "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736326 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736292 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391622, 37.736258 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.739312 ] } } , @@ -10082,9 +10078,9 @@ , { "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740296 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.739906 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740110 ] } } , @@ -10106,7 +10102,7 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.733203 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.733271 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404797, 37.732999 ] } } , @@ -10114,7 +10110,7 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405355, 37.732049 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } , @@ -10122,9 +10118,9 @@ , { "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.727993 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.727433 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727314 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.734578 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.727433 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.734170 ] } } , @@ -10132,7 +10128,7 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } , -{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731659 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399390, 37.731829 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , @@ -10140,11 +10136,11 @@ , { "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" }, "geometry": { "type": "Point", "coordinates": [ -122.403553, 37.727331 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403638, 37.727518 ] } } , { "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727739 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727637 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.728078 ] } } , @@ -10158,9 +10154,9 @@ , { "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.726534 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.726669 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } , @@ -10172,11 +10168,11 @@ , { "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726788 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.726907 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.720101 ] } } , @@ -10184,15 +10180,15 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.402995, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724073 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402694, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402093, 37.724174 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724073 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723648 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723869 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.723648 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.723546 ] } } , { "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.723292 ] } } , @@ -10202,7 +10198,7 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721595 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.721544 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400935, 37.721476 ] } } , @@ -10234,20 +10230,20 @@ , { "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735070 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734357 ] } } -, { "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734340 ] } } , +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734357 ] } } +, { "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.734086 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390807, 37.734136 ] } } , +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734018 ] } } +, { "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE" }, "geometry": { "type": "Point", "coordinates": [ -122.390893, 37.733899 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.733848 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732270 ] } } -, { "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732253 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391493, 37.732253 ] } } @@ -10256,12 +10252,12 @@ , { "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732202 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390335, 37.735409 ] } } +, { "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734493 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390163, 37.731693 ] } } -, { "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390034, 37.731642 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.732915 ] } } @@ -10270,11 +10266,11 @@ , { "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729368 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.729215 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392609, 37.729283 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729266 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729232 ] } } , @@ -10286,7 +10282,7 @@ , { "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397931, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725668 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726924 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725481 ] } } , @@ -10300,7 +10296,7 @@ , { "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397373, 37.722715 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.722477 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721119 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720780 ] } } , @@ -10318,9 +10314,9 @@ , { "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395399, 37.722630 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722375 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722375 ] } } , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } , @@ -10332,9 +10328,9 @@ , { "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720339 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } , @@ -10348,7 +10344,7 @@ , { "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387502, 37.750341 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749086 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } , @@ -10358,7 +10354,7 @@ , { "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.746048 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386644, 37.745760 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } , @@ -10366,17 +10362,17 @@ , { "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742536 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743792 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383382, 37.743894 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383168, 37.743690 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743792 ] } } , { "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384627, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740907 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384498, 37.740687 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385871, 37.736597 ] } } , @@ -10398,7 +10394,7 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.735850 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.737004 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732049 ] } } , @@ -10416,33 +10412,33 @@ , { "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383039, 37.734680 ] } } , +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733033 ] } } +, { "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733339 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386558, 37.729554 ] } } -, { "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.729520 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385614, 37.727348 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730148 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730148 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384584, 37.728366 ] } } , +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +, { "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 & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733356 ] } } -, { "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381837, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733288 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732490 ] } } , @@ -10460,7 +10456,7 @@ , { "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730573 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381365, 37.729385 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727976 ] } } , @@ -10468,15 +10464,15 @@ , { "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386773, 37.726109 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.728214 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386687, 37.726041 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375615, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375872, 37.731981 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374027, 37.730929 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375615, 37.731998 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730250 ] } } , @@ -10490,38 +10486,42 @@ , { "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725329 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728757 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367933, 37.725329 ] } } , { "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365186, 37.728587 ] } } , { "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365444, 37.727908 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718030 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717759 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , { "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407715, 37.717283 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788709 ] } } -, { "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775226 ] } } @@ -10530,14 +10530,14 @@ , { "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } , +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, { "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778669 ] } } , { "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778534 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.767187 ] } } -, { "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784300 ] } } , { "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784198 ] } } @@ -10548,37 +10548,37 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.805122 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.805122 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.801155 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } , { "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.792745 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792711 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790099 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806342 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807021 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.805580 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420676, 37.806715 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.806682 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , { "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805630 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805698 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805800 ] } } , @@ -10594,21 +10594,21 @@ , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808072 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.806563 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806512 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.807834 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807800 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.807834 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807597 ] } } , { "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805732 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806495 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410591, 37.806868 ] } } , @@ -10626,15 +10626,15 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426555, 37.802104 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.802019 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428057, 37.800934 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427371, 37.798052 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.800849 ] } } , { "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798204 ] } } , @@ -10644,16 +10644,16 @@ , { "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425096, 37.805037 ] } } , +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425354, 37.804834 ] } } +, { "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804817 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804291 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423980, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.804105 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } , -{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423787, 37.803376 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } @@ -10662,17 +10662,17 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424624, 37.802579 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803647 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423379, 37.803477 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801477 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801629 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.798577 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424409, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.798459 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.798577 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423894, 37.798645 ] } } , @@ -10688,15 +10688,15 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } , +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793355 ] } } +, { "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793575 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.792541 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } -, { "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792168 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.790354 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.790523 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } , @@ -10720,7 +10720,7 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.422993, 37.794169 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.793965 ] } } , @@ -10732,19 +10732,19 @@ , { "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.793694 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.793491 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.794186 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.793185 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426126, 37.790879 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.791897 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.791151 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.792100 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790438 ] } } , @@ -10754,17 +10754,17 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421148, 37.791507 ] } } , +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +, { "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.790438 ] } } , { "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790642 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } -, { "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804783 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.802833 ] } } , @@ -10772,7 +10772,7 @@ , { "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.804511 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415311, 37.805257 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.805325 ] } } , { "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } , @@ -10798,30 +10798,30 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798306 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } , { "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 37.799442 ] } } , { "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417500, 37.799323 ] } } , +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799527 ] } } +, { "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.799679 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.804952 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803782 ] } } -, { "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.803409 ] } } , { "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } , +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.802596 ] } } +, { "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802680 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.801833 ] } } -, { "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411878, 37.804952 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } @@ -10830,9 +10830,9 @@ , { "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.801188 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803121 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801222 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799730 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803121 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.800900 ] } } , @@ -10848,21 +10848,21 @@ , { "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410634, 37.800188 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800375 ] } } , { "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.800375 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.798238 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800409 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.797340 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.795322 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.796339 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } , @@ -10878,9 +10878,9 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.794542 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793626 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795576 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794847 ] } } , @@ -10888,19 +10888,19 @@ , { "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417886, 37.792745 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.793813 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793830 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416298, 37.792948 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.791710 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.792948 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.790812 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.791710 ] } } , { "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } , { "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.790693 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420375, 37.789540 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789658 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789353 ] } } , @@ -10914,9 +10914,9 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415612, 37.791286 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.791083 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415612, 37.791286 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } , @@ -10928,7 +10928,7 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.795034 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.795780 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.795983 ] } } , @@ -10936,11 +10936,11 @@ , { "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.794033 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.793168 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.793355 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796204 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796373 ] } } , @@ -10976,11 +10976,11 @@ , { "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.788319 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412307, 37.791710 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.788692 ] } } , { "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791863 ] } } , @@ -10990,7 +10990,7 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808224 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407887, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806088 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807258 ] } } , @@ -10998,9 +10998,9 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806783 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806614 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406020, 37.806631 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806614 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } , @@ -11008,7 +11008,7 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.801409 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803562 ] } } , @@ -11016,17 +11016,17 @@ , { "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802714 ] } } , -{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.802664 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } , { "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800544 ] } } +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801765 ] } } , { "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.800358 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.799205 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.799103 ] } } , @@ -11034,7 +11034,7 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.797187 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407329, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.796780 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797594 ] } } , @@ -11056,7 +11056,7 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.805190 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805020 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403252, 37.803918 ] } } , @@ -11064,7 +11064,7 @@ , { "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801409 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.803257 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.802155 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.802952 ] } } , @@ -11074,9 +11074,9 @@ , { "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798137 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797391 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402351, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.800595 ] } } , @@ -11088,7 +11088,7 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796238 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.794627 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , @@ -11096,13 +11096,13 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.792880 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.792948 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 37.793728 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793423 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407587, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793423 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } , @@ -11136,11 +11136,11 @@ , { "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791083 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.792304 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.790133 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.790150 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , @@ -11150,7 +11150,7 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407029, 37.789472 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789591 ] } } , { "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.788302 ] } } , @@ -11158,15 +11158,15 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.789811 ] } } , +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } +, { "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795898 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.795729 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.794678 ] } } -, { "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793830 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401493, 37.794474 ] } } , @@ -11176,7 +11176,7 @@ , { "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794169 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794271 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } , @@ -11184,7 +11184,7 @@ , { "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.793135 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793287 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.793118 ] } } , { "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399862, 37.793135 ] } } , @@ -11200,9 +11200,11 @@ , { "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.788488 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788607 ] } } +, { "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400849, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400935, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.792287 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790286 ] } } , @@ -11212,7 +11214,7 @@ , { "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.791303 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } , { "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399132, 37.790896 ] } } , @@ -11238,7 +11240,7 @@ , { "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396986, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793626 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.794491 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.793592 ] } } , @@ -11248,23 +11250,25 @@ , { "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.792609 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397716, 37.792541 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793525 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.793982 ] } } , { "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792982 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793016 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.793491 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396171, 37.793474 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796678 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394454, 37.795000 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393553, 37.795034 ] } } , @@ -11272,17 +11276,17 @@ , { "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793592 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793626 ] } } , { "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794457 ] } } , @@ -11294,7 +11298,7 @@ , { "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793694 ] } } +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393725, 37.793762 ] } } , { "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793898 ] } } , @@ -11308,13 +11312,13 @@ , { "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.792999 ] } } , +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398403, 37.791897 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791914 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791642 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396944, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396686, 37.791744 ] } } , { "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789251 ] } } , @@ -11322,29 +11326,29 @@ , { "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789489 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788522 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791829 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790845 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } , { "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393553, 37.790608 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790608 ] } } +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.790761 ] } } , { "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.790574 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.790405 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393296, 37.790540 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.789947 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.789879 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394454, 37.789930 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789184 ] } } , { "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394283, 37.789794 ] } } , @@ -11356,9 +11360,9 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392309, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792677 ] } } +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792711 ] } } , { "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392395, 37.791337 ] } } , @@ -11388,29 +11392,29 @@ , { "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377203, 37.828175 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829836 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } , { "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373469, 37.829819 ] } } , +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +, { "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828311 ] } } , { "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376301, 37.825463 ] } } , { "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374971, 37.823243 ] } } -, { "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } , { "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373898, 37.823514 ] } } , { "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371452, 37.824599 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829260 ] } } , { "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825192 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368920, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369907, 37.825226 ] } } , { "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366946, 37.825311 ] } } , @@ -11418,21 +11422,21 @@ , { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369521, 37.818497 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821938 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822379 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819938 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819989 ] } } , +{ "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366130, 37.819921 ] } } +, { "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , { "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813056 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813124 ] } } -, { "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370851, 37.813140 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811801 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369864, 37.812039 ] } } , { "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } , @@ -11468,18 +11472,24 @@ , { "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787352 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.787454 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786759 ] } } , +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } +, { "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } , +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } +, { "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.787454 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "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": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } @@ -11494,28 +11504,18 @@ , { "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.787708 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "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": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788692 ] } } -, { "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.792999 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.793152 ] } } -, { "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793135 ] } } ] } ] } @@ -11537,6 +11537,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } ] } ] } , diff --git a/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json b/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json index b41d06073..acf7ffcc2 100644 --- a/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json +++ b/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-rf2000_-Bg.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":2546},{},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":2544},{},{}]", "tippecanoe_decisions": "{\"basezoom\":12,\"droprate\":2.1055,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" @@ -26,7 +26,7 @@ , { "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524381, 37.830362 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } ] } @@ -36,6 +36,8 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } +, { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } @@ -44,7 +46,7 @@ , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , @@ -52,15 +54,15 @@ , { "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } , { "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , @@ -70,11 +72,9 @@ , { "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } -, { "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , @@ -82,9 +82,9 @@ , { "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719982 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } , @@ -96,7 +96,7 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720967 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } , @@ -122,11 +122,11 @@ , { "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" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720084 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.718658 ] } } , @@ -142,16 +142,16 @@ , { "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } -, { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } @@ -164,17 +164,19 @@ , { "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.720933 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719371 ] } } , +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } +, { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720797 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } , @@ -182,6 +184,8 @@ , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, { "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } @@ -190,11 +194,11 @@ , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714551 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714754 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716316 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } , @@ -212,7 +216,7 @@ , { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } , @@ -220,7 +224,7 @@ , { "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.715026 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } , @@ -228,9 +232,9 @@ , { "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714075 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713600 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714075 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.713091 ] } } , @@ -254,11 +258,11 @@ , { "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464900, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705757 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714347 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714347 ] } } , { "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } , @@ -266,17 +270,17 @@ , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718149 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715841 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714822 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.711495 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713193 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.713973 ] } } , @@ -292,11 +296,11 @@ , { "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706131 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707421 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , @@ -304,7 +308,7 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , @@ -334,15 +338,15 @@ , { "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715705 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714754 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715128 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , { "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } , @@ -358,11 +362,11 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.712921 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.712140 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } , { "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.709492 ] } } , @@ -376,19 +380,19 @@ , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710544 ] } } , { "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } , { "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , { "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.713226 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } , @@ -396,9 +400,9 @@ , { "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } , @@ -414,15 +418,15 @@ , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715026 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712717 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712174 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.710748 ] } } , @@ -434,7 +438,7 @@ , { "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708643 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707693 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708372 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.706946 ] } } , @@ -442,9 +446,9 @@ , { "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.706300 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709051 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709322 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , { "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } , @@ -452,19 +456,19 @@ , { "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } , { "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712649 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.408938, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710001 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.710205 ] } } , { "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711427 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711563 ] } } , { "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711359 ] } } , @@ -472,7 +476,7 @@ , { "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.712581 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.710578 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } , @@ -500,7 +504,7 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.712208 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } , @@ -510,7 +514,7 @@ , { "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708983 ] } } , @@ -536,7 +540,7 @@ , { "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.712140 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } ] } ] } , @@ -546,11 +550,11 @@ , { "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.833005 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.833683 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.833616 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } , { "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833141 ] } } , @@ -566,9 +570,9 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807546 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480950, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.806563 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807241 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } , @@ -580,15 +584,15 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801002 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.799815 ] } } , { "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798425 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } , { "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803918 ] } } , { "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801612 ] } } , @@ -596,15 +600,15 @@ , { "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802087 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802291 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } , -{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801070 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } , @@ -612,17 +616,17 @@ , { "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798154 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799103 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } , { "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804325 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798052 ] } } , { "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.804562 ] } } , @@ -630,21 +634,21 @@ , { "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801545 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800392 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } , { "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797136 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.800052 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.800052 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } , @@ -660,7 +664,7 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791269 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791168 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800120 ] } } , @@ -668,7 +672,7 @@ , { "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437434, 37.800731 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } , { "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } , @@ -686,7 +690,7 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801070 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } , @@ -710,21 +714,21 @@ , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791575 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788183 ] } } , { "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795848 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794898 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.793813 ] } } , @@ -742,13 +746,13 @@ , { "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.789845 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , { "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788929 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } , { "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779907 ] } } , @@ -760,7 +764,7 @@ , { "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771427 ] } } , @@ -772,7 +776,7 @@ , { "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779840 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779738 ] } } , { "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.779772 ] } } , @@ -786,25 +790,25 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.775464 ] } } , { "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.773530 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771766 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779297 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500606, 37.775498 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771902 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771970 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767356 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , @@ -812,9 +816,9 @@ , { "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508759, 37.760164 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762200 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764065 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } , @@ -822,21 +826,21 @@ , { "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760503 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760334 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758467 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756771 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754735 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760639 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779432 ] } } , @@ -844,7 +848,7 @@ , { "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.783435 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783401 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } , @@ -860,26 +864,26 @@ , { "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781671 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490048, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781875 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.781841 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.780009 ] } } , +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.775633 ] } } +, { "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775769 ] } } , { "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.775803 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776040 ] } } @@ -892,11 +896,11 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.775973 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772173 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } , @@ -904,19 +908,19 @@ , { "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785877 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785673 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.782146 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.780247 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779907 ] } } , @@ -940,23 +944,23 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482409, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484212, 37.774311 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.776617 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.772852 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480607, 37.772648 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.772852 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } , @@ -972,7 +976,7 @@ , { "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760775 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.760910 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758875 ] } } , @@ -984,19 +988,19 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755414 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755142 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492623, 37.753446 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761182 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761114 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753582 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } , @@ -1004,7 +1008,7 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } , @@ -1022,7 +1026,7 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761385 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } , @@ -1030,7 +1034,7 @@ , { "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757857 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753989 ] } } , @@ -1040,7 +1044,7 @@ , { "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.757755 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.761385 ] } } , @@ -1052,7 +1056,7 @@ , { "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.756025 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754124 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754328 ] } } , @@ -1060,17 +1064,17 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754124 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750935 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752903 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750935 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752835 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751003 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753106 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } , { "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745438 ] } } , @@ -1078,9 +1082,9 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747270 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745404 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745438 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745404 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753310 ] } } , @@ -1094,7 +1098,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741773 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , @@ -1108,7 +1112,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741976 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.742112 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } , @@ -1118,7 +1122,7 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498975, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } , { "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731591 ] } } , @@ -1126,7 +1130,7 @@ , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } , { "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.751308 ] } } , @@ -1136,7 +1140,7 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745845 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747745 ] } } , @@ -1156,9 +1160,9 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742112 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742248 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.742248 ] } } , @@ -1168,25 +1172,25 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736750 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736546 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744521 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742587 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740754 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748254 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483439, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481294, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752699 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481551, 37.748356 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } , @@ -1194,11 +1198,11 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748695 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748288 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.748526 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } , @@ -1212,7 +1216,7 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733695 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } , @@ -1220,25 +1224,25 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734035 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733763 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733831 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.734136 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486272, 37.729453 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } , @@ -1248,7 +1252,7 @@ , { "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.730403 ] } } , { "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } , @@ -1256,9 +1260,9 @@ , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483611, 37.722766 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , @@ -1270,11 +1274,11 @@ , { "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475715, 37.726873 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720661 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719575 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , @@ -1294,31 +1298,31 @@ , { "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782689 ] } } , -{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780687 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.780755 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784656 ] } } , { "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784792 ] } } , { "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782689 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780993 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.780789 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776787 ] } } , @@ -1332,29 +1336,29 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.777092 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.777194 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775192 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773462 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773462 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.773327 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464471, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.785165 ] } } +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784724 ] } } , { "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.785572 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.782858 ] } } , @@ -1376,25 +1380,25 @@ , { "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784113 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.783944 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783231 ] } } +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783231 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781264 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464213, 37.779161 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781535 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776990 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.777262 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777126 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.775600 ] } } , @@ -1416,7 +1420,7 @@ , { "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774616 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774751 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772750 ] } } , @@ -1424,9 +1428,9 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765796 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.762064 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765796 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , @@ -1438,11 +1442,11 @@ , { "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , { "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763896 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } , @@ -1456,13 +1460,13 @@ , { "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761792 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759146 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761962 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.756364 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756296 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761962 ] } } , @@ -1476,11 +1480,11 @@ , { "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758400 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766033 ] } } , @@ -1494,9 +1498,9 @@ , { "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762505 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766033 ] } } , @@ -1506,23 +1510,23 @@ , { "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766203 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758467 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758434 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463527, 37.754905 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.756907 ] } } , { "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } , { "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } , @@ -1540,7 +1544,7 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782010 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.787335 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788014 ] } } , { "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787166 ] } } , @@ -1548,9 +1552,9 @@ , { "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.784385 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } , @@ -1574,7 +1578,7 @@ , { "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.773259 ] } } , @@ -1582,19 +1586,19 @@ , { "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778754 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777533 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778754 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775905 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775701 ] } } +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.779093 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776922 ] } } , @@ -1602,7 +1606,7 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774005 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773937 ] } } , @@ -1620,23 +1624,23 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.785266 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785402 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783435 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779500 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.781807 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.785945 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } , @@ -1658,17 +1662,17 @@ , { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779365 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777737 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777804 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777669 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } , @@ -1700,19 +1704,19 @@ , { "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769324 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766406 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769697 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765321 ] } } , @@ -1724,7 +1728,7 @@ , { "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765728 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764778 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765558 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.764608 ] } } , @@ -1742,9 +1746,9 @@ , { "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770342 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770206 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } , @@ -1762,7 +1766,7 @@ , { "type": "Feature", "properties": { "name": "415 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764507 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.763217 ] } } , { "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.761691 ] } } , @@ -1770,29 +1774,29 @@ , { "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760910 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.758671 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761317 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } , { "type": "Feature", "properties": { "name": "320 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.759926 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "341 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.759892 ] } } , { "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.760367 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.761657 ] } } , { "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.757789 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.758230 ] } } , @@ -1814,11 +1818,11 @@ , { "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762064 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.769188 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.769188 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767288 ] } } , { "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.769222 ] } } , @@ -1826,17 +1830,17 @@ , { "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.765592 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762607 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } , { "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762471 ] } } , { "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762403 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.762505 ] } } , { "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763964 ] } } , @@ -1848,7 +1852,7 @@ , { "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760639 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760707 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.755041 ] } } , @@ -1862,11 +1866,11 @@ , { "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.760842 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.759146 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , @@ -1874,7 +1878,7 @@ , { "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754396 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , @@ -1884,13 +1888,13 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746727 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746965 ] } } , { "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473483, 37.745064 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.745030 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745064 ] } } , { "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } , @@ -1900,23 +1904,23 @@ , { "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } , +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749306 ] } } +, { "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.748831 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743300 ] } } -, { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741501 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743130 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.743402 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.738990 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737564 ] } } , @@ -1930,7 +1934,7 @@ , { "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.741467 ] } } , { "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740958 ] } } , @@ -1942,19 +1946,19 @@ , { "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740788 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740822 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739668 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739465 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748152 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } , { "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456918, 37.749849 ] } } , @@ -1964,9 +1968,9 @@ , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.748084 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.748084 ] } } , { "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.748186 ] } } , @@ -1980,11 +1984,11 @@ , { "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746388 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745777 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.746286 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740211 ] } } , @@ -1992,9 +1996,9 @@ , { "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460008, 37.739193 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740890 ] } } , @@ -2006,9 +2010,9 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732779 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734544 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , @@ -2026,15 +2030,15 @@ , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.731184 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.731048 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731252 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } , @@ -2052,15 +2056,15 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727246 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727178 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727009 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.725787 ] } } , { "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } , @@ -2068,11 +2072,11 @@ , { "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.721476 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.719711 ] } } , @@ -2094,7 +2098,7 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730539 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } , @@ -2110,11 +2114,11 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724904 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.724938 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , @@ -2132,29 +2136,29 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721747 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.751308 ] } } , { "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.749951 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745777 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } , { "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752360 ] } } , { "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.750392 ] } } , { "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.751681 ] } } , @@ -2174,15 +2178,15 @@ , { "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746897 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.746659 ] } } +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , { "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742587 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.744487 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.741840 ] } } , @@ -2198,7 +2202,7 @@ , { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446017, 37.741365 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741094 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , @@ -2212,7 +2216,7 @@ , { "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.750731 ] } } , { "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } , @@ -2224,21 +2228,21 @@ , { "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.745268 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751206 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749645 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.751071 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752903 ] } } , { "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751885 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751342 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.751274 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.751206 ] } } , { "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } , @@ -2250,19 +2254,19 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745641 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744691 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748152 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } , { "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748254 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743639 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738277 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } , @@ -2288,7 +2292,7 @@ , { "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738345 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } , @@ -2300,27 +2304,27 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728400 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735528 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } , { "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725549 ] } } , @@ -2342,7 +2346,7 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721612 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722868 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723037 ] } } , @@ -2354,7 +2358,7 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720933 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } , @@ -2380,21 +2384,21 @@ , { "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" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720593 ] } } , { "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.722901 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720050 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.734985 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441897, 37.731659 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731659 ] } } , @@ -2406,15 +2410,15 @@ , { "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731387 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.733933 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.734442 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734578 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733492 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.733322 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } , @@ -2422,15 +2426,15 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.725753 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725889 ] } } , -{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725685 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723241 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.723343 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , @@ -2442,7 +2446,7 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724667 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724293 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } , @@ -2456,19 +2460,19 @@ , { "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722358 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.721476 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423186, 37.806359 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807038 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.805580 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.806732 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805715 ] } } , @@ -2478,7 +2482,7 @@ , { "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805478 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } , @@ -2486,13 +2490,13 @@ , { "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807851 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807851 ] } } , { "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806495 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807038 ] } } , @@ -2502,11 +2506,11 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801816 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800934 ] } } , @@ -2518,11 +2522,11 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804122 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804291 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } , -{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423787, 37.803376 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805003 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } , @@ -2536,7 +2540,7 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798425 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.798594 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , @@ -2548,7 +2552,7 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792524 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , @@ -2556,13 +2560,13 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796390 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796390 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794898 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794898 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } , @@ -2570,9 +2574,9 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.793948 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.794186 ] } } , -{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.793948 ] } } , { "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794186 ] } } , @@ -2582,9 +2586,9 @@ , { "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.791914 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.792117 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.791168 ] } } , @@ -2596,7 +2600,7 @@ , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.788387 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804800 ] } } , @@ -2618,13 +2622,13 @@ , { "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799239 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799442 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.797441 ] } } , { "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } , @@ -2632,11 +2636,11 @@ , { "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.803782 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.803409 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802697 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802087 ] } } , @@ -2646,7 +2650,7 @@ , { "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.800900 ] } } , @@ -2662,19 +2666,19 @@ , { "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797340 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.796492 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794627 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793406 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } , @@ -2688,15 +2692,15 @@ , { "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790828 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792931 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791710 ] } } , { "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789675 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.791812 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.791982 ] } } , { "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790998 ] } } , @@ -2704,11 +2708,11 @@ , { "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415590, 37.791269 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789133 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789201 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.790150 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } , @@ -2726,9 +2730,9 @@ , { "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.795712 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796390 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795305 ] } } , @@ -2738,17 +2742,17 @@ , { "type": "Feature", "properties": { "name": "Mason St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794491 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792660 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791710 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } , { "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } , @@ -2762,7 +2766,7 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406020, 37.806631 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806597 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802358 ] } } , @@ -2770,13 +2774,13 @@ , { "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802969 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803003 ] } } , { "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } , { "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800527 ] } } +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801748 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.799273 ] } } , @@ -2784,15 +2788,15 @@ , { "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.800663 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } , { "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800765 ] } } , { "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.797611 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.798120 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } , @@ -2814,25 +2818,25 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.800595 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796255 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.794627 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796255 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792863 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.793745 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796051 ] } } , @@ -2846,7 +2850,7 @@ , { "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792592 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792049 ] } } , { "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } , @@ -2856,19 +2860,19 @@ , { "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791100 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792321 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790150 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789133 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789608 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } , { "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.788285 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792388 ] } } , { "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } , @@ -2894,7 +2898,7 @@ , { "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } , { "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.788997 ] } } , @@ -2902,19 +2906,17 @@ , { "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791066 ] } } -, { "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790320 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } , { "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399154, 37.790896 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , { "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788929 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } , @@ -2938,11 +2940,13 @@ , { "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } , { "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793474 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793474 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.795000 ] } } , @@ -2950,7 +2954,7 @@ , { "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , { "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , @@ -2972,13 +2976,13 @@ , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793202 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393231, 37.793338 ] } } , { "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791642 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.791914 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791642 ] } } , { "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } , @@ -2986,7 +2990,7 @@ , { "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788522 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.791134 ] } } , @@ -3002,9 +3006,9 @@ , { "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.789811 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , @@ -3012,19 +3016,19 @@ , { "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791405 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791168 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } , { "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792321 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788658 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.788861 ] } } , { "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.790557 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789608 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.790557 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } , @@ -3048,7 +3052,7 @@ , { "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825311 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371430, 37.816226 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371774, 37.816022 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822362 ] } } , @@ -3056,11 +3060,11 @@ , { "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366109, 37.819921 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813140 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370830, 37.813140 ] } } , { "type": "Feature", "properties": { "name": "California Ave & Avenue M" }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820735 ] } } , @@ -3076,7 +3080,7 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785029 ] } } , @@ -3086,7 +3090,7 @@ , { "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786114 ] } } , -{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } , @@ -3102,15 +3106,15 @@ , { "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.779466 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.782383 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.779636 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781942 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.778856 ] } } , @@ -3118,7 +3122,7 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } , @@ -3128,11 +3132,11 @@ , { "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772038 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.772445 ] } } , @@ -3140,13 +3144,13 @@ , { "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.775973 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } , { "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772920 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , { "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } , @@ -3154,7 +3158,7 @@ , { "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.774175 ] } } , { "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.771766 ] } } , @@ -3170,15 +3174,15 @@ , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.787030 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.785063 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.787233 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782994 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.782180 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779975 ] } } , @@ -3190,11 +3194,11 @@ , { "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.782451 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780518 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } , @@ -3208,19 +3212,19 @@ , { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.784859 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785809 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787200 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784113 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.785097 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } , @@ -3228,14 +3232,12 @@ , { "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780654 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.781061 ] } } , { "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.782078 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } -, { "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.780314 ] } } @@ -3248,9 +3250,7 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.775091 ] } } -, -{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775498 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } , @@ -3258,13 +3258,13 @@ , { "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777601 ] } } , -{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777397 ] } } , { "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.773327 ] } } +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774955 ] } } , { "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.772988 ] } } , @@ -3272,15 +3272,15 @@ , { "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774209 ] } } , { "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778618 ] } } , { "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778483 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.777703 ] } } , @@ -3288,11 +3288,11 @@ , { "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.779365 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } , { "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772106 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , { "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.770850 ] } } , @@ -3300,7 +3300,7 @@ , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } , { "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , @@ -3314,8 +3314,6 @@ , { "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } -, { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767763 ] } } , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } @@ -3328,15 +3326,15 @@ , { "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.764439 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764371 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } , { "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } , { "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768374 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.766780 ] } } , @@ -3354,7 +3352,7 @@ , { "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761250 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.761182 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.758230 ] } } , @@ -3362,25 +3360,25 @@ , { "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756432 ] } } , { "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761385 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761521 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.761996 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761521 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.761419 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758739 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.755550 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770477 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.753615 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.767797 ] } } , @@ -3392,23 +3390,23 @@ , { "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765117 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764981 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.765151 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.765287 ] } } , { "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765049 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } , { "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770342 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } , @@ -3416,7 +3414,7 @@ , { "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762200 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.765558 ] } } , @@ -3428,7 +3426,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.760639 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.758942 ] } } , @@ -3442,19 +3440,19 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758976 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.759010 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761657 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761860 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } , { "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.786318 ] } } , @@ -3464,7 +3462,7 @@ , { "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784520 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784317 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785368 ] } } , @@ -3482,13 +3480,13 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786623 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785843 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } , @@ -3496,7 +3494,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781196 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } , { "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782756 ] } } , @@ -3520,23 +3518,23 @@ , { "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786216 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.786080 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } , { "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780382 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.780654 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776855 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.777940 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778618 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776855 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.777329 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } , @@ -3554,21 +3552,21 @@ , { "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.777940 ] } } , { "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.772038 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.771699 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773462 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.771699 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786555 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785300 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } , @@ -3596,7 +3594,7 @@ , { "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.779704 ] } } , { "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , @@ -3604,15 +3602,15 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775430 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.777262 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775226 ] } } , { "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777024 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.776990 ] } } , { "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } , @@ -3626,7 +3624,7 @@ , { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773123 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } , { "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } , @@ -3634,11 +3632,11 @@ , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771156 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768238 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } , @@ -3654,11 +3652,11 @@ , { "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.763285 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.762200 ] } } , { "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.768578 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.768747 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } , @@ -3672,17 +3670,17 @@ , { "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.766067 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764778 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764914 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764914 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764981 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762200 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763489 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761860 ] } } , @@ -3692,9 +3690,9 @@ , { "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757517 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.757382 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757178 ] } } , @@ -3710,7 +3708,7 @@ , { "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759689 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.759621 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.758501 ] } } , @@ -3718,25 +3716,25 @@ , { "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754464 ] } } , { "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754328 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757450 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757280 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755889 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755753 ] } } , { "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.766474 ] } } , @@ -3748,21 +3746,21 @@ , { "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762810 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762607 ] } } , { "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } , { "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769561 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.768544 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764371 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.762878 ] } } , { "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } , @@ -3794,7 +3792,7 @@ , { "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754701 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.756839 ] } } , @@ -3802,13 +3800,13 @@ , { "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.760571 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.757857 ] } } , @@ -3832,7 +3830,7 @@ , { "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.749374 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746659 ] } } , @@ -3840,7 +3838,7 @@ , { "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751885 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746761 ] } } , { "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752055 ] } } , @@ -3848,9 +3846,9 @@ , { "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741908 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743605 ] } } , { "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742621 ] } } , @@ -3874,25 +3872,25 @@ , { "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.743809 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.742316 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742417 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741060 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.740992 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.739940 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742417 ] } } , { "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739804 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424130, 37.739736 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424130, 37.739736 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739397 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } , { "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736207 ] } } , @@ -3902,7 +3900,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751953 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752190 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } , @@ -3916,25 +3914,25 @@ , { "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.748661 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.747983 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.745913 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748288 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752428 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.752462 ] } } , { "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749238 ] } } , @@ -3954,19 +3952,19 @@ , { "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.739702 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.739092 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744148 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.744284 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741433 ] } } , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741840 ] } } , @@ -3976,7 +3974,7 @@ , { "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738786 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738243 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } , @@ -3992,19 +3990,19 @@ , { "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733492 ] } } , -{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } , { "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730641 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730437 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.728706 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728672 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.728468 ] } } , @@ -4016,11 +4014,11 @@ , { "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.728706 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735053 ] } } , { "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728740 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430568, 37.724734 ] } } , @@ -4034,7 +4032,7 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721612 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.721272 ] } } , @@ -4042,21 +4040,21 @@ , { "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719711 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724633 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } , { "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724734 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725210 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725413 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , @@ -4064,11 +4062,11 @@ , { "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735053 ] } } , { "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732609 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.735630 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } , @@ -4080,9 +4078,9 @@ , { "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734713 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.734713 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.734951 ] } } , @@ -4118,11 +4116,11 @@ , { "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752835 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752835 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , @@ -4130,13 +4128,13 @@ , { "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751274 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.748356 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750731 ] } } , @@ -4144,13 +4142,13 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747134 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.746422 ] } } , { "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.741331 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.739533 ] } } , @@ -4160,19 +4158,19 @@ , { "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742519 ] } } , { "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.741060 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398810, 37.743911 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743944 ] } } , { "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739533 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739125 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.736343 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752292 ] } } , { "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } , @@ -4180,15 +4178,15 @@ , { "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752224 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.751274 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749035 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749849 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.749985 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.747338 ] } } +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752360 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746150 ] } } , @@ -4202,15 +4200,15 @@ , { "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738243 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.736207 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737157 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736614 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394519, 37.736105 ] } } , { "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } , @@ -4224,7 +4222,7 @@ , { "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742451 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.739736 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740890 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.737870 ] } } , @@ -4240,11 +4238,11 @@ , { "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739940 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737225 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737225 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737632 ] } } , @@ -4260,9 +4258,9 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } , { "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727450 ] } } , @@ -4274,15 +4272,15 @@ , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727518 ] } } , { "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727722 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730369 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.729079 ] } } , @@ -4290,7 +4288,7 @@ , { "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } , @@ -4312,11 +4310,11 @@ , { "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723648 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.723275 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723648 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.720933 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721612 ] } } , @@ -4324,19 +4322,19 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719032 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.731795 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395377, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727925 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392716, 37.735155 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } , @@ -4350,11 +4348,11 @@ , { "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733831 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391343, 37.732406 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735392 ] } } , @@ -4362,11 +4360,11 @@ , { "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732881 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729249 ] } } , @@ -4374,7 +4372,7 @@ , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390399, 37.728061 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } , { "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.726941 ] } } , @@ -4392,31 +4390,31 @@ , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722358 ] } } , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.721408 ] } } , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.720967 ] } } , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753140 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755617 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.750324 ] } } , @@ -4428,9 +4426,9 @@ , { "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745777 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742519 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } , { "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.743911 ] } } , @@ -4438,15 +4436,15 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740890 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740687 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739872 ] } } , { "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } , @@ -4454,7 +4452,7 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.737021 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731829 ] } } , @@ -4472,11 +4470,11 @@ , { "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.729554 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.729520 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730131 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } , @@ -4492,7 +4490,7 @@ , { "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377181, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , { "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.730776 ] } } , @@ -4506,9 +4504,9 @@ , { "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726024 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375894, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731998 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373748, 37.730946 ] } } , @@ -4516,9 +4514,9 @@ , { "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729147 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728740 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } , { "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365422, 37.727925 ] } } , @@ -4530,6 +4528,8 @@ , { "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716316 ] } } , +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +, { "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717470 ] } } @@ -4540,19 +4540,17 @@ , { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718149 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , @@ -4578,23 +4576,19 @@ , { "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } -, { "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } , { "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } -, -{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } , @@ -4609,6 +4603,8 @@ { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -4618,20 +4614,26 @@ , { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.788692 ] } } +, { "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.792999 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793135 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775226 ] } } , { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775125 ] } } , +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } +, { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , { "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } , +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767187 ] } } +, { "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784181 ] } } ] } ] } @@ -4649,6 +4651,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } ] } ] } , diff --git a/tests/muni/out/-Z11_-z13_-rf2000_-g2.json b/tests/muni/out/-Z11_-z13_-rf2000_-g2.json index d663b3dd7..3dba0233a 100644 --- a/tests/muni/out/-Z11_-z13_-rf2000_-g2.json +++ b/tests/muni/out/-Z11_-z13_-rf2000_-g2.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-rf2000_-g2.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":1349,\"dropped_by_gamma\":964},{\"dropped_by_rate\":748,\"dropped_by_gamma\":751},{\"dropped_by_gamma\":514}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":1344,\"dropped_by_gamma\":961},{\"dropped_by_rate\":743,\"dropped_by_gamma\":746},{\"dropped_by_gamma\":514}]", "tippecanoe_decisions": "{\"basezoom\":13,\"droprate\":1.17622,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" @@ -22,6 +22,8 @@ , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532363, 37.831819 ] } } , +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +, { "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527213, 37.832463 ] } } @@ -30,9 +32,9 @@ , { "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } -, { "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831412 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529702, 37.821819 ] } } ] } ] } , @@ -40,33 +42,37 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } , +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.720729 ] } } +, { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , { "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } , @@ -86,52 +92,54 @@ , { "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720118 ] } } -, -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.720050 ] } } -, { "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719982 ] } } , { "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720118 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } -, { "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } , +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, { "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719711 ] } } , { "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721068 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } , { "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719711 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.718658 ] } } , +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, { "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } @@ -142,32 +150,30 @@ , { "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720423 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +, { "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } -, { "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } , { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } @@ -176,21 +182,19 @@ , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } -, { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714754 ] } } , @@ -198,34 +202,28 @@ , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } -, -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717470 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.714992 ] } } , { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } , +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715976 ] } } +, { "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709118 ] } } -, -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715908 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } @@ -234,14 +232,10 @@ , { "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "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.713600 ] } } -, { "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714075 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } -, { "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.712989 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713532 ] } } @@ -250,35 +244,33 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714415 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714279 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714313 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.714347 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710341 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.710273 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714211 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711563 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711427 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464900, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711835 ] } } , { "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705757 ] } } -, { "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.710918 ] } } , @@ -286,51 +278,47 @@ , { "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711427 ] } } , +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711291 ] } } +, { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714822 ] } } -, -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713193 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.714992 ] } } , { "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.711495 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713260 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , { "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710273 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.705961 ] } } , { "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707421 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718522 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } -, { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713939 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , @@ -338,7 +326,7 @@ , { "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714686 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714483 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } , @@ -350,19 +338,19 @@ , { "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452197, 37.708881 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716621 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714754 ] } } , @@ -370,17 +358,21 @@ , { "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } , +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +, { "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713464 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714007 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } , { "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , @@ -394,59 +386,63 @@ , { "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } , +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } +, { "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708949 ] } } , { "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } , +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, { "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718149 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710544 ] } } , { "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } , { "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } -, { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , { "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710714 ] } } , +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +, { "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713532 ] } } , { "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } , { "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "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 & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708983 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708643 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } , { "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } , +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.712242 ] } } +, { "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713532 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.712004 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712004 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } , @@ -454,36 +450,36 @@ , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.713328 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712717 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 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" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.710748 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712174 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.710477 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708507 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710341 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.708473 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708643 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.707896 ] } } , +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707693 ] } } +, { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.706946 ] } } , { "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } , { "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706538 ] } } -, { "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.706300 ] } } , { "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709051 ] } } @@ -494,10 +490,12 @@ , { "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } , +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +, { "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } , { "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715162 ] } } @@ -506,42 +504,42 @@ , { "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712649 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.710205 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.408938, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710001 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711563 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711359 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711427 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , { "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713193 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.712581 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711902 ] } } -, { "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.710578 ] } } , +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +, { "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716248 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.716350 ] } } , { "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } , -{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } -, { "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712446 ] } } , +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712208 ] } } +, { "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712276 ] } } , { "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } @@ -552,10 +550,12 @@ , { "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.709356 ] } } , +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } +, { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708983 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } @@ -568,10 +568,12 @@ , { "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710952 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.711223 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710884 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } , +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.716995 ] } } +, { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } , { "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } @@ -582,9 +584,9 @@ , { "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } -, { "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.712140 ] } } ] } ] } , @@ -596,13 +598,13 @@ , { "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } , -{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.833683 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833887 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833616 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.833616 ] } } , { "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483268, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.833073 ] } } , { "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } , @@ -610,17 +612,15 @@ , { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788454 ] } } , { "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } -, { "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792321 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807241 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807546 ] } } , { "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.806563 ] } } , @@ -630,34 +630,32 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.803477 ] } } -, { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803579 ] } } , { "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801612 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801002 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.799815 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.802901 ] } } , { "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798425 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } , { "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797950 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801612 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } , { "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802291 ] } } -, { "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802087 ] } } , { "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } @@ -666,11 +664,11 @@ , { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801070 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453914, 37.800527 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } , @@ -678,7 +676,7 @@ , { "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } , @@ -686,41 +684,43 @@ , { "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804325 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } -, -{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.804562 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.803409 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801545 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800392 ] } } +, { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798425 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } , { "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797136 ] } } , -{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.797611 ] } } -, { "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799849 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.800052 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.800052 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798662 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } , @@ -732,11 +732,9 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791269 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } -, { "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441812, 37.803070 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800120 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } , @@ -748,15 +746,15 @@ , { "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } -, { "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } +, { "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802630 ] } } , { "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804868 ] } } , { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.803409 ] } } , @@ -766,19 +764,19 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801070 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799713 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800934 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.801104 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796797 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } , { "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.797407 ] } } , @@ -792,7 +790,7 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , @@ -802,11 +800,13 @@ , { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794898 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.793813 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } , @@ -814,54 +814,58 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.791439 ] } } -, { "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.788828 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.789743 ] } } , { "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788929 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } -, { "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } , +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779907 ] } } +, { "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } , { "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512965, 37.779093 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512021, 37.779025 ] } } , +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.779025 ] } } +, { "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773327 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.773225 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771699 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771427 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779975 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771699 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780043 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781807 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779840 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779738 ] } } , { "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504210, 37.780993 ] } } , { "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.779772 ] } } , +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } +, { "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499576, 37.784995 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } @@ -870,43 +874,41 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.779025 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775226 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } , +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.775464 ] } } +, { "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773293 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771597 ] } } -, { "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } , { "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505670, 37.773564 ] } } , { "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503524, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.779161 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771902 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500348, 37.771868 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771970 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771902 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767356 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771970 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508759, 37.760164 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.764167 ] } } , @@ -916,11 +918,13 @@ , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756771 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758467 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754905 ] } } , @@ -928,41 +932,41 @@ , { "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760605 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760775 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760639 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779432 ] } } , -{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.783435 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.781603 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781739 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781535 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779670 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779534 ] } } , +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492280, 37.779941 ] } } +, { "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781671 ] } } , { "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490048, 37.780755 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } , { "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783638 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.781739 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781875 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.781841 ] } } , @@ -974,11 +978,11 @@ , { "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.777872 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493052, 37.777703 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775905 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776040 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.776007 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496314, 37.772072 ] } } , @@ -986,19 +990,19 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772241 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.775973 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776210 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772411 ] } } +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772173 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } , { "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , @@ -1012,55 +1016,57 @@ , { "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } -, { "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.784079 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.781942 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.782146 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.780247 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779907 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482667, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.780348 ] } } , { "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.784113 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782214 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780450 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782282 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780213 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780586 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +, { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778279 ] } } , +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484469, 37.778042 ] } } +, { "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776176 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774548 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772580 ] } } -, { "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483783, 37.772513 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +, { "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } , @@ -1068,24 +1074,28 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 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" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764371 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495799, 37.762607 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.764744 ] } } , +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764846 ] } } +, { "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764710 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488246, 37.765015 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } , { "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760808 ] } } , +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.760910 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759112 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } @@ -1100,36 +1110,34 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761216 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761114 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761182 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.753480 ] } } , +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } +, { "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753582 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487302, 37.753683 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.765015 ] } } -, { "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765321 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765117 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.763116 ] } } -, { "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480350, 37.765185 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } , +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763658 ] } } +, { "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } @@ -1138,15 +1146,15 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763692 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } -, { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761589 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757857 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } , @@ -1154,7 +1162,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482753, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761521 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } , @@ -1164,23 +1172,21 @@ , { "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761792 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759960 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757857 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } , { "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.756025 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754124 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754328 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756228 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.755991 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750935 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753039 ] } } , @@ -1188,29 +1194,33 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751003 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753106 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747338 ] } } , { "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745438 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747270 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745573 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.753039 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753106 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753310 ] } } , +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } +, { "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747406 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747542 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747677 ] } } , @@ -1218,15 +1228,13 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.743741 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741840 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.741807 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741773 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504554, 37.740008 ] } } -, { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736003 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.737972 ] } } , @@ -1236,13 +1244,17 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741976 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.742112 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741976 ] } } , { "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.735358 ] } } , @@ -1252,15 +1264,13 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498975, 37.734136 ] } } -, { "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729724 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , { "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731591 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } , @@ -1268,24 +1278,24 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495027, 37.751783 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494855, 37.749578 ] } } -, -{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747609 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , { "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } , +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745845 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748051 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747745 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.745845 ] } } , +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +, { "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } @@ -1312,20 +1322,18 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.738379 ] } } , +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736750 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736546 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744521 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.744250 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740754 ] } } -, -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } -, { "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.738752 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748254 ] } } @@ -1334,17 +1342,17 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483439, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481294, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481551, 37.748356 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752699 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750188 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.748560 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748560 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748695 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746456 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748288 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } , @@ -1354,74 +1362,72 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742791 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486100, 37.738956 ] } } -, { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.742960 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733899 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733695 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734035 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733763 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.733356 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733831 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734238 ] } } , +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.734136 ] } } +, { "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486272, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728536 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } , { "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } , +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727993 ] } } +, { "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.729996 ] } } , { "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484899, 37.724225 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726975 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727111 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483611, 37.722766 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } -, -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } , +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.720729 ] } } +, { "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727178 ] } } , { "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725956 ] } } @@ -1430,43 +1436,49 @@ , { "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475715, 37.726873 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720661 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } , { "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.784520 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472539, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } , { "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , { "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.784588 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.782485 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } , { "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780687 ] } } , +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780620 ] } } +, { "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } , { "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784792 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.784452 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782689 ] } } , @@ -1474,7 +1486,7 @@ , { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } , @@ -1482,7 +1494,7 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.780789 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776787 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , @@ -1490,31 +1502,33 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776855 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.773191 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773055 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474170, 37.772954 ] } } , -{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777058 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773191 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773462 ] } } -, { "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464471, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.785165 ] } } , { "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785334 ] } } , @@ -1524,9 +1538,7 @@ , { "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.783096 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781128 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780857 ] } } , @@ -1534,7 +1546,7 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786894 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785606 ] } } , @@ -1554,31 +1566,29 @@ , { "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781061 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781264 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781535 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.777262 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.775430 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773666 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.773971 ] } } -, { "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773937 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777058 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } , @@ -1588,15 +1598,13 @@ , { "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774751 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774616 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } , @@ -1604,21 +1612,21 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765796 ] } } , +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.762064 ] } } +, { "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.468934, 37.770545 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } -, { "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765999 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765999 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764269 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } , @@ -1640,13 +1648,15 @@ , { "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756975 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.756364 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756296 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.755244 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761996 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758298 ] } } , @@ -1654,11 +1664,11 @@ , { "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467904, 37.758400 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } -, { "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758535 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } , @@ -1678,14 +1688,16 @@ , { "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.764235 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457948, 37.765965 ] } } , { "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } , +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.764371 ] } } +, { "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.763319 ] } } @@ -1698,19 +1710,17 @@ , { "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } -, -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758467 ] } } -, -{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758434 ] } } , { "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.757721 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } , +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +, { "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.756907 ] } } , { "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } , @@ -1718,27 +1728,27 @@ , { "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } , { "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786487 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.784113 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787471 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786691 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.786928 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449880, 37.784622 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448249, 37.784995 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782010 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.787335 ] } } , @@ -1746,8 +1756,6 @@ , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787369 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.786250 ] } } -, { "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.785232 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.784385 ] } } @@ -1758,11 +1766,11 @@ , { "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.782519 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782960 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } , @@ -1772,63 +1780,59 @@ , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778347 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.775396 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.775362 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.774989 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.778652 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777533 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.778754 ] } } -, { "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775905 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } -, { "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774005 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774039 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.773937 ] } } , +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771970 ] } } +, { "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774073 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774175 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.774277 ] } } , +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.787980 ] } } +, { "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.786284 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785131 ] } } -, { "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785334 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785402 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783842 ] } } , @@ -1836,37 +1840,39 @@ , { "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779500 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783435 ] } } -, -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783164 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } , +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.781807 ] } } +, { "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780484 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.780857 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.785945 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788047 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433143, 37.786148 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.783978 ] } } -, { "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781061 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781739 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781535 ] } } , @@ -1874,12 +1880,12 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.780213 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431941, 37.779840 ] } } +, { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779365 ] } } -, { "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777737 ] } } @@ -1888,31 +1894,29 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770918 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.770749 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.774718 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773055 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.771291 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778144 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.778279 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } -, { "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.775159 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778551 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775633 ] } } , @@ -1922,47 +1926,45 @@ , { "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771766 ] } } -, -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.771597 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.769324 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766406 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769697 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768510 ] } } , +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } +, { "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.764778 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.765864 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764914 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } -, -{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.764608 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769935 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770240 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } , @@ -1970,13 +1972,15 @@ , { "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770342 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770342 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767492 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766271 ] } } , @@ -1984,7 +1988,7 @@ , { "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.764303 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.764269 ] } } , @@ -1992,29 +1996,29 @@ , { "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443357, 37.765456 ] } } , -{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764507 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.761691 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760910 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } -, { "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760910 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761860 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.758671 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758671 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } , @@ -2040,21 +2044,23 @@ , { "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" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.768679 ] } } +, { "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "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.768035 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766474 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.766678 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767288 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762064 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.769188 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , { "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } , @@ -2064,17 +2070,17 @@ , { "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769392 ] } } , +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.769120 ] } } +, { "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767492 ] } } , { "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.765830 ] } } -, { "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.765592 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762607 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } , { "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.762471 ] } } , @@ -2084,9 +2090,13 @@ , { "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760571 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.761589 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760639 ] } } , @@ -2094,7 +2104,7 @@ , { "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.754057 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.754023 ] } } , { "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } , @@ -2102,9 +2112,9 @@ , { "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755346 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753514 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.760842 ] } } , @@ -2112,40 +2122,34 @@ , { "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757789 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , { "type": "Feature", "properties": { "name": "20th St & Collingwood St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.755957 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.756092 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754396 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } -, { "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.750528 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.750799 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748797 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748831 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746965 ] } } , { "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746727 ] } } , { "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745098 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473483, 37.745064 ] } } -, { "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748865 ] } } , { "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749035 ] } } -, { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749102 ] } } , { "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } @@ -2154,18 +2158,18 @@ , { "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749306 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.748831 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741501 ] } } , +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, { "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743062 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.743402 ] } } @@ -2176,27 +2180,23 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737564 ] } } -, { "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } -, { "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741433 ] } } , +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } +, { "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.741162 ] } } , { "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740992 ] } } -, -{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740890 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.739601 ] } } , @@ -2204,23 +2204,23 @@ , { "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } , { "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748152 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.751715 ] } } -, { "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456918, 37.749849 ] } } , { "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751614 ] } } +, { "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.748356 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.747236 ] } } , { "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.747813 ] } } , @@ -2228,7 +2228,7 @@ , { "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745302 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746388 ] } } , @@ -2236,7 +2236,7 @@ , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739940 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740211 ] } } , @@ -2248,27 +2248,25 @@ , { "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741637 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455459, 37.743096 ] } } -, -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742859 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743469 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741976 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455459, 37.743096 ] } } , { "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736682 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734476 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732779 ] } } , +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732439 ] } } +, { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "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": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471595, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.734306 ] } } , { "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735460 ] } } , @@ -2278,20 +2276,18 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.731184 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } -, -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.731048 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.731184 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734713 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } -, { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468076, 37.734781 ] } } , +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +, { "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.729928 ] } } @@ -2304,30 +2300,36 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727246 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727178 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } , { "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , { "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } -, { "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.721476 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719711 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727178 ] } } , +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } +, { "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719575 ] } } @@ -2338,7 +2340,7 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460780, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.732032 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734544 ] } } , @@ -2348,23 +2350,23 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 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 & Saint Elmo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.732609 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732236 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731116 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } -, -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455630, 37.731455 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731252 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724938 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724904 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.724938 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } , @@ -2380,11 +2382,9 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } -, -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723445 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719948 ] } } , @@ -2392,9 +2392,9 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721747 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720050 ] } } , @@ -2406,14 +2406,18 @@ , { "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751206 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.749951 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745777 ] } } , +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } +, { "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.745064 ] } } , +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } +, { "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } , { "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752360 ] } } @@ -2422,11 +2426,11 @@ , { "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.750392 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } , { "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752089 ] } } , -{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.749306 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749102 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750833 ] } } , @@ -2434,22 +2438,24 @@ , { "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.746456 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748017 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.746456 ] } } , { "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.748084 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747134 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746897 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.746693 ] } } , { "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.745200 ] } } +, { "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } @@ -2460,8 +2466,6 @@ , { "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.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" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.737802 ] } } @@ -2470,11 +2474,11 @@ , { "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } -, { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446017, 37.741365 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738922 ] } } , @@ -2482,21 +2486,21 @@ , { "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.736818 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } , { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.752496 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } -, { "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.750731 ] } } , +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } +, { "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } , { "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749306 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } , { "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751105 ] } } , @@ -2504,33 +2508,37 @@ , { "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.746931 ] } } , +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +, { "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.745268 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752699 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749645 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752767 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752903 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.752089 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751885 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751342 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.751206 ] } } , { "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.748695 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.747847 ] } } , -{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746252 ] } } , @@ -2542,29 +2550,33 @@ , { "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743571 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743639 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741840 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.740279 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.738582 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738311 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } , { "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738786 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.738243 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.737327 ] } } , @@ -2572,29 +2584,29 @@ , { "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738345 ] } } +{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736818 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736071 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } , { "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } , { "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731455 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731693 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451425, 37.731625 ] } } , +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729962 ] } } +, { "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728400 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731387 ] } } -, -{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } , @@ -2602,7 +2614,7 @@ , { "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445588, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } , @@ -2610,7 +2622,7 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.726024 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } , @@ -2618,73 +2630,81 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451425, 37.723037 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.723105 ] } } , { "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, { "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719677 ] } } , { "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } -, { "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.722121 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722868 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721612 ] } } , +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } +, { "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723037 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720933 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } , { "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } , -{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720593 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.722901 ] } } +, { "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.734985 ] } } -, { "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731659 ] } } , +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727722 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.731523 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.730369 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.734442 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , @@ -2698,84 +2718,98 @@ , { "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.726839 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.725753 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725956 ] } } , +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } +, { "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.723343 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723241 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723580 ] } } , { "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.718658 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724667 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.723920 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723377 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723920 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726330 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.726160 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.721476 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722358 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.721476 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.722392 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721612 ] } } , +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, { "type": "Feature", "properties": { "name": "Beach St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423186, 37.806359 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806359 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807038 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.806732 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.805580 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805613 ] } } , { "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808326 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.807241 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } , { "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806563 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807851 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } , +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } +, { "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806495 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410569, 37.806868 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } +, { "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801680 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } @@ -2784,23 +2818,23 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800934 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.805105 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804969 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804291 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804122 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } , { "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423787, 37.803376 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } , @@ -2808,7 +2842,9 @@ , { "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800459 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800324 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424130, 37.798459 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798425 ] } } , @@ -2816,16 +2852,16 @@ , { "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } , +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797747 ] } } +, { "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.796967 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793135 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } -, { "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } , +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.791914 ] } } +, { "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792185 ] } } @@ -2836,11 +2872,9 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796390 ] } } -, { "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793813 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794898 ] } } , @@ -2848,7 +2882,9 @@ , { "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.794186 ] } } , @@ -2860,37 +2896,35 @@ , { "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790896 ] } } -, { "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.791914 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.791134 ] } } -, { "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.792117 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.790354 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.791168 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.790421 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790625 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.788387 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790421 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790625 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.805241 ] } } , { "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.801002 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.800188 ] } } , @@ -2908,41 +2942,39 @@ , { "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799679 ] } } -, { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.804393 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.803782 ] } } , +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +, { "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802697 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.804969 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.802765 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.801172 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } -, { "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.800900 ] } } , { "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.799951 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800120 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800019 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.799001 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.800392 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800392 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.798255 ] } } , @@ -2952,20 +2984,18 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.795339 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794627 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793609 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } -, { "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795576 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } @@ -2978,30 +3008,28 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } -, { "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789540 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.791982 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790998 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792049 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792185 ] } } , { "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.788217 ] } } -, -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789201 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789133 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.788421 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.790150 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } , +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795034 ] } } +, { "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795237 ] } } @@ -3010,107 +3038,105 @@ , { "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "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": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796187 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796390 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.796560 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795305 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794627 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.794525 ] } } -, { "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792660 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } , +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +, { "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792388 ] } } , { "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } , { "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.788319 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , { "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } , { "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806088 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.807173 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806597 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806800 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.803274 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803511 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802358 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.801409 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803545 ] } } , { "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } , { "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } , -{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801748 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800527 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800358 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.799273 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.799205 ] } } , +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.799103 ] } } +, { "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } , { "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.800663 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } -, -{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } , { "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } -, -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801070 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.797611 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.797814 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "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": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.797340 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } -, { "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802969 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801409 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.802155 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801409 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } , @@ -3120,7 +3146,7 @@ , { "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } , @@ -3130,11 +3156,11 @@ , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.796729 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.796865 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796255 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.794627 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , @@ -3146,27 +3172,23 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } , +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.793236 ] } } +, { "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796119 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796051 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } -, { "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793406 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792490 ] } } -, -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792863 ] } } , { "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792049 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.791948 ] } } -, -{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } , { "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792321 ] } } , @@ -3174,29 +3196,25 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788387 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789608 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } , { "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.788285 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792388 ] } } -, -{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } -, { "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.789811 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795915 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.796051 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795712 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.794695 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } , { "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792931 ] } } , @@ -3204,17 +3222,17 @@ , { "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.793135 ] } } , { "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.793135 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793135 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.793270 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.789743 ] } } , @@ -3224,33 +3242,37 @@ , { "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792015 ] } } -, { "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790286 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.791303 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +, { "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798967 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797814 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797068 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.797204 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } , { "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } , @@ -3262,35 +3284,37 @@ , { "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793033 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "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 & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.795000 ] } } -, { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792524 ] } } , +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794423 ] } } +, { "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794220 ] } } , { "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793745 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793474 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792660 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792999 ] } } -, { "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.791914 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790150 ] } } , @@ -3302,23 +3326,23 @@ , { "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791812 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } -, { "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790828 ] } } , { "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789947 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.789201 ] } } , { "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } , { "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } , +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.793813 ] } } +, { "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , { "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791405 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } , @@ -3326,9 +3350,9 @@ , { "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788658 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.790489 ] } } , @@ -3338,69 +3362,71 @@ , { "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } , +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 37.829819 ] } } +, { "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376280, 37.825480 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } , -{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823243 ] } } , { "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374263, 37.823379 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373919, 37.823514 ] } } , { "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371430, 37.824599 ] } } , { "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829277 ] } } , +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } +, { "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368941, 37.823616 ] } } , { "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825311 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371774, 37.816022 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371430, 37.816226 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818497 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819921 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822362 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819989 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366109, 37.819921 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370915, 37.813242 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } , { "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370830, 37.813140 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811784 ] } } -, { "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822226 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M" }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820735 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364564, 37.811852 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } , { "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811683 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810360 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.786487 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.786589 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } , +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +, { "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785029 ] } } , { "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } -, -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.782112 ] } } , { "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786114 ] } } , @@ -3408,21 +3434,19 @@ , { "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786555 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.782383 ] } } , @@ -3430,8 +3454,6 @@ , { "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781942 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } @@ -3440,25 +3462,29 @@ , { "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.778856 ] } } , +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +, { "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776990 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776040 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426963, 37.779195 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } -, { "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } , +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428250, 37.776244 ] } } +, { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430739, 37.772139 ] } } , @@ -3466,25 +3492,23 @@ , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.772445 ] } } , -{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779365 ] } } -, { "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776515 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777737 ] } } , { "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.775973 ] } } , +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.777092 ] } } +, { "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772920 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773836 ] } } -, -{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } , @@ -3500,7 +3524,7 @@ , { "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.771766 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } , @@ -3508,37 +3532,35 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786148 ] } } , { "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.784961 ] } } -, { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } , +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.787233 ] } } +, { "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.785063 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.782282 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.782180 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.782180 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779975 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780179 ] } } -, -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780314 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783231 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781705 ] } } , @@ -3548,6 +3570,8 @@ , { "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } , +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.780382 ] } } +, { "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } @@ -3556,55 +3580,53 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.786555 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.786420 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.786759 ] } } , +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } +, { "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } , { "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.784859 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } -, { "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786046 ] } } , { "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784113 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783672 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781671 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781807 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.780891 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.781061 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780654 ] } } , { "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.782078 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783367 ] } } , { "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.781298 ] } } , { "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.780314 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778686 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } , { "type": "Feature", "properties": { "name": "Grove St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.778381 ] } } , @@ -3620,13 +3642,13 @@ , { "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777601 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777601 ] } } , { "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.773327 ] } } , @@ -3646,11 +3668,9 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.779365 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778618 ] } } -, -{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778483 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.777703 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } , @@ -3660,74 +3680,78 @@ , { "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772106 ] } } +{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772106 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.772004 ] } } , { "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.770850 ] } } , +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774751 ] } } +, { "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772411 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769392 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431254, 37.767526 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767763 ] } } , { "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } -, { "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.767831 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } , { "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.766271 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } , { "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , { "type": "Feature", "properties": { "name": "Church St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } -, { "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769799 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768374 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764710 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766271 ] } } , { "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764846 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764642 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.763421 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763082 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } , { "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761453 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761250 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , +{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +, { "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.758264 ] } } , { "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.757382 ] } } @@ -3736,6 +3760,8 @@ , { "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756432 ] } } +, { "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } , { "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761385 ] } } @@ -3744,23 +3770,23 @@ , { "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.761419 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758264 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758739 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.755550 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.753615 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770477 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.767797 ] } } , { "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766678 ] } } , @@ -3772,35 +3798,33 @@ , { "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.762641 ] } } -, { "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.765287 ] } } , { "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765253 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763828 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770342 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410741, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768103 ] } } , { "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765389 ] } } , +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } +, { "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762200 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764032 ] } } , @@ -3808,15 +3832,17 @@ , { "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410140, 37.762946 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.760639 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.761860 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.758942 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758875 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757517 ] } } , @@ -3824,13 +3850,15 @@ , { "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.754260 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.753412 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.759010 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758976 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758773 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761860 ] } } , @@ -3840,8 +3868,6 @@ , { "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } -, { "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.787471 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } @@ -3850,37 +3876,47 @@ , { "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.786318 ] } } , +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785063 ] } } +, { "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784249 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784317 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785368 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786623 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.786589 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785741 ] } } , { "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } , { "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782858 ] } } , { "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } , +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783503 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781196 ] } } , { "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782960 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787980 ] } } , @@ -3888,13 +3924,17 @@ , { "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786216 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.784927 ] } } , @@ -3902,39 +3942,35 @@ , { "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780314 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780382 ] } } +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782146 ] } } , { "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.777940 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.776651 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778618 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776855 ] } } , { "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.777329 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773530 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.772547 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } , { "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.774684 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771563 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771563 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.779297 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776142 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.777940 ] } } , @@ -3946,17 +3982,21 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773666 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786759 ] } } , { "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } , +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785300 ] } } +, { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787403 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784520 ] } } , -{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782689 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782417 ] } } , @@ -3966,9 +4006,7 @@ , { "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.782824 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779975 ] } } -, -{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779568 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } , @@ -3978,8 +4016,6 @@ , { "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.389541, 37.779602 ] } } @@ -3996,21 +4032,21 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777092 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } , { "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775464 ] } } , @@ -4018,19 +4054,17 @@ , { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.772614 ] } } -, { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771156 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766339 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764235 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } , { "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , @@ -4038,24 +4072,26 @@ , { "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.763285 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.762200 ] } } , { "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.768578 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.768747 ] } } , -{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } , { "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } , { "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.766067 ] } } , +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764880 ] } } +, { "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764778 ] } } , { "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } @@ -4064,11 +4100,9 @@ , { "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766271 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764981 ] } } -, { "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764914 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762200 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763489 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } , @@ -4076,31 +4110,33 @@ , { "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } , +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +, { "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759621 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757517 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.757382 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757178 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755210 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.755414 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753989 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.761996 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.759655 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } , { "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759689 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.759417 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.759621 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.759587 ] } } , @@ -4108,58 +4144,52 @@ , { "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.759655 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756160 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } , { "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } -, { "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754328 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757450 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } , { "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755889 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755753 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } -, { "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.766474 ] } } , { "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764981 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } -, -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } , { "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393231, 37.762742 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762810 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } +{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766746 ] } } , { "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769697 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.769324 ] } } +, { "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769052 ] } } , { "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } -, { "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } , { "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764371 ] } } @@ -4168,37 +4198,35 @@ , { "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763353 ] } } -, { "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.762980 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761317 ] } } , { "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } -, { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760096 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758128 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395978, 37.758400 ] } } , { "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.760028 ] } } , { "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.755957 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.754803 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } , +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } +, { "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754701 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } , -{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755448 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } , @@ -4214,11 +4242,13 @@ , { "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.757585 ] } } +, { "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755142 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.755041 ] } } , { "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , @@ -4228,18 +4258,14 @@ , { "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.751783 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.749374 ] } } -, { "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746659 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } , { "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746761 ] } } -, { "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751885 ] } } , { "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752055 ] } } @@ -4248,8 +4274,6 @@ , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } -, { "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , { "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741908 ] } } @@ -4258,57 +4282,57 @@ , { "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742791 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742112 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742146 ] } } , +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.737734 ] } } +, { "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736444 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.737734 ] } } , { "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.739702 ] } } , { "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.737123 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741908 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742180 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737089 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742316 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742010 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.743809 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.742316 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.740992 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.740992 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.742451 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.739940 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } , { "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739804 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739397 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738854 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.737429 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740211 ] } } -, { "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752190 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751953 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750731 ] } } , @@ -4318,17 +4342,19 @@ , { "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } , +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +, { "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.748661 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748084 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746727 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.745913 ] } } , @@ -4336,9 +4362,7 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748288 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752564 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , @@ -4346,9 +4370,9 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.752699 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748492 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.748356 ] } } , @@ -4358,17 +4382,13 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744284 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.739702 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.739024 ] } } , @@ -4376,7 +4396,9 @@ , { "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.744284 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744352 ] } } , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741433 ] } } , @@ -4386,6 +4408,8 @@ , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741840 ] } } , +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.738820 ] } } +, { "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738243 ] } } @@ -4394,7 +4418,7 @@ , { "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } , { "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , @@ -4404,9 +4428,7 @@ , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } , -{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731829 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733492 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733458 ] } } , @@ -4414,9 +4436,9 @@ , { "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.731387 ] } } +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730641 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730641 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.731387 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730437 ] } } , @@ -4430,9 +4452,9 @@ , { "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.734035 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735901 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735053 ] } } , @@ -4440,20 +4462,18 @@ , { "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728740 ] } } -, { "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728740 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430568, 37.724734 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.723988 ] } } +, { "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723105 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722494 ] } } -, { "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.722392 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } @@ -4466,47 +4486,45 @@ , { "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720390 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724633 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724734 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724633 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725074 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724734 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725413 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } -, { "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735800 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735121 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735053 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732609 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732270 ] } } , { "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.735630 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } , +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.734815 ] } } +, { "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732813 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } -, -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732541 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , @@ -4514,13 +4532,15 @@ , { "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735800 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } , { "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729826 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } , @@ -4528,37 +4548,39 @@ , { "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } -, { "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.725956 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.725855 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.726398 ] } } , +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726364 ] } } +, { "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } , { "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , { "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.723920 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723241 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723105 ] } } , { "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.722732 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722834 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752835 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752835 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } , @@ -4580,65 +4602,65 @@ , { "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750731 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750697 ] } } , { "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750867 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747134 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750765 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742859 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , { "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , { "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.741331 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.739668 ] } } , +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738379 ] } } +, { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739872 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737938 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742519 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741908 ] } } -, { "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.741060 ] } } , { "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743944 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } -, -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739125 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741501 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739533 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738786 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.739533 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.736343 ] } } , +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752292 ] } } +, { "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752224 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.751274 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.752564 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752224 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749035 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749849 ] } } -, -{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752665 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.747338 ] } } , @@ -4646,21 +4668,23 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } -, { "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "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 & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750392 ] } } +, { "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738243 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737225 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.736207 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736852 ] } } , @@ -4682,7 +4706,7 @@ , { "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737564 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736343 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739329 ] } } , @@ -4690,22 +4714,18 @@ , { "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739940 ] } } , { "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737225 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } -, { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.734238 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.732338 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.732406 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.733220 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.732066 ] } } -, { "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731489 ] } } @@ -4714,10 +4734,12 @@ , { "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727314 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727450 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734578 ] } } , +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.735256 ] } } +, { "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.731829 ] } } @@ -4728,21 +4750,19 @@ , { "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" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727518 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.727314 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727722 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728061 ] } } , -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730369 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.726262 ] } } -, { "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726126 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.726534 ] } } , { "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } , @@ -4756,57 +4776,61 @@ , { "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } , +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +, { "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724191 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723648 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } , { "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.723377 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723648 ] } } , { "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.723275 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720661 ] } } -, { "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721476 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.721442 ] } } , { "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733186 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731150 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395377, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727925 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735800 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735053 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.734103 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734001 ] } } , @@ -4816,25 +4840,23 @@ , { "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735392 ] } } , +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } +, { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } , { "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732881 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392030, 37.730675 ] } } , { "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729249 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "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 & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729215 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.726941 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.723003 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } , @@ -4850,23 +4872,23 @@ , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722630 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722901 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.721408 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } , @@ -4884,99 +4906,89 @@ , { "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.746048 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } -, { "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742519 ] } } , +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.743911 ] } } +, { "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383146, 37.743707 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740687 ] } } , +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.738956 ] } } +, { "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739872 ] } } -, { "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739702 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } , { "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381773, 37.738175 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } , { "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.737055 ] } } , +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.736512 ] } } +, { "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } , { "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.737021 ] } } , { "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.735833 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731829 ] } } -, -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732372 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732066 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } , { "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" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730776 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.729520 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "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": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , { "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 & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733356 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733288 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } -, { "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734374 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "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" }, "geometry": { "type": "Point", "coordinates": [ -122.377181, 37.732711 ] } } , +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.381730, 37.731353 ] } } +, { "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.730776 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730573 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727993 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } , { "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.731082 ] } } , @@ -4984,23 +4996,23 @@ , { "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726024 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726092 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375894, 37.731998 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730233 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730912 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.729860 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373748, 37.730946 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372117, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729860 ] } } -, { "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367911, 37.725312 ] } } , @@ -5008,37 +5020,35 @@ , { "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365422, 37.727925 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716316 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } -, -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717470 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } , { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715908 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } , @@ -5046,8 +5056,6 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718522 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } -, { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } , { "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } @@ -5056,21 +5064,25 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716621 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, { "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718149 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } -, { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } , @@ -5078,20 +5090,26 @@ , { "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } , +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +, { "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716248 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.716350 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } , +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.716995 ] } } +, { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } @@ -5102,13 +5120,11 @@ , { "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.748356 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767187 ] } } , { "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784283 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784181 ] } } ] } ] } , @@ -5141,6 +5157,8 @@ { "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830362 ] } } , { "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831412 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529681, 37.821819 ] } } ] } ] } , @@ -5160,22 +5178,24 @@ , { "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479599, 37.719609 ] } } , +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } +, { "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719694 ] } } -, { "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719049 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719728 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719745 ] } } , +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469943, 37.719592 ] } } +, { "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.719745 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } @@ -5192,8 +5212,6 @@ , { "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } -, { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } @@ -5206,7 +5224,9 @@ , { "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439086, 37.719150 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716774 ] } } , @@ -5214,9 +5234,9 @@ , { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716231 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716061 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.714873 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714771 ] } } , @@ -5226,9 +5246,9 @@ , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711206 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485263, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711206 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478740, 37.717962 ] } } , @@ -5244,9 +5264,9 @@ , { "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478311, 37.715841 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477152, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709118 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } , { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } , @@ -5254,14 +5274,14 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } , +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.715891 ] } } +, { "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.715213 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.715009 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717368 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.716893 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.716197 ] } } @@ -5270,9 +5290,9 @@ , { "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470243, 37.714754 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713753 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.714126 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713583 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713753 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714058 ] } } , @@ -5290,27 +5310,27 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.714398 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714279 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.714313 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.714330 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469256, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467368, 37.712514 ] } } -, { "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710358 ] } } , +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.710273 ] } } +, { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714194 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712327 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467110, 37.711648 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711563 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.711631 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711410 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711818 ] } } , { "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708728 ] } } , @@ -5322,7 +5342,7 @@ , { "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714228 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713176 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } , { "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711274 ] } } , @@ -5332,12 +5352,12 @@ , { "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711444 ] } } , +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.711291 ] } } +, { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } -, { "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.716418 ] } } @@ -5352,9 +5372,11 @@ , { "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458870, 37.711478 ] } } , +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.714160 ] } } +, { "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713277 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713159 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.713328 ] } } , @@ -5366,9 +5388,9 @@ , { "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.710375 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706114 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.705978 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460673, 37.706148 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706114 ] } } , { "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459900, 37.706351 ] } } , @@ -5378,15 +5400,15 @@ , { "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707404 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448657, 37.718505 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716061 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713311 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } , @@ -5414,15 +5436,13 @@ , { "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452197, 37.708881 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709611 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716706 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716469 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717148 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716638 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.716333 ] } } , @@ -5440,22 +5460,22 @@ , { "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438228, 37.711156 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711071 ] } } , { "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436039, 37.714245 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.716095 ] } } , +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.717674 ] } } +, { "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713481 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.714143 ] } } -, { "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.714024 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } @@ -5480,7 +5500,7 @@ , { "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434580, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708864 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.708966 ] } } , { "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } , @@ -5508,7 +5528,7 @@ , { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.788844 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789336 ] } } , { "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } , @@ -5516,6 +5536,8 @@ , { "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } , +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509940, 37.779907 ] } } +, { "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509897, 37.779890 ] } } , { "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512965, 37.779093 ] } } @@ -5532,9 +5554,9 @@ , { "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.773208 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771682 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771410 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509382, 37.771342 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771682 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779992 ] } } , @@ -5544,7 +5566,7 @@ , { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505519, 37.782129 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504103, 37.781824 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781824 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505219, 37.779738 ] } } , @@ -5556,6 +5578,8 @@ , { "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.779551 ] } } , +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499683, 37.784978 ] } } +, { "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499597, 37.785012 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502987, 37.781078 ] } } @@ -5564,9 +5588,9 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500670, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505949, 37.775209 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506249, 37.779042 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775243 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505949, 37.775209 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775345 ] } } , @@ -5586,8 +5610,6 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503288, 37.771614 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779144 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500606, 37.775498 ] } } @@ -5598,9 +5620,9 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771885 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497966, 37.771970 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.771783 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510283, 37.767882 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497966, 37.771970 ] } } , { "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510455, 37.767373 ] } } , @@ -5634,7 +5656,7 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758654 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505734, 37.756771 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758484 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505605, 37.754922 ] } } , @@ -5650,25 +5672,23 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779432 ] } } , -{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.781654 ] } } -, { "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.783418 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781790 ] } } , +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781993 ] } } +, { "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492216, 37.781739 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493503, 37.781502 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779789 ] } } -, { "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781535 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779738 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493203, 37.779551 ] } } , @@ -5684,9 +5704,9 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779721 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490048, 37.780772 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779958 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779721 ] } } , { "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783655 ] } } , @@ -5706,7 +5726,7 @@ , { "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493031, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492173, 37.777753 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493074, 37.777686 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494576, 37.775888 ] } } , @@ -5738,7 +5758,7 @@ , { "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490714, 37.772190 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772394 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } , @@ -5756,8 +5776,6 @@ , { "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } -, { "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481658, 37.784096 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782061 ] } } @@ -5768,7 +5786,9 @@ , { "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.781959 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.780247 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.779924 ] } } , @@ -5788,9 +5808,9 @@ , { "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.782214 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479255, 37.780450 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479470, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477496, 37.782282 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479255, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } , @@ -5800,6 +5820,8 @@ , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778279 ] } } , +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.778042 ] } } +, { "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.776414 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484362, 37.776176 ] } } @@ -5818,12 +5840,12 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483804, 37.772513 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +, { "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.776431 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.776617 ] } } @@ -5838,7 +5860,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476509, 37.772835 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764557 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764354 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495778, 37.762624 ] } } , @@ -5866,7 +5888,7 @@ , { "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493203, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492945, 37.761063 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761029 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757263 ] } } , @@ -5896,9 +5918,9 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486122, 37.765134 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487302, 37.753683 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486122, 37.765134 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } , @@ -5908,8 +5930,6 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.763133 ] } } -, { "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479684, 37.765423 ] } } @@ -5928,8 +5948,6 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763675 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } -, { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.761334 ] } } @@ -5940,7 +5958,7 @@ , { "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.481229, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485993, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481101, 37.757874 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } , @@ -5950,7 +5968,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753870 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.761538 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.759587 ] } } , @@ -5962,31 +5980,29 @@ , { "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761775 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761572 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760147 ] } } , +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.757891 ] } } +, { "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757857 ] } } , { "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.756008 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } -, { "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754141 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479599, 37.754328 ] } } , +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476680, 37.756211 ] } } +, { "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476423, 37.755991 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } -, { "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752784 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753022 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507493, 37.750918 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505476, 37.752835 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753022 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752818 ] } } , @@ -5994,7 +6010,7 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751189 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751020 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753123 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749323 ] } } , @@ -6006,7 +6022,7 @@ , { "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506700, 37.745353 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747423 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505090, 37.747457 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504919, 37.747287 ] } } , @@ -6014,7 +6030,7 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504790, 37.745421 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502301, 37.753022 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500155, 37.753123 ] } } , @@ -6026,26 +6042,26 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } , +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499812, 37.747542 ] } } +, { "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499511, 37.747677 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497623, 37.747626 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504833, 37.743741 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504661, 37.743571 ] } } -, { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504704, 37.741857 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741756 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504575, 37.739991 ] } } -, { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504404, 37.739821 ] } } , { "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505305, 37.738073 ] } } , +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736020 ] } } +, { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.737972 ] } } , { "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736122 ] } } @@ -6056,9 +6072,9 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500455, 37.741891 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498310, 37.741993 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500198, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498052, 37.742112 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498310, 37.741993 ] } } , { "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506807, 37.735477 ] } } , @@ -6066,6 +6082,8 @@ , { "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504919, 37.735392 ] } } , +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } +, { "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.735358 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735375 ] } } @@ -6074,8 +6092,6 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499297, 37.734561 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498953, 37.734120 ] } } -, { "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729741 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.728214 ] } } @@ -6100,44 +6116,42 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494855, 37.749561 ] } } -, -{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497408, 37.747609 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749798 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747575 ] } } , { "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745964 ] } } , +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495348, 37.745845 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748068 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.747762 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493331, 37.747830 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494791, 37.746082 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.745828 ] } } , +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +, { "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747898 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489040, 37.748000 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748135 ] } } -, { "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487924, 37.748068 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } , +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +, { "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.746354 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487667, 37.746150 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494662, 37.744216 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494533, 37.742349 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742299 ] } } @@ -6160,7 +6174,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744504 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.744267 ] } } , @@ -6168,7 +6182,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740771 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742400 ] } } , { "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } , @@ -6180,25 +6194,21 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483439, 37.748373 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481315, 37.748458 ] } } -, { "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481573, 37.748356 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750188 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479169, 37.748543 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476208, 37.748577 ] } } -, { "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748712 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748288 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } , @@ -6210,15 +6220,13 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742774 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.742723 ] } } -, { "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486100, 37.738956 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742876 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478783, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.743181 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742960 ] } } , @@ -6226,13 +6234,17 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496765, 37.733899 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496808, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496636, 37.733543 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734781 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493632, 37.734035 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733780 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493675, 37.733356 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } , @@ -6242,7 +6254,7 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493503, 37.730335 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733848 ] } } , @@ -6252,19 +6264,19 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } , +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485821, 37.734120 ] } } +, { "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734476 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483933, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734544 ] } } -, { "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482173, 37.734289 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486293, 37.729436 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477367, 37.734747 ] } } , @@ -6282,9 +6294,9 @@ , { "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484877, 37.724225 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.727111 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726975 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718692 ] } } , @@ -6292,7 +6304,7 @@ , { "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721832 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.720763 ] } } , @@ -6310,7 +6322,7 @@ , { "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476122, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475736, 37.726873 ] } } , { "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476852, 37.725973 ] } } , @@ -6320,7 +6332,7 @@ , { "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479599, 37.719592 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720101 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } , @@ -6330,15 +6342,17 @@ , { "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784368 ] } } , +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472517, 37.784486 ] } } +, { "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } , { "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , { "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470844, 37.784588 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782570 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475350, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.782485 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.782502 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471144, 37.782689 ] } } , @@ -6362,8 +6376,6 @@ , { "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785012 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.784808 ] } } -, { "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468998, 37.782790 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468355, 37.782689 ] } } @@ -6394,7 +6406,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773038 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.773191 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474191, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } , @@ -6402,6 +6414,8 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773259 ] } } , +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +, { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.777092 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.777058 ] } } @@ -6410,17 +6424,19 @@ , { "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775260 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469814, 37.773174 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773344 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773242 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.773462 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773479 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784876 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465737, 37.773310 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464471, 37.784673 ] } } , @@ -6440,6 +6456,8 @@ , { "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.781128 ] } } +, { "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.780891 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780874 ] } } @@ -6448,14 +6466,18 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461145, 37.781044 ] } } , +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.786911 ] } } +, { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786029 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.785656 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.785589 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783893 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783859 ] } } , +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } +, { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785962 ] } } , { "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } @@ -6474,16 +6496,16 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781078 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781145 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456424, 37.781264 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781518 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464235, 37.779161 ] } } -, { "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } , +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.777279 ] } } +, { "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461960, 37.777262 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776973 ] } } @@ -6502,24 +6524,24 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773937 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } +, { "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.777465 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777075 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 37.777143 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.777635 ] } } , +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777550 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774361 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774277 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454836, 37.774802 ] } } -, { "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.774599 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774751 ] } } @@ -6554,12 +6576,10 @@ , { "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.766016 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466509, 37.765677 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765847 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764286 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766084 ] } } -, { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.763794 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763913 ] } } @@ -6586,6 +6606,8 @@ , { "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.756364 ] } } , +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.755261 ] } } +, { "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473204, 37.754243 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.754107 ] } } @@ -6598,15 +6620,15 @@ , { "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.758400 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } -, { "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.760232 ] } } , { "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758535 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758518 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758383 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.758366 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } , @@ -6614,12 +6636,12 @@ , { "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } , +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } +, { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765948 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461874, 37.766050 ] } } -, { "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464278, 37.764082 ] } } , { "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464020, 37.764150 ] } } @@ -6634,7 +6656,9 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766118 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460501, 37.762658 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762725 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762522 ] } } , { "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762793 ] } } , @@ -6644,6 +6668,8 @@ , { "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.764354 ] } } , +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457626, 37.766050 ] } } +, { "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.764998 ] } } , { "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.763302 ] } } @@ -6654,16 +6680,12 @@ , { "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766203 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766084 ] } } -, { "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764354 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758467 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463119, 37.758688 ] } } -, { "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.757721 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } @@ -6672,7 +6694,7 @@ , { "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.754650 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.755397 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461488, 37.756907 ] } } , { "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } , @@ -6682,7 +6704,7 @@ , { "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.755329 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755295 ] } } , { "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786504 ] } } , @@ -6694,9 +6716,9 @@ , { "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784198 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.786911 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450244, 37.786708 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787488 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.786911 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } , @@ -6706,8 +6728,6 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782231 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449901, 37.782027 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } @@ -6718,17 +6738,15 @@ , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.786233 ] } } -, { "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.785368 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.785232 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787725 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446167, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784876 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787725 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.784758 ] } } , @@ -6742,9 +6760,9 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.777753 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.778093 ] } } , @@ -6754,6 +6772,8 @@ , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778228 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.775413 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.775362 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.774989 ] } } @@ -6764,9 +6784,7 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773038 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.773242 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773174 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450845, 37.773378 ] } } , @@ -6776,12 +6794,10 @@ , { "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.778754 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778771 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.777533 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778754 ] } } -, { "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.777567 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775888 ] } } @@ -6792,15 +6808,15 @@ , { "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443593, 37.779110 ] } } , { "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776770 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774022 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446039, 37.774056 ] } } , @@ -6808,9 +6824,9 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.773937 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445610, 37.771953 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774090 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774192 ] } } , @@ -6818,16 +6834,18 @@ , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } , +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787980 ] } } +, { "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439988, 37.786284 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785148 ] } } -, { "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439816, 37.785334 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.785249 ] } } , +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.785402 ] } } +, { "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785521 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.783842 ] } } @@ -6836,9 +6854,7 @@ , { "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.779500 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783418 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439559, 37.783180 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439516, 37.783164 ] } } , @@ -6860,7 +6876,7 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785996 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433143, 37.786148 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.786080 ] } } , @@ -6868,9 +6884,9 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.784724 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.783978 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.784724 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781078 ] } } , @@ -6880,6 +6896,8 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } +, { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432392, 37.781518 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.781502 ] } } @@ -6908,7 +6926,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438056, 37.776770 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441490, 37.774565 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774497 ] } } , @@ -6916,7 +6934,7 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.774989 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , @@ -6924,9 +6942,9 @@ , { "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437370, 37.771291 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434924, 37.778262 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435181, 37.778144 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775209 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434924, 37.778262 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.775142 ] } } , @@ -6948,7 +6966,7 @@ , { "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.771766 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433851, 37.771597 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.769171 ] } } , @@ -6958,7 +6976,7 @@ , { "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.768323 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.766406 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453334, 37.768238 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.766440 ] } } , @@ -6966,7 +6984,7 @@ , { "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769884 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448657, 37.769714 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450416, 37.768527 ] } } , @@ -6994,7 +7012,7 @@ , { "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764761 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449772, 37.764608 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.763133 ] } } , @@ -7010,6 +7028,8 @@ , { "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.767254 ] } } , +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767136 ] } } +, { "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.770342 ] } } @@ -7020,7 +7040,7 @@ , { "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.770426 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767339 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.767509 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766288 ] } } , @@ -7030,7 +7050,7 @@ , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.765134 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.764286 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.764269 ] } } , @@ -7038,7 +7058,7 @@ , { "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.765439 ] } } , -{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.764490 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765813 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } , @@ -7046,7 +7066,7 @@ , { "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442906, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761674 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449214, 37.761708 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449043, 37.760927 ] } } , @@ -7058,6 +7078,8 @@ , { "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.760910 ] } } , +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761843 ] } } +, { "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760927 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 37.760944 ] } } @@ -7066,7 +7088,7 @@ , { "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758790 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.758671 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758654 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } , @@ -7100,17 +7122,19 @@ , { "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.767729 ] } } , +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.768662 ] } } +, { "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.768832 ] } } , { "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.768052 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766491 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.766813 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438271, 37.766695 ] } } , { "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438142, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437198, 37.767288 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765355 ] } } , @@ -7118,8 +7142,6 @@ , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.769171 ] } } -, { "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435825, 37.767373 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.767611 ] } } @@ -7144,7 +7166,7 @@ , { "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762624 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762539 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762454 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } , @@ -7154,9 +7176,11 @@ , { "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.763913 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763947 ] } } +, { "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761708 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761606 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.761894 ] } } , @@ -7164,24 +7188,26 @@ , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760486 ] } } , +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438271, 37.761589 ] } } +, { "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.760622 ] } } , { "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437284, 37.760690 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759027 ] } } -, { "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440417, 37.755041 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.754040 ] } } , +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.754006 ] } } +, { "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437842, 37.757551 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755974 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755804 ] } } -, { "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439001, 37.755363 ] } } , +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438743, 37.753514 ] } } +, { "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , { "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435138, 37.760944 ] } } @@ -7200,14 +7226,14 @@ , { "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.757636 ] } } , +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.756092 ] } } +, { "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434452, 37.755957 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754413 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.752394 ] } } -, { "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472947, 37.750528 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750799 ] } } @@ -7218,19 +7244,19 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748712 ] } } , +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746982 ] } } +, { "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746744 ] } } , { "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745098 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473505, 37.745064 ] } } -, { "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748899 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748865 ] } } , { "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745081 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468355, 37.749035 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470286, 37.745030 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467668, 37.749086 ] } } , @@ -7240,13 +7266,15 @@ , { "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752767 ] } } +, { "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.749153 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.749323 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.748831 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743300 ] } } , @@ -7258,6 +7286,8 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741484 ] } } , +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, { "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.743062 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470286, 37.743402 ] } } @@ -7270,13 +7300,11 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475522, 37.739007 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737564 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475135, 37.737344 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470372, 37.736376 ] } } , { "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741433 ] } } , @@ -7296,7 +7324,7 @@ , { "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465909, 37.740754 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465737, 37.740839 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465780, 37.740788 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.738090 ] } } , @@ -7310,7 +7338,7 @@ , { "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465265, 37.739550 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750952 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751121 ] } } , { "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748169 ] } } , @@ -7330,6 +7358,8 @@ , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747898 ] } } , +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.747253 ] } } +, { "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458656, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457111, 37.747813 ] } } @@ -7338,7 +7368,9 @@ , { "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.745370 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745285 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.747796 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746371 ] } } , @@ -7350,13 +7382,13 @@ , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.740398 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740093 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463677, 37.739923 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740228 ] } } , { "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460072, 37.739380 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.740195 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459214, 37.740076 ] } } , { "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461445, 37.737734 ] } } , @@ -7368,28 +7400,30 @@ , { "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740873 ] } } , +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.743469 ] } } +, { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455480, 37.743113 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743232 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742859 ] } } -, { "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.741976 ] } } , { "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453935, 37.736682 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475264, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.734713 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474492, 37.734781 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.732779 ] } } , +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732456 ] } } +, { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474792, 37.732117 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.732015 ] } } , -{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735036 ] } } -, { "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734781 ] } } , { "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471616, 37.734798 ] } } @@ -7408,8 +7442,6 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731167 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474749, 37.731150 ] } } -, { "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.731184 ] } } , { "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474535, 37.731031 ] } } @@ -7420,8 +7452,6 @@ , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } -, { "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734696 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734849 ] } } @@ -7448,7 +7478,9 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474835, 37.727195 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721187 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721187 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721102 ] } } , @@ -7462,9 +7494,7 @@ , { "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472947, 37.721595 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.720220 ] } } , { "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } , @@ -7474,7 +7504,7 @@ , { "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471788, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719728 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719558 ] } } , @@ -7484,6 +7514,8 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719728 ] } } , +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469943, 37.719575 ] } } +, { "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.719745 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } @@ -7494,9 +7526,7 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 37.732287 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735494 ] } } -, -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460544, 37.735307 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.732032 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459643, 37.734561 ] } } , @@ -7514,7 +7544,7 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732083 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731099 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.730691 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457325, 37.731116 ] } } , @@ -7526,7 +7556,7 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464063, 37.726007 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724955 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461402, 37.724904 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.724955 ] } } , @@ -7548,7 +7578,7 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720101 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723462 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458055, 37.720050 ] } } , @@ -7558,9 +7588,11 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } , +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.721764 ] } } +, { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.720101 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455909, 37.720135 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454965, 37.720067 ] } } , @@ -7578,9 +7610,9 @@ , { "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.745760 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.745624 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745319 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745319 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.745624 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452090, 37.745081 ] } } , @@ -7600,7 +7632,7 @@ , { "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752072 ] } } , -{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.749289 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.751681 ] } } , { "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444923, 37.749119 ] } } , @@ -7610,25 +7642,27 @@ , { "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } , +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.748034 ] } } +, { "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.746456 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.746354 ] } } , { "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.748068 ] } } , +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.748051 ] } } +, { "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444193, 37.747151 ] } } , { "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748220 ] } } -, { "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746880 ] } } , -{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.746676 ] } } +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , { "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443035, 37.745183 ] } } , @@ -7648,8 +7682,6 @@ , { "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738192 ] } } -, { "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737717 ] } } , { "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451489, 37.737819 ] } } @@ -7670,22 +7702,22 @@ , { "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.739889 ] } } , +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +, { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446039, 37.738922 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 37.737479 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.736835 ] } } -, { "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736784 ] } } , +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } +, { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.736614 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442563, 37.752479 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752411 ] } } -, { "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441661, 37.750748 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442605, 37.749255 ] } } @@ -7694,8 +7726,6 @@ , { "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749306 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.752784 ] } } -, { "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } , { "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.751121 ] } } @@ -7710,6 +7740,8 @@ , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752699 ] } } +, { "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.751257 ] } } , { "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751088 ] } } @@ -7718,9 +7750,9 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.752767 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752886 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.752072 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.752767 ] } } , { "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751885 ] } } , @@ -7734,7 +7766,7 @@ , { "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749798 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748848 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749662 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.748678 ] } } , @@ -7754,21 +7786,23 @@ , { "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748152 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748271 ] } } -, { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743588 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.743622 ] } } , { "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437241, 37.738277 ] } } , +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744640 ] } } +, { "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.743249 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.741840 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435739, 37.741586 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435524, 37.741620 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.435868, 37.740279 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435353, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740195 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436898, 37.738599 ] } } , @@ -7778,9 +7812,11 @@ , { "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } , +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740025 ] } } +, { "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740059 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.738803 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.738684 ] } } , @@ -7794,7 +7830,7 @@ , { "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.736835 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.736071 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } , @@ -7806,10 +7842,12 @@ , { "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.731472 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731608 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.731608 ] } } , +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729945 ] } } +, { "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } , { "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.727620 ] } } @@ -7818,12 +7856,8 @@ , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.728299 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731608 ] } } -, { "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731404 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } -, { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.728485 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.735681 ] } } @@ -7834,17 +7868,17 @@ , { "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733950 ] } } , +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734561 ] } } +, { "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445567, 37.734001 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.731625 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734459 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731642 ] } } -, { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.731472 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.726041 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.731506 ] } } , { "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.725532 ] } } , @@ -7864,15 +7898,15 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449772, 37.723020 ] } } , +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452991, 37.720084 ] } } +, { "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719694 ] } } , { "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } -, { "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721934 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721968 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.722121 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722851 ] } } , @@ -7882,21 +7916,17 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723020 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723088 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 37.723224 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721051 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } -, { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720950 ] } } , { "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446210, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.720831 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } , @@ -7912,7 +7942,7 @@ , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } , -{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720610 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446554, 37.720610 ] } } , { "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722749 ] } } , @@ -7938,15 +7968,15 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729028 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.728994 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729028 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440073, 37.728808 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727739 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.730369 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.731506 ] } } , { "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } , @@ -7956,7 +7986,7 @@ , { "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.733916 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.734459 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734459 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } , @@ -7974,25 +8004,25 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.729588 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.725753 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441618, 37.726822 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442434, 37.725685 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.725753 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725973 ] } } , +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441189, 37.727145 ] } } +, { "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441318, 37.723360 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441232, 37.723258 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440803, 37.723428 ] } } -, { "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438657, 37.723665 ] } } , { "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718641 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439086, 37.719150 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718641 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } , @@ -8000,8 +8030,6 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435181, 37.724310 ] } } -, { "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724650 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724718 ] } } @@ -8010,7 +8038,7 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.723937 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723377 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723903 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.726347 ] } } , @@ -8020,17 +8048,17 @@ , { "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.723954 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.721459 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722375 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.721459 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434280, 37.722409 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432950, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.784639 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } , @@ -8048,12 +8076,12 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773751 ] } } -, { "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430761, 37.772139 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +, { "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } @@ -8066,7 +8094,7 @@ , { "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765677 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , @@ -8080,6 +8108,8 @@ , { "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745183 ] } } , +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +, { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } @@ -8092,15 +8122,15 @@ , { "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735630 ] } } -, { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , { "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.731829 ] } } , +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.730641 ] } } +, { "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728655 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } , @@ -8110,9 +8140,9 @@ , { "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722511 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478740, 37.717962 ] } } , @@ -8124,12 +8154,8 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717368 ] } } -, { "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } -, { "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448657, 37.718505 ] } } @@ -8138,6 +8164,8 @@ , { "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } , +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.717674 ] } } +, { "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } ] } , @@ -8162,14 +8190,16 @@ , { "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502129, 37.836446 ] } } , -{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493804, 37.833700 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833870 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833599 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493889, 37.833599 ] } } , { "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } , { "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483375, 37.833141 ] } } , +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.833090 ] } } +, { "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.832836 ] } } , { "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484019, 37.829514 ] } } @@ -8178,8 +8208,6 @@ , { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } -, { "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.803749 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788454 ] } } @@ -8190,7 +8218,7 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792304 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807224 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807563 ] } } , { "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806563 ] } } , @@ -8200,8 +8228,6 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.803477 ] } } -, { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.803596 ] } } , { "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.801782 ] } } @@ -8210,7 +8236,9 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801019 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.799832 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462218, 37.802901 ] } } , { "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800120 ] } } , @@ -8218,35 +8246,31 @@ , { "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797933 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457755, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803799 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.801765 ] } } -, { "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456768, 37.801629 ] } } , +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456381, 37.801375 ] } } +, { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } , { "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802291 ] } } -, { "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802070 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } , { "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.801731 ] } } , -{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } -, { "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.800188 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797882 ] } } , { "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.797730 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801070 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800748 ] } } , @@ -8254,6 +8278,8 @@ , { "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456295, 37.798391 ] } } , +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } +, { "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455094, 37.798238 ] } } , { "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800341 ] } } @@ -8270,7 +8296,7 @@ , { "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445223, 37.803630 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443893, 37.804545 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445180, 37.803409 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803766 ] } } , @@ -8278,9 +8304,9 @@ , { "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802477 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.801545 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.802850 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801901 ] } } , @@ -8288,7 +8314,7 @@ , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798408 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.798543 ] } } , { "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797153 ] } } , @@ -8300,9 +8326,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443120, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.800052 ] } } -, -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.800036 ] } } , { "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.798662 ] } } , @@ -8310,7 +8334,9 @@ , { "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.796475 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795593 ] } } , { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.795898 ] } } , @@ -8332,7 +8358,7 @@ , { "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441833, 37.803070 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441275, 37.800103 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } , @@ -8342,6 +8368,8 @@ , { "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799290 ] } } , +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } +, { "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437456, 37.800714 ] } } , { "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } @@ -8350,14 +8378,14 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802816 ] } } +, { "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.802630 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436512, 37.802392 ] } } , { "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802748 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.805410 ] } } -, { "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804868 ] } } , { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } @@ -8370,15 +8398,15 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800883 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.799713 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799696 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800951 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435610, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.800934 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.801104 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796780 ] } } , @@ -8386,17 +8414,15 @@ , { "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.797119 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.796967 ] } } , { "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.797577 ] } } , { "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.796170 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796729 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , @@ -8404,7 +8430,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.789964 ] } } , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , @@ -8414,13 +8440,13 @@ , { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788505 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437027, 37.795932 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794881 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436855, 37.795848 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794135 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794915 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794135 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.793796 ] } } , @@ -8440,7 +8466,7 @@ , { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.788844 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789319 ] } } , { "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } , @@ -8448,9 +8474,9 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.789828 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.789743 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.789828 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , { "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } , @@ -8462,9 +8488,9 @@ , { "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.786911 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.786911 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787488 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.786911 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } , @@ -8476,6 +8502,8 @@ , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } , +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787980 ] } } +, { "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } @@ -8484,14 +8512,16 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } , { "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } , +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } +, { "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } @@ -8508,22 +8538,20 @@ , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718845 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.719371 ] } } -, -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718777 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719388 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719388 ] } } -, { "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719049 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } @@ -8532,8 +8560,6 @@ , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719931 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } -, { "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.715128 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712938 ] } } @@ -8564,7 +8590,7 @@ , { "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711105 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.711071 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } , @@ -8586,7 +8612,7 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708983 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.708660 ] } } , @@ -8598,41 +8624,41 @@ , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } , +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710018 ] } } +, { "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711852 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.712225 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.713396 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.712021 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } +, { "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.716214 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715026 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } -, { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.713243 ] } } , { "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.713345 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712717 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } -, { "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711054 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710969 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712768 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712191 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710731 ] } } , @@ -8644,9 +8670,9 @@ , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.708490 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.708473 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.708490 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.708643 ] } } , @@ -8674,7 +8700,7 @@ , { "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407715, 37.717283 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.716655 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } , @@ -8694,24 +8720,22 @@ , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.710205 ] } } , +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409518, 37.710001 ] } } +, { "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } , { "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711563 ] } } -, { "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.711444 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711478 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406728, 37.713855 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , { "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713210 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405140, 37.712564 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711885 ] } } -, { "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.710561 ] } } , { "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } @@ -8724,7 +8748,7 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716265 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.716350 ] } } , { "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , @@ -8742,7 +8766,7 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712361 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712174 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712293 ] } } , @@ -8754,21 +8778,21 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713549 ] } } , +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.712904 ] } } +, { "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } , { "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.712021 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399175, 37.711580 ] } } -, { "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398961, 37.711614 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709848 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406986, 37.709339 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405097, 37.708966 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.709339 ] } } , -{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.708830 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405097, 37.708966 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.709526 ] } } , @@ -8782,7 +8806,7 @@ , { "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.710969 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.711240 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.710884 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , @@ -8801,6 +8825,8 @@ { "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.712123 ] } } ] } ] } , @@ -8814,14 +8840,16 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.783978 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783011 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } +, { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781518 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } @@ -8844,6 +8872,8 @@ , { "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.764490 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.763947 ] } } +, { "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.760961 ] } } @@ -8852,12 +8882,10 @@ , { "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748271 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749662 ] } } , { "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.738175 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736835 ] } } -, { "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734578 ] } } @@ -8872,29 +8900,33 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721612 ] } } , +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, { "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } , +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } +, { "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416899, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } -, { "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.788437 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.788319 ] } } +, { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788404 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788200 ] } } , @@ -8918,9 +8950,11 @@ , { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } , +{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +, { "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788539 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789201 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , @@ -8928,16 +8962,18 @@ , { "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393081, 37.788861 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 37.786572 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.784639 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428443, 37.786640 ] } } , +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +, { "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.784842 ] } } @@ -8946,11 +8982,11 @@ , { "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.785894 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.781756 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.782129 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } , { "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.786114 ] } } , @@ -8960,12 +8996,12 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } +, { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } , { "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.786572 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421319, 37.786097 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.785775 ] } } @@ -8978,8 +9014,6 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784673 ] } } , -{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } -, { "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.782400 ] } } , { "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } @@ -9000,6 +9034,8 @@ , { "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778839 ] } } , +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778856 ] } } +, { "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } @@ -9010,39 +9046,39 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } , +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776057 ] } } +, { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776024 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426941, 37.779178 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } -, { "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777380 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428272, 37.776261 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773751 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430761, 37.772139 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +, { "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.772428 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779382 ] } } -, { "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777550 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776532 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423294, 37.777737 ] } } , { "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.775973 ] } } , @@ -9054,7 +9090,7 @@ , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773819 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.772971 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772767 ] } } , @@ -9076,7 +9112,7 @@ , { "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.771766 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787827 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } , @@ -9086,7 +9122,7 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786131 ] } } , { "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419646, 37.785012 ] } } , @@ -9098,15 +9134,17 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.786352 ] } } , +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } +, { "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.785080 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782977 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.782858 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.782282 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783180 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.782180 ] } } , @@ -9116,9 +9154,9 @@ , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.780162 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419002, 37.780297 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783350 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.780162 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.783231 ] } } , @@ -9136,21 +9174,21 @@ , { "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.780569 ] } } , +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.780382 ] } } +, { "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.780603 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780772 ] } } -, { "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787352 ] } } , { "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.787454 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.786555 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.786420 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786759 ] } } , @@ -9168,6 +9206,8 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } +, { "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786029 ] } } @@ -9176,11 +9216,9 @@ , { "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.785080 ] } } -, { "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414067, 37.783672 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781654 ] } } , @@ -9192,7 +9230,7 @@ , { "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.781078 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.780569 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.780637 ] } } , { "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } , @@ -9200,12 +9238,12 @@ , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411921, 37.782061 ] } } , +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783384 ] } } +, { "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782095 ] } } , { "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.781162 ] } } -, { "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.781281 ] } } , { "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412393, 37.780297 ] } } @@ -9220,6 +9258,8 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775532 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775209 ] } } +, { "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } , { "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } @@ -9238,7 +9278,7 @@ , { "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.773310 ] } } , @@ -9262,10 +9302,6 @@ , { "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.778788 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.778500 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414367, 37.779093 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777228 ] } } , { "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } @@ -9276,15 +9312,13 @@ , { "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410762, 37.779178 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.779348 ] } } -, { "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.776210 ] } } , { "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776125 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772123 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.775108 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772123 ] } } , { "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.771580 ] } } , @@ -9294,6 +9328,8 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.773886 ] } } , +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774768 ] } } +, { "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410376, 37.772394 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } @@ -9302,39 +9338,39 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429388, 37.769409 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.769460 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431276, 37.767526 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767814 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767763 ] } } , { "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767662 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767339 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769782 ] } } , { "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427242, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } -, { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428873, 37.767780 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767373 ] } } , { "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.766271 ] } } , { "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765677 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.764456 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } , { "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , @@ -9348,9 +9384,9 @@ , { "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768391 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.767848 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764710 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.766780 ] } } , { "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } , @@ -9370,7 +9406,7 @@ , { "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428401, 37.761470 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.761233 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761368 ] } } , { "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , @@ -9402,7 +9438,7 @@ , { "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760350 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.761419 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421491, 37.759859 ] } } , @@ -9412,7 +9448,7 @@ , { "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755550 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.756601 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } , @@ -9422,12 +9458,12 @@ , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.767797 ] } } +, { "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768204 ] } } , { "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419775, 37.767136 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.768459 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.766203 ] } } @@ -9446,8 +9482,6 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.765219 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762115 ] } } @@ -9458,35 +9492,37 @@ , { "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769103 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410741, 37.769341 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.768103 ] } } , { "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.765372 ] } } , +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } +, { "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762216 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765304 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 37.765558 ] } } -, { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765711 ] } } , +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764218 ] } } +, { "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764015 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763133 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.762929 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760656 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417071, 37.761877 ] } } , @@ -9530,8 +9566,6 @@ , { "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786504 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786335 ] } } -, { "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785351 ] } } @@ -9540,7 +9574,7 @@ , { "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783910 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.784317 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407887, 37.785368 ] } } , @@ -9548,7 +9582,7 @@ , { "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.784164 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.783994 ] } } , { "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784673 ] } } , @@ -9556,7 +9590,7 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786640 ] } } , { "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404583, 37.786589 ] } } , @@ -9568,7 +9602,7 @@ , { "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405741, 37.785860 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785521 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784334 ] } } , @@ -9586,7 +9620,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404754, 37.781451 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787997 ] } } , @@ -9594,33 +9628,33 @@ , { "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.787708 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.785962 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786504 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786029 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784639 ] } } , { "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.784249 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , { "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786199 ] } } , +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784842 ] } } +, { "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.784944 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.783994 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783961 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.783978 ] } } , { "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "5th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780297 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780382 ] } } +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.780433 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400849, 37.782146 ] } } , @@ -9630,9 +9664,9 @@ , { "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409217, 37.777923 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407844, 37.776634 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776855 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.778618 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407844, 37.776634 ] } } , { "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404239, 37.777313 ] } } , @@ -9642,9 +9676,9 @@ , { "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777143 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773530 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.772530 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773530 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407072, 37.772326 ] } } , @@ -9652,9 +9686,9 @@ , { "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.774701 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771546 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771546 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.778907 ] } } , @@ -9662,7 +9696,7 @@ , { "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778941 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.776159 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776159 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399948, 37.777940 ] } } , @@ -9674,9 +9708,9 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773666 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.771699 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773666 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } , @@ -9690,9 +9724,9 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395313, 37.784520 ] } } +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.784181 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395313, 37.784520 ] } } , { "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395055, 37.784283 ] } } , @@ -9702,27 +9736,29 @@ , { "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.782434 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782638 ] } } +, { "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398059, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.783282 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.782841 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394583, 37.779975 ] } } -, { "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779551 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } , +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +, { "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.781858 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781824 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390549, 37.780704 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783587 ] } } , @@ -9756,13 +9792,15 @@ , { "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776312 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776057 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.776278 ] } } , { "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397974, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779280 ] } } , @@ -9778,8 +9816,6 @@ , { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389777, 37.772614 ] } } -, { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772835 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.771156 ] } } @@ -9796,9 +9832,7 @@ , { "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.764218 ] } } -, -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764727 ] } } , { "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , @@ -9806,13 +9840,15 @@ , { "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763234 ] } } , +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.762200 ] } } +, { "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770223 ] } } , { "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403295, 37.769884 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.768730 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767305 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.767458 ] } } , { "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } , @@ -9828,7 +9864,7 @@ , { "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764863 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.764778 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.764761 ] } } , { "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } , @@ -9836,7 +9872,7 @@ , { "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764981 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766220 ] } } , { "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764931 ] } } , @@ -9862,7 +9898,7 @@ , { "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409174, 37.754311 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754141 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.757484 ] } } , @@ -9878,40 +9914,44 @@ , { "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.760741 ] } } , +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.761979 ] } } +, { "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.759655 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } , { "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.759672 ] } } , +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.759621 ] } } +, { "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.759434 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.759587 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758383 ] } } -, { "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.760927 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.759655 ] } } , +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.758128 ] } } +, { "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } -, { "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , { "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.756160 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403896, 37.754481 ] } } , -{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754447 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754447 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.754328 ] } } , +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } +, { "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.757433 ] } } , { "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.757331 ] } } @@ -9924,8 +9964,6 @@ , { "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754888 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.754854 ] } } -, { "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.766491 ] } } , { "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.766389 ] } } @@ -9934,7 +9972,7 @@ , { "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764981 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762420 ] } } , @@ -9942,12 +9980,10 @@ , { "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762624 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393210, 37.762725 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.762827 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391021, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766864 ] } } -, { "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766763 ] } } , { "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769714 ] } } @@ -9958,8 +9994,6 @@ , { "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389348, 37.767797 ] } } -, { "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.766576 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } @@ -9982,12 +10016,12 @@ , { "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761402 ] } } -, { "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.760130 ] } } , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759977 ] } } , +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } +, { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758111 ] } } , { "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.760028 ] } } @@ -9996,12 +10030,16 @@ , { "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } , +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.755974 ] } } +, { "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.754803 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753548 ] } } , { "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.753904 ] } } , +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.754667 ] } } +, { "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.754701 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.757263 ] } } @@ -10012,7 +10050,7 @@ , { "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395785, 37.755448 ] } } , -{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.753734 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391794, 37.757772 ] } } , @@ -10034,9 +10072,9 @@ , { "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.758009 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.755159 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.757585 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.755007 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.755159 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387888, 37.755685 ] } } , @@ -10050,9 +10088,9 @@ , { "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.751800 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427328, 37.751766 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.749391 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , { "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 37.749170 ] } } , @@ -10064,9 +10102,9 @@ , { "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745183 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746778 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } , { "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } , @@ -10090,13 +10128,15 @@ , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426448, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742163 ] } } , { "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.737734 ] } } , { "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.737717 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.736326 ] } } , { "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.739702 ] } } , @@ -10106,9 +10146,9 @@ , { "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.737140 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741908 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425740, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.742163 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741908 ] } } , { "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.742299 ] } } , @@ -10116,7 +10156,7 @@ , { "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.742434 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741043 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.741009 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741009 ] } } , @@ -10124,7 +10164,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.742434 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.739923 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742434 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425482, 37.739618 ] } } , @@ -10134,6 +10174,8 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424409, 37.739550 ] } } , +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.739380 ] } } +, { "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424066, 37.739838 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739719 ] } } @@ -10146,15 +10188,17 @@ , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.737446 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740195 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.740296 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.752360 ] } } , { "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.752173 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.752733 ] } } +, { "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.752309 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752173 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.751953 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750748 ] } } , @@ -10172,21 +10216,23 @@ , { "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750646 ] } } , +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +, { "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420418, 37.748661 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } -, { "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.748237 ] } } +, { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.746931 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746744 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.746642 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.745913 ] } } , @@ -10198,8 +10244,6 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.752750 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.752462 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } @@ -10208,9 +10252,7 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749221 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748475 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752682 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } , @@ -10226,12 +10268,12 @@ , { "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" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.748203 ] } } +, { "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748339 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.748424 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.744284 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739923 ] } } @@ -10248,7 +10290,7 @@ , { "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.744131 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.744284 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741450 ] } } , @@ -10282,13 +10324,11 @@ , { "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735630 ] } } -, { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , { "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733475 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.733322 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.733458 ] } } , @@ -10298,15 +10338,15 @@ , { "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733339 ] } } , -{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429645, 37.731387 ] } } +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.730641 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429259, 37.730658 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429645, 37.731387 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730454 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728655 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } , { "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426383, 37.730963 ] } } , @@ -10316,7 +10356,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.425911, 37.734035 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424409, 37.735901 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.735426 ] } } , @@ -10352,7 +10392,7 @@ , { "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721612 ] } } , { "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721357 ] } } , @@ -10362,29 +10402,29 @@ , { "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721221 ] } } , +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.426984, 37.720899 ] } } +, { "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720508 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.720406 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724650 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724734 ] } } , { "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725074 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725193 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725430 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725600 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.720525 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.719354 ] } } -, -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719184 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735783 ] } } , @@ -10396,7 +10436,7 @@ , { "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418916, 37.732609 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.732287 ] } } , { "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.735630 ] } } , @@ -10408,9 +10448,9 @@ , { "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733271 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732830 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732524 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733271 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.729130 ] } } , @@ -10418,33 +10458,33 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.728825 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.734866 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734849 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.734663 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.735783 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.734934 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } , { "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.733610 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.734900 ] } } , +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729843 ] } } +, { "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } , { "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727399 ] } } , { "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } -, { "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730963 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.725973 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725855 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726398 ] } } , @@ -10454,9 +10494,9 @@ , { "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726584 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718709 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726584 ] } } , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , @@ -10464,7 +10504,9 @@ , { "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.723920 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.723241 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410591, 37.723122 ] } } , { "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.722732 ] } } , @@ -10472,22 +10514,20 @@ , { "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722834 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718760 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409174, 37.752513 ] } } -, { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408960, 37.752750 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751291 ] } } , +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752818 ] } } +, { "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.751105 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } -, { "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.752988 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.753242 ] } } @@ -10514,7 +10554,7 @@ , { "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750850 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747117 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750748 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.746405 ] } } , @@ -10526,7 +10566,7 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.743317 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.742842 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405183, 37.742876 ] } } , { "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.741331 ] } } , @@ -10534,14 +10574,14 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.739668 ] } } , +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738362 ] } } +, { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406986, 37.737717 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.739855 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738701 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.738141 ] } } -, { "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.737938 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } @@ -10556,7 +10596,7 @@ , { "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.739125 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.738786 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739550 ] } } , @@ -10588,7 +10628,9 @@ , { "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396214, 37.750002 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752343 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396257, 37.747338 ] } } , @@ -10596,8 +10638,6 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746167 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745964 ] } } -, { "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387846, 37.752547 ] } } @@ -10608,7 +10648,7 @@ , { "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396922, 37.742774 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.742078 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.738243 ] } } , @@ -10618,7 +10658,9 @@ , { "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737208 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.736088 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.736207 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736835 ] } } , @@ -10626,9 +10668,9 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744233 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390463, 37.744029 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.740687 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742977 ] } } , @@ -10670,13 +10712,15 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.734238 ] } } , +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.732406 ] } } +, { "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732338 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.733271 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733050 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732966 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405355, 37.732049 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733050 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } , @@ -10696,6 +10740,8 @@ , { "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.734764 ] } } , +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401063, 37.735273 ] } } +, { "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399390, 37.731829 ] } } @@ -10704,15 +10750,15 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403123, 37.730284 ] } } , -{ "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" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.727976 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403638, 37.727518 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403553, 37.727331 ] } } , { "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727739 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728468 ] } } , -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.730369 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.728078 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730182 ] } } , @@ -10722,7 +10768,7 @@ , { "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.726143 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.726669 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.726534 ] } } , { "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } , @@ -10754,17 +10800,17 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.402995, 37.726364 ] } } , +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402694, 37.725312 ] } } +, { "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724073 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402093, 37.724174 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723648 ] } } -, { "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723869 ] } } , { "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.400205, 37.723394 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.723648 ] } } , { "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.723292 ] } } , @@ -10774,19 +10820,19 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721595 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } +, { "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400935, 37.721476 ] } } , { "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719371 ] } } -, { "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719049 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.731795 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.731998 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395270, 37.731167 ] } } , @@ -10796,9 +10842,7 @@ , { "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727908 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735155 ] } } -, -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.735172 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392652, 37.735019 ] } } , @@ -10812,9 +10856,9 @@ , { "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390807, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.734086 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.733848 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734018 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , @@ -10824,15 +10868,15 @@ , { "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390335, 37.735409 ] } } , +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734493 ] } } +, { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390292, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390034, 37.731642 ] } } -, { "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732898 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392008, 37.730658 ] } } , { "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729368 ] } } , @@ -10840,13 +10884,11 @@ , { "type": "Feature", "properties": { "name": "3rd St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.729164 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.729198 ] } } -, { "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727908 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728078 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726924 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397931, 37.723003 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725668 ] } } , @@ -10870,15 +10912,15 @@ , { "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719761 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722409 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.722392 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395399, 37.722630 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722375 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394841, 37.722885 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.721408 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.727060 ] } } , @@ -10886,9 +10928,9 @@ , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391450, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720339 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } , @@ -10908,11 +10950,9 @@ , { "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387288, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } -, { "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.746048 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386644, 37.745760 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } , @@ -10926,27 +10966,27 @@ , { "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383168, 37.743690 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384627, 37.741128 ] } } -, { "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384498, 37.740687 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.738956 ] } } +, { "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385871, 37.736597 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739991 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739855 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } , { "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739719 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384112, 37.737700 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381794, 37.738158 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384155, 37.737581 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381794, 37.738158 ] } } , { "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } , @@ -10954,6 +10994,8 @@ , { "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737072 ] } } , +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.736512 ] } } +, { "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } , { "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.737004 ] } } @@ -10962,7 +11004,7 @@ , { "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732049 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731845 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387030, 37.731845 ] } } , { "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386601, 37.732355 ] } } , @@ -10972,7 +11014,9 @@ , { "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735952 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733033 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383039, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733339 ] } } , @@ -10980,19 +11024,19 @@ , { "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386558, 37.729554 ] } } , +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } +, { "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385142, 37.730793 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.729520 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385614, 37.727348 ] } } -, { "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730148 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384584, 37.728366 ] } } , { "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , @@ -11002,17 +11046,15 @@ , { "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381837, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733288 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732490 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379692, 37.732389 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } -, { "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379348, 37.734391 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.734086 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , @@ -11024,7 +11066,7 @@ , { "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730573 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381365, 37.729385 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727976 ] } } , @@ -11036,9 +11078,7 @@ , { "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.728214 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386687, 37.726041 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386773, 37.726109 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375872, 37.731981 ] } } , @@ -11046,7 +11086,7 @@ , { "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374027, 37.730929 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730250 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375271, 37.729877 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373748, 37.730929 ] } } , @@ -11058,7 +11098,7 @@ , { "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729130 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725329 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367933, 37.725329 ] } } , @@ -11076,12 +11116,12 @@ , { "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } -, { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } +, { "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717759 ] } } @@ -11102,10 +11142,6 @@ { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788709 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775226 ] } } -, { "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778669 ] } } @@ -11130,8 +11166,6 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } -, { "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797577 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792711 ] } } @@ -11146,15 +11180,13 @@ , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806342 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807021 ] } } -, { "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420676, 37.806715 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.805580 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.806682 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805698 ] } } , @@ -11162,23 +11194,21 @@ , { "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808309 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417371, 37.807241 ] } } -, { "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.805512 ] } } , +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } +, { "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808072 ] } } , { "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.807411 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.806563 ] } } -, { "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806512 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.807834 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807800 ] } } , @@ -11208,9 +11238,9 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.802019 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } , { "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } , @@ -11220,11 +11250,15 @@ , { "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427371, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.805105 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798204 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.804952 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425096, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804291 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804817 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.804105 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423980, 37.805308 ] } } , @@ -11232,7 +11266,9 @@ , { "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423787, 37.803376 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424881, 37.802189 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424624, 37.802579 ] } } , @@ -11242,7 +11278,7 @@ , { "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801629 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424409, 37.800324 ] } } , { "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.798577 ] } } , @@ -11254,18 +11290,20 @@ , { "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.798679 ] } } , +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797730 ] } } +, { "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.796950 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } -, { "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793355 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793575 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.792541 ] } } , +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } +, { "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792168 ] } } @@ -11276,8 +11314,6 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.790676 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } -, { "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793813 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } @@ -11296,6 +11332,8 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } , +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +, { "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.422993, 37.794169 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.793830 ] } } @@ -11304,6 +11342,8 @@ , { "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.793084 ] } } , +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792439 ] } } +, { "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794169 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.793694 ] } } @@ -11312,8 +11352,6 @@ , { "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.793491 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426126, 37.790879 ] } } -, { "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.791897 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.791151 ] } } @@ -11326,28 +11364,26 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791151 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.790371 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790438 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.791931 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421148, 37.791507 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790642 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.790438 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.789506 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790642 ] } } , { "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.801901 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.804511 ] } } -, { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.805325 ] } } , { "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } @@ -11364,38 +11400,32 @@ , { "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799120 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419131, 37.799171 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798340 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798306 ] } } -, { "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } , { "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 37.799442 ] } } , { "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799527 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.799679 ] } } -, { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.804952 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.804376 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803782 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.803409 ] } } , { "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802680 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.801918 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412651, 37.802087 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411878, 37.804952 ] } } -, { "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.802765 ] } } @@ -11404,7 +11434,7 @@ , { "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.801188 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803121 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801222 ] } } , { "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799730 ] } } , @@ -11428,17 +11458,17 @@ , { "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.797340 ] } } , +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +, { "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.795322 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } -, { "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.796339 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795390 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795542 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794593 ] } } , @@ -11448,12 +11478,12 @@ , { "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793406 ] } } , +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } +, { "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.794542 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793626 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } -, { "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795576 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794847 ] } } @@ -11468,25 +11498,25 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.790812 ] } } , { "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } , { "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789658 ] } } , +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789353 ] } } +, { "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.791965 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.791829 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417457, 37.791100 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791015 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792049 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.791083 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.791134 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417285, 37.790167 ] } } , @@ -11494,7 +11524,7 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416899, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.790150 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.788421 ] } } , @@ -11514,7 +11544,7 @@ , { "type": "Feature", "properties": { "name": "Clay St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.793355 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796204 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796373 ] } } , @@ -11524,9 +11554,9 @@ , { "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411664, 37.795593 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411492, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.796407 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409990, 37.796560 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.795305 ] } } , @@ -11540,6 +11570,8 @@ , { "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } , +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793779 ] } } +, { "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414153, 37.792388 ] } } , { "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.791473 ] } } @@ -11550,13 +11582,15 @@ , { "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.788319 ] } } +, { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , { "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412307, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791863 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788844 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808224 ] } } , @@ -11568,6 +11602,8 @@ , { "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407200, 37.807173 ] } } , +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +, { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806783 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806614 ] } } @@ -11576,15 +11612,15 @@ , { "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.803494 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.802341 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.801409 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803562 ] } } , { "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802714 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } , { "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } , @@ -11604,17 +11640,13 @@ , { "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800680 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.796780 ] } } -, { "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407329, 37.797848 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797594 ] } } , { "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.800951 ] } } -, -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.797628 ] } } , @@ -11632,7 +11664,7 @@ , { "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403252, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.802969 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.802341 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801409 ] } } , @@ -11666,7 +11698,7 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796238 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.794627 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , @@ -11676,8 +11708,6 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.792880 ] } } -, { "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 37.793728 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } @@ -11690,8 +11720,6 @@ , { "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } -, { "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406299, 37.793406 ] } } @@ -11700,7 +11728,7 @@ , { "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404411, 37.794474 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404540, 37.793762 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404840, 37.793575 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.792880 ] } } , @@ -11708,11 +11736,9 @@ , { "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792066 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409132, 37.792304 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.791931 ] } } -, -{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791083 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } , { "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.792304 ] } } , @@ -11720,9 +11746,9 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788387 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } , @@ -11732,8 +11758,6 @@ , { "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.788302 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792372 ] } } -, { "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788539 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.789811 ] } } @@ -11742,6 +11766,8 @@ , { "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795898 ] } } , +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.795729 ] } } +, { "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.796051 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.794678 ] } } @@ -11752,8 +11778,6 @@ , { "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792762 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401493, 37.794474 ] } } -, { "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.792931 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.794813 ] } } @@ -11764,7 +11788,7 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794169 ] } } , -{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } , { "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.793135 ] } } , @@ -11772,9 +11796,9 @@ , { "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793287 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.793270 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791931 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790913 ] } } , @@ -11790,15 +11814,15 @@ , { "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790286 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400935, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400506, 37.790354 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790337 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } , { "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.791303 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , @@ -11818,7 +11842,7 @@ , { "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797831 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797797 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.797085 ] } } , @@ -11828,7 +11852,9 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.794491 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.793592 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793626 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } , { "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792473 ] } } , @@ -11836,23 +11862,25 @@ , { "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397716, 37.792541 ] } } , +{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.792609 ] } } +, { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793525 ] } } , { "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.793982 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.793711 ] } } -, { "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792982 ] } } , { "type": "Feature", "properties": { "name": "Market St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.792575 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793016 ] } } , +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793185 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396171, 37.793474 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796678 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394454, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.795102 ] } } , @@ -11870,6 +11898,8 @@ , { "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.794423 ] } } , +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +, { "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393725, 37.794220 ] } } , { "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } @@ -11878,6 +11908,8 @@ , { "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793898 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792660 ] } } +, { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793457 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } @@ -11894,12 +11926,12 @@ , { "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396944, 37.790150 ] } } , +{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +, { "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789251 ] } } , { "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.789641 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788522 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } @@ -11908,8 +11940,6 @@ , { "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } -, { "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790845 ] } } , { "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393553, 37.790608 ] } } @@ -11920,12 +11950,16 @@ , { "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.789947 ] } } , +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789184 ] } } +, { "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394454, 37.789930 ] } } , { "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.793813 ] } } +, { "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392309, 37.793779 ] } } , { "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } @@ -11934,8 +11968,6 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792677 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392523, 37.791405 ] } } -, { "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392395, 37.791337 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792405 ] } } @@ -11946,7 +11978,9 @@ , { "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393081, 37.788844 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791083 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790812 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790744 ] } } , @@ -11954,7 +11988,9 @@ , { "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789455 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.789591 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } , { "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377203, 37.828175 ] } } , @@ -11962,17 +11998,17 @@ , { "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829836 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373469, 37.829819 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376301, 37.825463 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } , { "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } , { "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374284, 37.823396 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374971, 37.823243 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374284, 37.823396 ] } } , { "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373898, 37.823514 ] } } , @@ -11994,27 +12030,25 @@ , { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369521, 37.818497 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821938 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822379 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819938 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821938 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370894, 37.813242 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813056 ] } } , { "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370851, 37.813140 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369864, 37.812039 ] } } -, { "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811801 ] } } , { "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M" }, "geometry": { "type": "Point", "coordinates": [ -122.364199, 37.820751 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364542, 37.811852 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } , { "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363770, 37.811683 ] } } , @@ -12024,13 +12058,15 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } +, { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787827 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } , @@ -12040,20 +12076,22 @@ , { "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } , +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } +, { "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787352 ] } } , { "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.787454 ] } } , { "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786759 ] } } , { "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } +, { "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.787454 ] } } @@ -12070,23 +12108,21 @@ , { "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.787708 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "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": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788692 ] } } ] } ] } , diff --git a/tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json b/tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json index b50a2c709..c42f893f3 100644 --- a/tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json +++ b/tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json @@ -5,24 +5,28 @@ "description": "tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json.check.mbtiles -z10 --retain-points-multiplier 10 -M10000 --drop-smallest-as-needed tests/muni/muni.json", -"json": "{\"vector_layers\":[{\"id\":\"muni\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":10,\"fields\":{\"name\":\"String\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}},{\"id\":\"subway\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":10,\"fields\":{\"name\":\"String\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":2,\"layers\":[{\"layer\":\"muni\",\"count\":4592,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"name\",\"count\":1000,\"type\":\"string\",\"values\":[\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":1000,\"type\":\"number\",\"values\":[0,1,10,100,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,101,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,102,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,103,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,104,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,105,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,106,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,107,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,108,1080,1081,1082,1083,1084,1085,1086,1087],\"min\":0,\"max\":4576}]},{\"layer\":\"subway\",\"count\":19,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"name\",\"count\":18,\"type\":\"string\",\"values\":[\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":19,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,2,3,4,5,6,7,8,9],\"min\":0,\"max\":18}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"muni\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":10,\"fields\":{\"name\":\"String\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}},{\"id\":\"subway\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":10,\"fields\":{\"name\":\"String\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":2,\"layers\":[{\"layer\":\"muni\",\"count\":4592,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"name\",\"count\":1000,\"type\":\"string\",\"values\":[\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":1000,\"type\":\"number\",\"values\":[0,1,10,100,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,101,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,102,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,103,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,104,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,105,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,106,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,107,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,108,1080,1081,1082,1083,1084,1085,1086,1087],\"min\":0,\"max\":4564}]},{\"layer\":\"subway\",\"count\":19,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"name\",\"count\":18,\"type\":\"string\",\"values\":[\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":19,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,2,3,4,5,6,7,8,9],\"min\":0,\"max\":18}]}]}}", "maxzoom": "10", "minzoom": "0", "name": "tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":4606},{\"dropped_by_rate\":4600},{\"dropped_by_rate\":4580},{\"dropped_by_rate\":4538},{\"dropped_by_rate\":4437},{\"dropped_by_rate\":4161},{\"dropped_by_rate\":3498},{\"dropped_by_rate\":1846},{\"dropped_by_rate\":1068,\"dropped_as_needed\":314,\"tile_size_desired\":68538},{\"dropped_by_rate\":1061,\"dropped_as_needed\":1591,\"tile_size_desired\":72665},{\"dropped_as_needed\":4481,\"tile_size_desired\":67958}]", +"strategies": "[{\"dropped_by_rate\":4604},{\"dropped_by_rate\":4599},{\"dropped_by_rate\":4579},{\"dropped_by_rate\":4539},{\"dropped_by_rate\":4436},{\"dropped_by_rate\":4195},{\"dropped_by_rate\":3568},{\"dropped_by_rate\":1992},{\"dropped_by_rate\":1077,\"dropped_as_needed\":298,\"tile_size_desired\":68065},{\"dropped_by_rate\":1104,\"dropped_as_needed\":1585,\"tile_size_desired\":72398},{\"dropped_as_needed\":4481,\"tile_size_desired\":67958}]", "tippecanoe_decisions": "{\"basezoom\":10,\"droprate\":2.5,\"retain_points_multiplier\":10}", "type": "overlay", "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -32,25 +36,27 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -60,63 +66,65 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -132,151 +140,149 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.788081 ] } } ] } ] } , @@ -288,1259 +294,1191 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.753344 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.744657 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.735969 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.809784 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.809784 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.814124 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.827141 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.731625 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.705553 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.705553 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.705553 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": { "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", "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, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.522278, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.522278, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.835819 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.522278, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.514038, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.511292, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.511292, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772886 ] } } -, -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.779399 ] } } -, -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.781569 ] } } -, -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772886 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.772886 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764201 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.764201 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.759859 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } , -{ "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.456360, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.814124 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.362976, 37.809784 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.362976, 37.809784 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.755516 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.759859 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } -, -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.746829 ] } } -, -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.742485 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.740313 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.740313 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.735969 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.775057 ] } } ] } ] } , @@ -1551,2228 +1489,2088 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.531891, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.525024, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.531891, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.523651, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.523651, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.836903 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.523651, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.512665, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.776142 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.772886 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.772886 ] } } -, -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773971 ] } } -, -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.784825 ] } } -, -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.782655 ] } } -, -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782655 ] } } -, -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.780484 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.780484 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } -, -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.783740 ] } } -, -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } -, -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.739227 ] } } -, -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } -, -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.808699 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808699 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "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": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.796763 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.796763 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808699 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.805444 ] } } , { "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.802189 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.801104 ] } } -, -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.800019 ] } } -, -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.797848 ] } } -, -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.798933 ] } } -, -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823887 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823887 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.827141 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823887 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.819548 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.362976, 37.810869 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754430 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.768544 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.766372 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765287 ] } } -, -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765287 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.763116 ] } } -, -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.765287 ] } } -, -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.765287 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.764201 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.768544 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.768544 ] } } -, -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.765287 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.735969 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.741399 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.740313 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.739227 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.737055 ] } } -, -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735969 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } , { "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.747915 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "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": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706640 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.706640 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.715331 ] } } -, -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.713159 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.717504 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.708813 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.717504 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } ] } ] } , @@ -3787,5522 +3585,5228 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.532578, 37.832022 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.523651, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.828768 ] } } -, -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.824972 ] } } -, -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } -, -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.522964, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836361 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.532578, 37.832022 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.523651, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.522964, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.514725, 37.832022 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.835819 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.512665, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.761487 ] } } +{ "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.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } -, -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } -, -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.776685 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.772886 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.772886 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.772886 ] } } -, -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.773429 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.776685 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.758230 ] } } -, -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.758230 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759316 ] } } -, -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756058 ] } } -, -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756058 ] } } -, -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.754430 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "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": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } -, -{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.745200 ] } } -, -{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.745200 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.752801 ] } } -, -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.752801 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.752801 ] } } , { "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } , { "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749544 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } -, -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743571 ] } } -, -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743028 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.741399 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.741399 ] } } -, -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.739227 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.737598 ] } } -, -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.736512 ] } } -, -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } -, -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } -, -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } -, -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } -, -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.741399 ] } } -, -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } -, -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } -, -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1759 }, "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": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "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": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "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": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } -, -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } -, -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.719133 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.719133 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "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": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794050 ] } } , { "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794050 ] } } -, -{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794050 ] } } -, -{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } -, -{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.791880 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791880 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789709 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.790252 ] } } -, -{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824430 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.374649, 37.823345 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.823887 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823345 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.827141 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.827141 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.825514 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.815751 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.373276, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821718 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824430 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.825514 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.815751 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811411 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.370529, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.820633 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811411 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.810326 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } -, -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } -, -{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.770715 ] } } -, -{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.770715 ] } } , { "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.773971 ] } } -, -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } -, -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776685 ] } } -, -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } -, -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.763116 ] } } -, -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.770172 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.769629 ] } } -, -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.769629 ] } } -, -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } -, -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } -, -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } -, -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.765830 ] } } -, -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } -, -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } -, -{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } -, -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } -, -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763658 ] } } -, -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.766372 ] } } -, -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.764744 ] } } -, -{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763658 ] } } -, -{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.761487 ] } } -, -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759316 ] } } -, -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759316 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.755516 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753887 ] } } -, -{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.756058 ] } } -, -{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.755516 ] } } -, -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } -, -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.374649, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.374649, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.705553 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "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": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.706640 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "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": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713159 ] } } -, -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.708813 ] } } -, -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , { "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778313 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.767458 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } ] } ] } , @@ -9327,9598 +8831,9586 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": 10 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720220 ] } } -, -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.459450, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.459450, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } -, -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.372246, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.372246, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.705825 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.705825 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.705825 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.705825 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714517 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.536354, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.532234, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 3370 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 3602 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831209 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 3601 }, "geometry": { "type": "Point", "coordinates": [ -122.529488, 37.821718 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.515068, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833921 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3571 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3573 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 3572 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.829582 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3289 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.536354, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.532234, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.829040 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 3363 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 3574 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831209 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 3573 }, "geometry": { "type": "Point", "coordinates": [ -122.529488, 37.821718 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.515068, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3549 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.829582 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 3476 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 3474 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_sequence": 3658 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3477 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 3475 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3275 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3478 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3657 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 3243 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 3659 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3656 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_sequence": 3320 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.804630 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3557 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 3460 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 3457 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3533 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_sequence": 3619 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 3459 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 3461 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 3620 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3618 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave", "tippecanoe:retain_points_multiplier_sequence": 3244 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3525 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave", "tippecanoe:retain_points_multiplier_sequence": 3225 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 3366 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_sequence": 3605 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_sequence": 3566 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 3442 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 3353 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3703 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_sequence": 3578 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3546 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 3405 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 3427 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3264 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3524 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 3341 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 3354 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3478 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3488 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3587 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3580 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3617 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3607 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3586 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3616 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3350 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 3362 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.508202, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 3564 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3563 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3291 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3290 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3306 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3305 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3278 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3292 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3292 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3294 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3307 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3293 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3701 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3657 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_sequence": 3648 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3612 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 3702 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 3373 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 3658 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3615 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3614 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3585 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3584 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "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": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_sequence": 3581 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3608 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3274 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3288 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 3272 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 3273 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 3287 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 3285 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 3270 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 3286 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 3271 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3284 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3269 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 3600 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3329 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 3295 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 3636 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3267 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3544 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3341 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3268 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 3308 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3282 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3562 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3283 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3343 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3656 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3356 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 3560 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 3700 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3297 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3285 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3309 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3298 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 3530 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 3641 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3636 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 3538 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 3345 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 3685 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3637 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3635 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 3622 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3680 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 3367 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3358 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3494 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 3372 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3681 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3679 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 3312 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 3661 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "California St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 3576 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 3662 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 3375 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 3506 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 3516 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 3501 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 3393 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 3326 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 3370 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3316 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 3570 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3659 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 3604 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 3377 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 3378 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3514 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 3513 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 3408 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_sequence": 3489 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 3266 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_sequence": 3361 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 3378 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 3265 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 3387 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 3388 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 3264 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 3337 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3338 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3498 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3551 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_sequence": 3552 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 3403 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 3280 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 3281 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 3352 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 3353 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave", "tippecanoe:retain_points_multiplier_sequence": 3599 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 3419 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_sequence": 3495 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 3521 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_sequence": 3503 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 3530 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3611 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 3613 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3233 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3609 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3621 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3620 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3583 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 3248 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3612 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 3392 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST", "tippecanoe:retain_points_multiplier_sequence": 3351 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 3263 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "341 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 3396 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 3405 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 3407 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3372 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3261 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_sequence": 3412 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST", "tippecanoe:retain_points_multiplier_sequence": 3363 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 3373 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 3527 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 3526 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "341 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 3421 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_sequence": 3380 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3276 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3426 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 3381 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 3380 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_sequence": 3381 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3632 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 3447 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 3535 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 3534 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3287 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 3477 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 3282 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3281 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3486 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3487 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 3355 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3356 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3545 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 3280 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 3419 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 3334 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 3541 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_sequence": 3365 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.459450, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3266 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_sequence": 3633 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_sequence": 3540 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3300 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 3283 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 3392 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 3279 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_sequence": 3393 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 3394 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 3369 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "6 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3544 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3539 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3675 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 3358 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 3462 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 3359 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3301 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3302 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3402 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 3487 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 3296 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 3295 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 3550 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 3294 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 3433 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3434 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 3350 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.459450, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 3349 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3379 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 3293 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 3435 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 3348 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 3347 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3388 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 3377 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 3371 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "6 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 3502 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 3428 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 3598 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3418 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 3233 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3633 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 3615 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3577 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3389 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3403 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3243 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 3336 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 3379 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3244 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3245 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 3509 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 3443 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 3247 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 3246 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 3256 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3592 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3677 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3260 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.808428 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 3324 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 3575 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.807885 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3308 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.808428 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 3297 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3261 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3262 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3630 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3621 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3493 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3629 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 3569 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 3271 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3626 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 3354 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3340 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.808428 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3603 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.807885 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3322 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.808428 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 3251 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3304 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3639 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.804630 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3673 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3660 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3500 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3672 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 3367 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3686 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3638 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3315 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804088 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 3338 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 3528 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3262 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3384 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 3328 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3683 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3382 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 3589 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3614 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3536 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3277 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3398 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 3340 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3395 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 3484 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY", "tippecanoe:retain_points_multiplier_sequence": 3569 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 3623 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3652 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3398 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 3512 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 3524 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Main St", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 3383 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 3495 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 3327 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 3357 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_sequence": 3654 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY", "tippecanoe:retain_points_multiplier_sequence": 3595 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 3522 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3414 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 3481 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 3523 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_sequence": 3343 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 3653 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 3390 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_sequence": 3601 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St.", "tippecanoe:retain_points_multiplier_sequence": 3533 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 3522 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3542 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3540 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3613 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3532 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3534 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3539 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 3390 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 3532 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3406 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 3566 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Main St", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 3538 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 3650 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 3643 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 3397 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.373276, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 3339 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 3518 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 3519 }, "geometry": { "type": "Point", "coordinates": [ -122.376366, 37.825514 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 3368 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823345 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 3520 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.823887 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 3531 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823616 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.371559, 37.824430 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3676 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 3589 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.827141 ] } } , -{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 3697 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_sequence": 3517 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.366753, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.816022 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.371559, 37.816293 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 3491 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3516 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821989 ] } } , -{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 3515 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3698 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3483 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_sequence": 3637 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813310 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3374 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 3375 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St. & Beale St.", "tippecanoe:retain_points_multiplier_sequence": 3547 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 3376 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3559 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.364006, 37.820633 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3650 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3546 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3548 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3556 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 3592 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 3555 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 3695 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 3689 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_sequence": 3667 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_sequence": 3668 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3318 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3472 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826870 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_sequence": 3590 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 3527 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 3528 }, "geometry": { "type": "Point", "coordinates": [ -122.376366, 37.825514 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823345 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_sequence": 3582 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 3529 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.823887 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 3542 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.371559, 37.824430 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3526 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821989 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 3525 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3493 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813310 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3382 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 3383 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 3384 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.364006, 37.820633 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 3385 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3386 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3548 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_sequence": 3474 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3488 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3599 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3687 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3622 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_sequence": 3624 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_sequence": 3610 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 3386 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3568 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_sequence": 3484 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3497 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3635 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3551 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3409 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3397 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3547 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3476 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3523 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3490 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_sequence": 3470 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 3400 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3492 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3563 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 3642 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3575 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 3315 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3424 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 3536 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3413 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 3537 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3395 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3567 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_sequence": 3486 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3475 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3564 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3531 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 3301 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3499 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 3250 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 3567 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3246 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3590 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 3688 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 3645 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 3329 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 3553 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 3554 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 3314 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3411 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 3410 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3485 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3591 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 3260 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 3312 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 3296 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 3593 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3655 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3257 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 3691 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 3328 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3275 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3699 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3272 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3556 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3276 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 3554 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3562 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3557 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3579 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3387 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3558 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3290 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 3577 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3588 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3580 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3402 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3581 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3559 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3561 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3588 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 3349 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 3647 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_sequence": 3646 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_sequence": 3401 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 3587 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3404 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3582 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3586 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3583 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3585 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_sequence": 3346 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3619 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 3553 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 3448 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 3618 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 3471 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 3472 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3361 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 3693 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 3311 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_sequence": 3692 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3420 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_sequence": 3348 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis street & Powell street", "tippecanoe:retain_points_multiplier_sequence": 3649 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_sequence": 3423 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3302 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 3571 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3552 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_sequence": 3359 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3413 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3541 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 3651 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3360 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3648 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3649 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 3335 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3652 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3305 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3485 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3313 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 3511 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 3597 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3576 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3427 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3389 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3558 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 3364 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 3206 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3521 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 3502 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 3458 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 3306 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3694 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 3454 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 3351 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3696 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 3416 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 3441 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3317 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3496 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 3442 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3605 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 3520 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_sequence": 3394 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3404 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3651 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 3570 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 3371 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3319 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 3471 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_sequence": 3609 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3431 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 3602 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 3430 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 3455 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 3456 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3643 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_sequence": 3410 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 3352 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 3596 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3608 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3603 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_sequence": 3647 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3255 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 3639 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3640 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3606 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 3607 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 3604 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 3333 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 3418 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 3415 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 3440 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 3443 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3439 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3455 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3444 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 3321 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3456 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3682 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3316 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3508 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 3509 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3510 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 3364 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "101 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 3298 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_sequence": 3331 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3192 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3646 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3491 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3641 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3270 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 3499 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3438 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 3322 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3445 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3644 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 3645 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 3642 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 3346 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 3432 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 3429 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 3454 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3457 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3245 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3453 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3473 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3458 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3330 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3517 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 3258 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 3259 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 3411 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3518 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3519 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "101 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 3310 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_sequence": 3331 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3452 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3596 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3459 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3597 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3451 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 3336 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3460 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3560 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3505 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3555 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 3273 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 3274 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 3425 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 3660 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3225 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3407 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3406 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3513 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_sequence": 3593 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3631 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3632 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_sequence": 3529 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3584 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 3362 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3512 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3578 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_sequence": 3347 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 3543 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 3627 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3630 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 3479 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 3482 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_sequence": 3537 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 3339 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 3489 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 3492 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 3368 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 3376 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 3572 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 3600 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 3568 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 3344 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 3594 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 3357 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 3543 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 3561 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 3206 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue", "tippecanoe:retain_points_multiplier_sequence": 3496 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 3595 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 3303 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue", "tippecanoe:retain_points_multiplier_sequence": 3504 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 3629 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3408 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 3314 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 3247 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3422 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 3248 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 3385 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3500 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3501 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3507 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3508 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3446 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3437 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 3317 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 3323 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3452 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3451 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3453 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3450 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 3399 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3462 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3436 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3469 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3461 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3449 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3610 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 3332 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3611 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 3337 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3466 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3465 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3467 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3464 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 3192 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 3638 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3616 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 3598 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 3654 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 3463 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 3464 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 3435 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 3468 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 3653 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3449 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 3634 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 3325 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 3434 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 3433 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3249 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 3479 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 3482 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 3448 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3473 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3399 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3431 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_sequence": 3335 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3432 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 3468 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 3414 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 3463 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 3617 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3465 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3430 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3483 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3415 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3446 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3447 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3503 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3507 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 3428 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3504 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3480 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3655 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3480 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3445 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 3545 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3469 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3481 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 3333 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 3342 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3510 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3515 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3511 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3579 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3494 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3450 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 3470 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 3344 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 3490 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 3565 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 3278 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 3355 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 3606 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 3330 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 3213 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.372246, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 3310 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 3342 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 3307 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 3623 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3631 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3626 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 3263 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 3365 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.372246, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3325 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 3321 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3624 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 3627 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 3625 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3628 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 3634 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 3663 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3674 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 3313 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3669 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3309 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 3279 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3640 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 3644 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3664 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.705825 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_sequence": 3535 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 3670 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 3666 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3671 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 3678 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 3665 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 3327 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3323 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_sequence": 3360 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 3684 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 3690 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 3277 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.705825 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.705825 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 3550 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3549 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_sequence": 3514 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 3286 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 3288 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 3289 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3284 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 3591 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3369 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 3291 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.705825 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3565 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 3574 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 3299 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 3303 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 3304 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 3625 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 3366 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3396 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 3400 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 3374 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3320 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 3412 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 3416 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 3251 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3424 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 3426 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3425 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 3265 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3439 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3441 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3440 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3299 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 3498 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 3311 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 3249 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3250 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3300 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3254 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 3506 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3253 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3423 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3422 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3269 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3268 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 3254 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 3255 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3438 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3437 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 3256 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 3421 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 3257 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3258 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3259 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 3253 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 3252 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 3436 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 3252 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 3332 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 3267 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 3319 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 3345 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 3466 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 3467 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3505 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 3324 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3497 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 3334 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 3409 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 3318 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "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": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 3628 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 3594 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } , { "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 3444 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 3429 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } ] } ] } , @@ -18926,9 +18418,9 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "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", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } , { "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.725379 ] } } , @@ -18948,9 +18440,9 @@ , { "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.827141 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } , @@ -18958,61 +18450,55 @@ , { "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.822260 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821989 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } , { "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813310 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , { "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } , { "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.822260 ] } } , { "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.820633 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.811954 ] } } -, -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } -, -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } -, -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , { "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } , { "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } ] } ] } , @@ -19042,7305 +18528,7223 @@ , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 198 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } -, -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } -, -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } -, -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } -, -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.718726 ] } } -, -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } -, -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } +{ "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.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722528 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } -, -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } -, -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724429 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724429 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "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": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "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": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "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": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "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": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 526 }, "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": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727416 ] } } +{ "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.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "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": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "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": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705689 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705689 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.706776 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707319 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715739 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715739 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715467 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715467 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.706504 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706233 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.706504 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706233 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.712072 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832294 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832294 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832429 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832429 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831616 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831616 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.523136, 37.831345 ] } } +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.523136, 37.831345 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.523136, 37.831345 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.523136, 37.831345 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833785 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833514 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833514 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833785 ] } } +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } , -{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833514 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833514 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829446 ] } } , -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829446 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.803952 ] } } -, -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803681 ] } } -, -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } , { "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802053 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.795542 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796899 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771393 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.507687, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.507687, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771393 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.477818, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.477818, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757280 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747236 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747236 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.498760, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.498760, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.501850, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.499447, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.501850, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743707 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.499447, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "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": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738006 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.738006 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.490864, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "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": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.490864, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746150 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "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": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738549 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738549 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.485714, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.485714, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "California St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.461681, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.461681, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763794 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.754566 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754566 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.463055, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754566 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787132 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778177 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787132 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774107 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.774107 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770036 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767051 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767051 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "341 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.768951 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770036 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767051 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Market St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754566 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750494 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "341 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.473354, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.769222 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.736376 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754566 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750494 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.473354, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.743435 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743435 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736376 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.749408 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.737463 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727688 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.749408 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.738549 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.806393 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.808563 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808021 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808021 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.808021 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807750 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.807750 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802053 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.802053 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804223 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.806393 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794728 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.808021 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807750 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.807750 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.808292 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802053 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.802053 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.802053 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.799883 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799883 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799883 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.790388 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.792829 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794728 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804495 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799340 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799612 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796899 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.799612 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807207 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.807207 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.799612 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828091 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826870 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792829 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.375164, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.376194, 37.825379 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792829 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.824023 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794728 ] } } +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.823480 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.824565 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829175 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825108 ] } } , -{ "type": "Feature", "properties": { "name": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.816158 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822396 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821853 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.366238, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797170 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811818 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820768 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.811276 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.790388 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.375164, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.376194, 37.825379 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.824023 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.823480 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.824565 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829175 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825108 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.816158 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822396 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821853 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.366238, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.818328 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811818 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774107 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820768 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.811276 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787132 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778177 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774107 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767594 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.767865 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768137 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769222 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767051 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769222 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774650 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } -, -{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773564 ] } } -, -{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772479 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771393 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755108 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768951 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766508 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.757551 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755108 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749408 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769222 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736376 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750222 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749408 ] } } +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750222 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735833 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.749951 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.747236 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.743978 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.747236 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746150 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727688 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738006 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737463 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730131 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730131 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "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": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } -, -{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } -, -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740449 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740449 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743707 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.743707 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.385807, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.385807, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738549 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738549 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.736919 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.736919 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.735833 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730131 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.382030, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.382030, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.379627, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.379627, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.375507, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.375164, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.375507, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.375164, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715739 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715739 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715467 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715467 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.714109 ] } } -, -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713294 ] } } -, -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.712751 ] } } -, -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } -, -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } -, -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.712072 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } , { "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , { "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } ] } ] } , 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 f0d9f85ad..a14a841bc 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 @@ -9,7 +9,7 @@ "maxzoom": "11", "minzoom": "0", "name": "tests/muni/out/-z11_--retain-points-multiplier_2_--extend-zooms-if-still-dropping.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":4609},{\"dropped_by_rate\":4609},{\"dropped_by_rate\":4607},{\"dropped_by_rate\":4604},{\"dropped_by_rate\":4595},{\"dropped_by_rate\":4575},{\"dropped_by_rate\":4521},{\"dropped_by_rate\":4396},{\"dropped_by_rate\":5304},{\"dropped_by_rate\":3802},{\"dropped_by_rate\":1331},{}]", +"strategies": "[{\"dropped_by_rate\":4609},{\"dropped_by_rate\":4608},{\"dropped_by_rate\":4606},{\"dropped_by_rate\":4603},{\"dropped_by_rate\":4594},{\"dropped_by_rate\":4573},{\"dropped_by_rate\":4522},{\"dropped_by_rate\":4401},{\"dropped_by_rate\":5341},{\"dropped_by_rate\":3924},{\"dropped_by_rate\":1568},{}]", "tippecanoe_decisions": "{\"basezoom\":11,\"droprate\":2.5,\"retain_points_multiplier\":2}", "type": "overlay", "version": "2" @@ -27,6 +27,8 @@ { "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -36,9 +38,11 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -54,15 +58,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -80,31 +86,33 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.735969 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -120,73 +128,77 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.772886 ] } } , -{ "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": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.746829 ] } } , -{ "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": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.735969 ] } } , -{ "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": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.733797 ] } } , -{ "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": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.707726 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -202,185 +214,183 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.512665, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.808699 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808699 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.778313 ] } } -, -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , { "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } , +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } +, { "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "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": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706640 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } ] } ] } , @@ -394,1883 +404,1797 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836361 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784825 ] } } , -{ "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.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.731082 ] } } , -{ "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": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718047 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } ] } ] } , { "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "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": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } -, -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } -, -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } -, -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } -, -{ "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": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721034 ] } } , -{ "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": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "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": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.725651 ] } } , -{ "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": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "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": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732983 ] } } , -{ "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": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.716961 ] } } , -{ "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": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } , -{ "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": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.716418 ] } } +{ "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": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } -, -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831209 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } -, -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832836 ] } } -, -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } -, -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } -, -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } -, -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } -, -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } -, -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.515068, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801646 ] } } , -{ "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": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781569 ] } } , -{ "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": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "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": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "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": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.765015 ] } } , -{ "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": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "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": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746286 ] } } , -{ "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": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "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": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "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": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "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": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "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": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } , -{ "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": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808428 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } , -{ "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": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.792965 ] } } -, -{ "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": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } -, -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } -, -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } -, -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } -, -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796221 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794050 ] } } -, -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.792965 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.789981 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } -, -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } , -{ "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": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } , -{ "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": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778585 ] } } , -{ "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": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "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/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "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": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755516 ] } } , -{ "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": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "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": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.741128 ] } } , -{ "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": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753073 ] } } , -{ "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": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } , -{ "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.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } ] } ] } , { "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } ] } ] } , { "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } ] } ] } , @@ -2279,3234 +2203,2992 @@ { "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", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": 2 }, "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, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } -, -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } -, -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } -, -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } -, -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } -, -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } -, -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } , -{ "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": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "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": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "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", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724701 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726330 ] } } -, -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } , -{ "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": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "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.403316, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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": 13 }, "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": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +{ "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": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706776 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715739 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706233 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711665 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } -, -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } -, -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 40 }, "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, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832429 ] } } -, -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831887 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } -, -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830531 ] } } -, -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831345 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.836496 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833649 ] } } -, -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } -, -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806529 ] } } -, -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806122 ] } } -, -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.803545 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } -, -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832429 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831887 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831616 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831345 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803138 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.799883 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799612 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.797170 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.503910, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.507687, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.488117, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.488117, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1330 }, "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": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "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": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "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": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.477818, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "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.477131, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763387 ] } } , -{ "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": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778177 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774107 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763794 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740449 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743435 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "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": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } -, -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } -, -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } -, -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } -, -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } -, -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724701 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726330 ] } } -, -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } -, -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806393 ] } } -, -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } -, -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805851 ] } } -, -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805580 ] } } -, -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } -, -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } -, -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.808021 ] } } -, -{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807343 ] } } -, -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } -, -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.807750 ] } } -, -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.805715 ] } } -, -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } -, -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } -, -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } -, -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "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": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804901 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802324 ] } } -, -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } -, -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803409 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.798798 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793643 ] } } -, -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.791880 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.790252 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794728 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806393 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805851 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790388 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792829 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.804223 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795542 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808292 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.799612 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799340 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.794728 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.798933 ] } } +{ "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": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799612 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793915 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823480 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825379 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.363834, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823480 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813174 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "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": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "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": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "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": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "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": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "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": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755108 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768679 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768679 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "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": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.763794 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.768137 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 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": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "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": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771393 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "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": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.768679 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763523 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "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": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "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": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "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": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "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": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "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": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "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": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770579 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767865 ] } } , -{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "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": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750222 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743978 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747236 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.733254 ] } } , -{ "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": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.385464, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.383747, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.385807, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715739 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } -, -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.711393 ] } } -, -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.713159 ] } } -, -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } -, -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713430 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711665 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } -, -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } -, -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 439 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } ] } ] } , @@ -5520,299 +5202,283 @@ , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": "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, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } -, -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": 32 }, "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, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "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": 24 }, "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": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721102 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "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.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 Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } , { "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", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "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": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "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": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } -, -{ "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", "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, "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_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } -, -{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "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": 7 }, "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": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "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": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "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": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "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", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "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": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "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": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "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": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "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": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } , @@ -5820,6139 +5486,5735 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722868 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "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": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } -, -{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "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": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "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": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.720423 ] } } -, -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722053 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714584 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714584 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.717029 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709288 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.709152 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717300 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.717979 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.709152 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.713023 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710918 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705757 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.710375 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.461596, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710103 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705757 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.461596, 37.711461 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710103 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706165 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706640 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.706844 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707387 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707387 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706165 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.706844 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707387 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.448378, 37.710510 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714720 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.448378, 37.710510 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712819 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714720 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711733 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712819 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715739 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710239 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710239 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.712955 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710918 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.711054 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.709017 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712819 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710646 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711733 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710646 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712004 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.712004 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712276 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710510 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "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": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.708473 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.708473 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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": 117 }, "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": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708338 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708338 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707930 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707930 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707115 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707115 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "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": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709288 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "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": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717843 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "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": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711733 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "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": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "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": 285 }, "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": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "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": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.711461 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711461 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711325 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "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": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "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": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "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": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 377 }, "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": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712140 ] } } , -{ "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", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712140 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712276 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712276 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712276 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712276 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 425 }, "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": 54 }, "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": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.710646 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.710646 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.712004 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 347 }, "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": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "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": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "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": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } -, -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } -, -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } -, -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.709831 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "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": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } ] } ] } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } -, -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } -, -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831819 ] } } -, -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832497 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } -, -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } -, -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } -, -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831345 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.833039 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.836090 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.502108, 37.836429 ] } } -, -{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833717 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833582 ] } } -, -{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.833582 ] } } -, -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835886 ] } } -, -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833175 ] } } -, -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } -, -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } -, -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.829446 ] } } -, -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.792219 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832497 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831684 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.792083 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806597 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831345 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806054 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.514982, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.833039 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803613 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.836090 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.801036 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833853 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799815 ] } } +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833717 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833582 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802935 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.833582 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833175 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798459 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.797916 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803884 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801578 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788421 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803884 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802053 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801578 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806597 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806732 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797916 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803613 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.801036 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800765 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799815 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798459 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798187 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3206 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803884 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803884 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.799408 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798052 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.804562 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797916 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799137 ] } } , -{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799815 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.804562 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796695 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.795610 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799815 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.799273 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804427 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.795610 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790727 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.803070 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800086 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805105 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.801172 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800765 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799679 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804427 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799679 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.799612 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797102 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.801172 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.442026, 37.796288 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799679 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.799612 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.442026, 37.796288 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796560 ] } } , -{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.796017 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795881 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.794932 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.796017 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.792219 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795881 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788828 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.792219 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779059 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.510347, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779059 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.502966, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.502966, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.779059 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.779059 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.771868 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775667 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771868 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.771868 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764133 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.508974, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762233 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.760198 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762233 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.756805 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "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": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783401 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781773 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "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": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "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": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "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": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.781909 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775667 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777838 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.492151, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.492838, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.492838, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.491808, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787335 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787335 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782044 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.782180 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780280 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780280 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 777 }, "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": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "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": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "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": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "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": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.774311 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.772682 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.480650, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.776617 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.480650, 37.772682 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.764540 ] } } , -{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.495756, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760876 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760876 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755176 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.753683 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.765083 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.480307, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.765083 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765219 ] } } -, -{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765219 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.765287 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "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": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } -, -{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } -, -{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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", "tippecanoe:retain_points_multiplier_sequence": 2926 }, "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": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763455 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761283 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "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": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761419 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763455 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761283 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761555 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761555 ] } } , -{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761555 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759926 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.755991 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759926 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.480822, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754090 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.506399, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753005 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.506742, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.506742, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745404 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "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": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.753005 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745404 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745404 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747440 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747440 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747711 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747711 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "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": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741739 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741739 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736037 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736037 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "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": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742146 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735630 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "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": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735358 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753276 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753276 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751783 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "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": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.745811 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "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": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "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": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "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": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2894 }, "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": 2685 }, "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": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "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": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "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": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.744521 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740788 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.485628, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.752055 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750426 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750426 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748526 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745268 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748526 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746490 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745268 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.742960 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734272 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729656 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.486315, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734408 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729656 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728842 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724090 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724225 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728842 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724225 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726941 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.780959 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783130 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.777024 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773496 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773496 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773496 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.453699, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.786250 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779195 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781366 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773768 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779195 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.774446 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774311 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765626 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765490 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "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": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765626 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762098 ] } } -, -{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1636 }, "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": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762098 ] } } -, -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } -, -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764133 ] } } -, -{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756941 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "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": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754226 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1552 }, "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": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "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": 1314 }, "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": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758434 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758434 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "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": 193 }, "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": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758569 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758569 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "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": 197 }, "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": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "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": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.756533 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "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": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "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": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.762233 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "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": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "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": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "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": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "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": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1927 }, "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": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.758434 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756941 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "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": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754498 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754498 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "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": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.786928 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787335 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.786250 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782180 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778110 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778381 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775396 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778110 ] } } +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778381 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773089 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773089 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778788 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778788 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773768 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773903 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.774175 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773903 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.774175 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.774311 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774446 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.785165 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783130 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.438936, 37.780416 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783401 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.783401 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.434988, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.438936, 37.780416 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786114 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.780959 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.780959 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779195 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781366 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779195 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770783 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777838 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.774718 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777838 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770783 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770918 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775125 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775396 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.771054 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769290 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766440 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766440 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765897 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765762 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766847 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765897 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767119 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770376 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769968 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767119 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767119 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770376 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770240 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766305 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756398 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.759926 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768069 ] } } , -{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756398 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } , -{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754090 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768069 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765626 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.766712 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762098 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760605 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.769222 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764133 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753548 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760876 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756126 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760605 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755991 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753548 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745132 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748933 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760876 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756126 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754430 ] } } -, -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } -, -{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.750562 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750833 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.474127, 37.748797 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748661 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748865 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } -, -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } -, -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746761 ] } } -, -{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745132 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748933 ] } } -, -{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } -, -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.745064 ] } } -, -{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } -, -{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } -, -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } -, -{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } , { "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.750833 ] } } -, -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.749136 ] } } -, -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743368 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "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": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.739024 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.739024 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741196 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741196 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "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": 2552 }, "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": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "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": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3186 }, "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": 2973 }, "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": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "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": 2695 }, "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": 2748 }, "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": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739431 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739431 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "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": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751512 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751376 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "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": 2981 }, "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": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "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": 1512 }, "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": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "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": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745268 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745268 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "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": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "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": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "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": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "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": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.460051, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "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": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744182 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744182 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "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": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743503 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743503 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } -, -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2137 }, "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": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741942 ] } } , { "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736716 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736716 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732779 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "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": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.731150 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "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": 1107 }, "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": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731014 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731014 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731014 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.731014 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731285 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2688 }, "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": 1510 }, "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": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "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": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "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": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "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": 2879 }, "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": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "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": 2680 }, "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": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "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": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.727212 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "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": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.474642, 37.727212 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "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": 296 }, "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": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721102 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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 Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } , { "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", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "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": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "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": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "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": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734408 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734408 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.732643 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732643 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732643 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731285 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724904 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724361 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "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": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "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": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751783 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.750426 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.750426 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.750697 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746490 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747168 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746897 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746897 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } , -{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.737802 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736852 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.448034, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736580 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736852 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736580 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745268 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.748526 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746897 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.749476 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745268 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751919 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.749476 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751919 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751376 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.748661 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747847 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751512 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749611 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.748661 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743639 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "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": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736852 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.727620 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "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": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "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": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } -, -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } -, -{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "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": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "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": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "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": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "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": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728977 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728842 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728842 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727755 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730335 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "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": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "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": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733458 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732372 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.433443, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.433443, 37.732507 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "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": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.725719 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "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": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "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": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "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": 1987 }, "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": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "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": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "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": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "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": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.724293 ] } } , { "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": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724565 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726330 ] } } -, -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726194 ] } } -, -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722800 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721646 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } -, -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.806326 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807004 ] } } -, -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806732 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805647 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.806326 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806190 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807004 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805512 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.806054 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.807275 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807817 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806190 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807817 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.806054 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806868 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807817 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801578 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801714 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798187 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.805105 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804834 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800493 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.798459 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800493 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.798459 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.796424 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790727 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794932 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794932 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.796424 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.796153 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794932 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794932 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.796153 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793847 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3225 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791405 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791405 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.790455 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791405 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791405 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.790455 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.804766 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802935 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2561 }, "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": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805241 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "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", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 20 }, "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": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.804223 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.804223 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.801036 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.801036 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "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": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "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": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799137 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "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": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798323 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "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": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "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": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802799 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802799 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802121 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804834 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.802799 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802121 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.801172 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.802799 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.802935 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.801172 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800086 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800086 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.799001 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.800222 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.800222 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.798187 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797374 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797238 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794661 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793847 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793847 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792897 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.790727 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789641 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789506 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789370 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790998 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789641 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791812 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792083 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795068 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.796017 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789234 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796153 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.796017 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795475 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796424 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796153 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796221 ] } } +{ "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": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795475 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796424 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795339 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.788828 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.808224 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807275 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.806597 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.806597 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.788828 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801443 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807275 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.807207 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.806597 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803477 ] } } +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801443 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799408 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799137 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799273 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799408 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800629 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797170 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801443 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.799679 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } , -{ "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": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800629 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798323 ] } } , -{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796831 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801443 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794661 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.802935 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.795339 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.799679 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792897 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800629 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796831 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.794728 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792897 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792626 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792897 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } +{ "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": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796085 ] } } +{ "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": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792897 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789099 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792626 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792219 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789506 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788556 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795881 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789234 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789099 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792897 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788421 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794796 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.400312, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789506 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } , -{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788556 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795881 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.790998 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.789777 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792897 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795068 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.790862 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793168 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793168 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793168 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793236 ] } } -, -{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.790998 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } -, -{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.789777 ] } } -, -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788624 ] } } -, -{ "type": "Feature", "properties": { "name": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.792015 ] } } -, -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790320 ] } } -, -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790320 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.791337 ] } } -, -{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.791134 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "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": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789370 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789099 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789099 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788963 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.799001 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.799544 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "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": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797781 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797102 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797102 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797238 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "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": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "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": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.792626 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.792626 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "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": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "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": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.792558 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793440 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } -, -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.794118 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.794118 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793915 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793033 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791676 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791676 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789234 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789506 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788556 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789641 ] } } , -{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.791812 ] } } +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789506 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788556 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.790862 ] } } +{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.791812 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3130 }, "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": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.790862 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790591 ] } } +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790727 ] } } , -{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790591 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3122 }, "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": 2904 }, "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": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788828 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788692 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788828 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "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": 1030 }, "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": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790591 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790591 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.790455 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828158 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828158 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "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": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 216 }, "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": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828430 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824497 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828294 ] } } +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824497 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } , -{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.372675, 37.824023 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823277 ] } } -, -{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } -, -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "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": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.373877, 37.823548 ] } } , { "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824565 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.829243 ] } } -, -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } -, -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } -, -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.368898, 37.823616 ] } } -, -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825311 ] } } -, -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818531 ] } } -, -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } -, -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.366152, 37.819887 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.818328 ] } } -, -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813039 ] } } -, -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813107 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.825175 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.816226 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.812022 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818531 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811886 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.363749, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.364264, 37.811344 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.366152, 37.819887 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813107 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820768 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.812022 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811886 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.364264, 37.811344 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810530 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.782044 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785436 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.781909 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785436 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777024 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.776074 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.775803 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.772411 ] } } , -{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774175 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.786793 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782180 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780280 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780145 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780280 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "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": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783265 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.787335 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "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": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.786793 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.786793 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "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": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "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": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787200 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "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": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2791 }, "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": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "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": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "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": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "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": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3107 }, "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": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "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": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.778381 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.778381 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "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": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "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": 2500 }, "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": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775192 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "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": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775328 ] } } , { "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.775532 ] } } -, -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775532 ] } } -, -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775396 ] } } -, -{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778924 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777703 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777567 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.773361 ] } } +{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779195 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772139 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779195 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767526 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.766305 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.766305 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.764405 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.762776 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769833 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769833 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.758298 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757348 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757212 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757348 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756669 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756669 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.761419 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754769 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.755583 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.755583 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768611 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768611 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766712 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766712 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767119 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768476 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768476 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765083 ] } } +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765083 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.763862 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770376 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769833 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769697 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.763862 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768069 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768476 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768476 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762233 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762233 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.763998 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762912 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "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": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3147 }, "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": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758841 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758841 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1823 }, "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": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755176 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "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": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "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": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758976 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758976 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758976 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "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": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758841 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 560 }, "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": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "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": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "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": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "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": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783944 ] } } -, -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } -, -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "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": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784825 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784486 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "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": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.786386 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782723 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "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": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786521 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787878 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780280 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780416 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.780416 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780280 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.782180 ] } } +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780416 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.780416 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781773 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776617 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775532 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772547 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772547 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.771461 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777974 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773496 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773496 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "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": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 3233 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782723 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783265 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "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": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "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": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "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": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777431 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "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": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777024 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "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": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775803 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776074 ] } } -, -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "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": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } -, -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773089 ] } } -, -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773089 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "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": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "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": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771190 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771190 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "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": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "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": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762233 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.763319 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762233 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "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": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763591 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763523 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762233 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.761826 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763523 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757212 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755855 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.759655 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755176 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759655 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.759655 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759655 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754498 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757212 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754905 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Carolina St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754905 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3192 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769561 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769697 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769561 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764405 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760062 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759926 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760062 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755448 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755991 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760605 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.758026 ] } } , -{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760605 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.757551 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.746761 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751919 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755312 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.749204 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751919 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.737123 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.737123 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742146 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.742146 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.737123 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742146 ] } } +{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742282 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739024 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752055 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.752190 ] } } , -{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739024 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.737463 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.748661 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.752190 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.746218 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748118 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746761 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3243 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.746218 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744318 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.739295 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739295 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749204 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.744182 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.739024 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748118 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746897 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744318 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.739024 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.744182 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739567 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735223 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.735630 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735223 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733186 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735087 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.728706 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733458 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.730471 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735223 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735087 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.724633 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.728706 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724768 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725176 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } , -{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724768 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722528 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } -, -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "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": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } -, -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.724633 ] } } -, -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724768 ] } } -, -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725176 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725447 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "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": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } , @@ -11960,1023 +11222,969 @@ , { "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735766 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735087 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732643 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735087 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732779 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732507 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732779 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734951 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725855 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726398 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726398 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726398 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "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": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.753005 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753276 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.753005 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751376 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753276 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751376 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.751919 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.751919 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "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": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "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": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2636 }, "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": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742825 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "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": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738345 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "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": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737938 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742553 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742553 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743911 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743911 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743911 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743911 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739159 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.742282 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739159 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739567 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752190 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752190 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "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": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.747236 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.747236 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750426 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737123 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.736852 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737123 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.736852 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744046 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744046 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742960 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736309 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.736309 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734272 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732372 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732372 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733186 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727348 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730131 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.727348 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735358 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727755 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727620 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729113 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726262 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726126 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727620 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.726534 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725040 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726126 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.726534 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725040 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726398 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726941 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.720423 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726398 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735766 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733186 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735766 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730471 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } -, -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } -, -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722053 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } -, -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } -, -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } -, -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753140 ] } } -, -{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } -, -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.749069 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749069 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.746015 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.746082 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740517 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742553 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.383661, 37.742553 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.746082 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743911 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.383146, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740517 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742553 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743911 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.739024 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743775 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.739024 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.381773, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.732372 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.735833 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.385378, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729520 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.385378, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.380056, 37.733458 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732372 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.380056, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734408 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732372 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734408 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.730742 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730607 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728706 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.380228, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730607 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.730064 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.380228, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727077 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.730064 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731964 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727077 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731964 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.372160, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729113 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725312 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725312 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "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": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.361002, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.717029 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.717029 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1502 }, "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": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1501 }, "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": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "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": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714584 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "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": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.717979 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "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": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 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": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "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": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "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": 301 }, "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": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "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": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "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": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "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": 2108 }, "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": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "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": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "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": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "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": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "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": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "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": 2886 }, "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": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "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": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "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": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "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": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714720 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "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": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "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": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715739 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717843 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717843 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "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": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } -, -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } -, -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "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": 3025 }, "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": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762641 ] } } , { "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778517 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } ] } ] } , @@ -12984,15 +12192,15 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "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", "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , diff --git a/tests/muni/out/-z11_--retain-points-multiplier_2_--preserve-multiplier-density-threshold_512.json b/tests/muni/out/-z11_--retain-points-multiplier_2_--preserve-multiplier-density-threshold_512.json index 8f87b5e91..87bc10058 100644 --- a/tests/muni/out/-z11_--retain-points-multiplier_2_--preserve-multiplier-density-threshold_512.json +++ b/tests/muni/out/-z11_--retain-points-multiplier_2_--preserve-multiplier-density-threshold_512.json @@ -9,7 +9,7 @@ "maxzoom": "11", "minzoom": "0", "name": "tests/muni/out/-z11_--retain-points-multiplier_2_--preserve-multiplier-density-threshold_512.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":4607},{\"dropped_by_rate\":4607},{\"dropped_by_rate\":4605},{\"dropped_by_rate\":4600},{\"dropped_by_rate\":4583},{\"dropped_by_rate\":4541},{\"dropped_by_rate\":4415},{\"dropped_by_rate\":4067},{\"dropped_by_rate\":4165},{\"dropped_by_rate\":2196},{\"dropped_by_rate\":507},{}]", +"strategies": "[{\"dropped_by_rate\":4607},{\"dropped_by_rate\":4606},{\"dropped_by_rate\":4604},{\"dropped_by_rate\":4599},{\"dropped_by_rate\":4583},{\"dropped_by_rate\":4538},{\"dropped_by_rate\":4412},{\"dropped_by_rate\":4062},{\"dropped_by_rate\":4169},{\"dropped_by_rate\":2281},{\"dropped_by_rate\":626},{}]", "tippecanoe_decisions": "{\"basezoom\":11,\"droprate\":2.5,\"retain_points_multiplier\":2}", "type": "overlay", "version": "2" @@ -32,6 +32,8 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } , +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +, { "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.260742, 37.822802 ] } } @@ -44,13 +46,15 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.840157 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.840157 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.718590 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -66,23 +70,25 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -102,51 +108,51 @@ , { "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.514038, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.514038, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.514038, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.814124 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.814124 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.753344 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } ] } @@ -164,141 +170,147 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.822802 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.514038, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.514038, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.807614 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } , { "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.827141 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.822802 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716418 ] } } , { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.716418 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -314,397 +326,403 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.525024, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.525024, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.529144, 37.821718 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.529144, 37.821718 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831480 ] } } , { "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.835819 ] } } , { "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.788081 ] } } , { "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.512665, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "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": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , { "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.808699 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808699 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808699 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.821718 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.821718 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "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": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706640 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.706640 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.717504 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } ] } ] } , @@ -716,1099 +734,1109 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.532578, 37.832022 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.532578, 37.832022 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.523651, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.523651, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.529831, 37.821718 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.529831, 37.821718 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836361 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836361 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836361 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.512665, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.512665, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.808699 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.808699 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.824430 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.815751 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824430 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.815751 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "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": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 522 }, "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": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711529 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.708813 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } ] } ] } , { "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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 ] } } ] } ] } , @@ -1818,869 +1846,863 @@ , { "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.719133 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.736512 ] } } -, -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } , { "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "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": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , { "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 201 }, "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": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } , -{ "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": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } , -{ "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": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.373276, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.373276, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.705825 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.705825 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 317 }, "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": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 373 }, "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": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , { "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } ] } @@ -2688,59 +2710,53 @@ , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } -, -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.532234, 37.831751 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.532234, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831209 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.829040 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.529831, 37.821718 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.529831, 37.821718 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.515068, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833921 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } , -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833921 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.829582 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.829582 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 762 }, "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": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807614 ] } } , { "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } , @@ -2748,13 +2764,13 @@ , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } , { "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.803816 ] } } , @@ -2762,2735 +2778,2733 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "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": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "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": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.759316 ] } } , -{ "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": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } -, -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } +{ "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": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740856 ] } } , { "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , { "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 771 }, "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": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 925 }, "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": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808428 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.808699 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808428 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.808699 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.804630 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804630 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804630 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793236 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826870 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826870 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.824158 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.827413 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.827413 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.816022 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.816022 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "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": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } , { "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772614 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "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": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.754973 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "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.415504, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , { "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765558 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } -, -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759044 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "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": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , { "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.773971 ] } } , { "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "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": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "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": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767187 ] } } , { "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , { "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770443 ] } } -, -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "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": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 838 }, "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": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "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.719405 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "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": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } , -{ "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": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.373276, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.373276, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.705825 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.705825 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "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": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "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": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "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": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767187 ] } } ] } ] } , { "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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", "tippecanoe:retain_points_multiplier_first": true, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 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": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } ] } ] } , @@ -5500,37 +5514,41 @@ , { "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.827413 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } -, -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 19 }, "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": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } , { "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } ] } ] } , @@ -5539,972 +5557,924 @@ { "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", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": 2 }, "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, "tippecanoe:retain_points_multiplier_sequence": 345 }, "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": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 412 }, "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": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 35 }, "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": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 59 }, "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": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } -, -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 413 }, "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": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "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": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724429 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724429 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "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": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 238 }, "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": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 451 }, "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": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } , -{ "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 184 }, "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": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "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": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720084 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } -, -{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 144 }, "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": 424 }, "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": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "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.443485, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718726 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } -, -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "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": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "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": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722528 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } -, -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } -, -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": 21 }, "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": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705689 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705689 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 297 }, "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": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706776 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706776 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711393 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } -, -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } -, -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713023 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713023 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706233 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , { "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.714109 ] } } , { "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } -, -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , { "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } ] } @@ -6512,459 +6482,453 @@ , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832429 ] } } -, -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832429 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831616 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831616 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.523136, 37.831345 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831345 ] } } +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.523136, 37.831345 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831345 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.836361 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833921 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835954 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833921 ] } } , -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835954 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829446 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829446 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.807478 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806122 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.807478 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799883 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "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": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "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": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799340 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.804495 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797984 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.804495 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.797170 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.799883 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.798798 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799340 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 517 }, "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": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801239 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799612 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797441 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.797170 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771393 ] } } +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.507687, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "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": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.488117, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.488117, 37.783740 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } , @@ -6972,3211 +6936,3165 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771936 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.481937, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.481937, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.477818, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.765287 ] } } , -{ "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": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } +{ "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.477131, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.498760, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.498760, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743707 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738006 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.490864, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.490864, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738549 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738549 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } , { "type": "Feature", "properties": { "name": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 756 }, "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": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.461681, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.461681, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763794 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763794 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757008 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "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": 2446 }, "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": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "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": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.763794 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.763794 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.463055, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.463055, 37.758637 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775328 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774107 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774107 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774107 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "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": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 978 }, "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": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "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": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774650 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.778177 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767051 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767051 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767458 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "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": 420 }, "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": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "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": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760808 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } , -{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.765287 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769222 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768951 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "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": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "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": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.757551 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.757551 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754566 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754566 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.750494 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.750494 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "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": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740449 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740449 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "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": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.743435 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.743435 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732711 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } -, -{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "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": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "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": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "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": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724429 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724429 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752394 ] } } , { "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1869 }, "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": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "6 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743435 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744521 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743435 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } -, -{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749408 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748729 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } -, -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743300 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , { "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } -, -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } -, -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.735562 ] } } -, -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.733933 ] } } -, -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734612 ] } } -, -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "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": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.806393 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806393 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.806393 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806393 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807071 ] } } , -{ "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.805715 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805580 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.808563 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808021 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.808563 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.808021 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.808021 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.807885 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.807885 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.807750 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802053 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802053 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.797984 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804766 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "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": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "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": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2260 }, "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": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "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": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794728 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "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": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790388 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.804766 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804495 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804495 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.804223 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.804766 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "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": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "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": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.799069 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "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": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.797170 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "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": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.792829 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.792829 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "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": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "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": 1437 }, "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": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795542 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807207 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "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": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799340 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797170 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "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": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "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": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "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": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.799612 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "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": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.794728 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792829 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792829 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "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": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.795000 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.792558 ] } } -, -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794186 ] } } -, -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793643 ] } } -, -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } -, -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791880 ] } } -, -{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.791744 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789845 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } -, -{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.789438 ] } } -, -{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.788488 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } -, -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790795 ] } } -, -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } -, -{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } -, -{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.789981 ] } } -, -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } -, -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } -, -{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.788217 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793915 ] } } , -{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826870 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.375164, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.376366, 37.825514 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.372761, 37.824023 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823480 ] } } +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.824565 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821853 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826870 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.375164, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818328 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.376366, 37.825514 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811818 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } , -{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820768 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.372761, 37.824023 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823480 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.824565 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.363834, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.823616 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821853 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813174 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811818 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787132 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820768 ] } } , -{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.363834, 37.811683 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787132 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774107 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.787132 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787132 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.787132 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } -, -{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } -, -{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769222 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.770172 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768408 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766780 ] } } , { "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "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": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "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": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754701 ] } } , { "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755108 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766644 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766237 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "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": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } -, -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762166 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.763794 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.768137 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.768137 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765423 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1553 }, "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": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.757551 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.757551 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755108 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.755516 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.761894 ] } } , @@ -10184,105 +10102,99 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } -, -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "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": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.783062 ] } } -, -{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780348 ] } } -, -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780348 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } , { "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776821 ] } } , @@ -10292,1693 +10204,1631 @@ , { "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771393 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774650 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } -, -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } , { "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "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": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "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": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } , { "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.768679 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.768679 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763523 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763523 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763523 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "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": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757551 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757551 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2505 }, "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": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766508 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762437 ] } } -, -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } -, -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.762573 ] } } -, -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770443 ] } } -, -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766780 ] } } -, -{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.766508 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755108 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755108 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.749408 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.749408 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736376 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750222 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "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": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "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": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.739227 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.739227 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } -, -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "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": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "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": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735290 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "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": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 439 }, "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": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735833 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.735562 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732847 ] } } -, -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "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": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "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": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743978 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752394 ] } } -, -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.751308 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.749001 ] } } , { "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747236 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746150 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747236 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738006 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730131 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727688 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } -, -{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722257 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722257 ] } } , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2310 }, "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": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "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": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.383747, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1529 }, "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": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "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": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.385807, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.385807, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735833 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1747 }, "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": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.729588 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.385464, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730131 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "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": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "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": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "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": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "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": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 237 }, "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": 241 }, "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": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "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": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "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": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "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": 2466 }, "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": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "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": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } , { "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713023 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713023 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "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": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "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": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } -, -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } -, -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } ] } ] } , @@ -11992,351 +11842,347 @@ , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": "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, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722528 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721781 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721781 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718658 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "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": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721238 ] } } , -{ "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.475243, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 473 }, "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": 486 }, "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": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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.721306 ] } } , -{ "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 Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721374 ] } } +{ "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": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721374 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , -{ "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.475328, 37.719066 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721510 ] } } +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.719066 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723682 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721781 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721781 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "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": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719880 ] } } , -{ "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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", "tippecanoe:retain_points_multiplier_sequence": 499 }, "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": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720559 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 282 }, "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": 280 }, "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": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "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": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "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": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723954 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723954 ] } } , { "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.435331, 37.723954 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721510 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "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": 313 }, "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": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "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": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722528 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "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": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719066 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720559 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719066 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720559 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.719405 ] } } , @@ -12346,7499 +12192,7279 @@ , { "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718930 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.723954 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723275 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.722732 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722868 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.723954 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723275 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } , -{ "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.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720559 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720423 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723682 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723682 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723275 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720559 ] } } , -{ "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.404089, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723275 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722528 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.722053 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.722053 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718387 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717300 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715942 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718387 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714584 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715942 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715807 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.715942 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709288 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714449 ] } } , -{ "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.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.717504 ] } } , -{ "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.472925, 37.717300 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715807 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.715942 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709288 ] } } , -{ "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.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "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.473011, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717708 ] } } +{ "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.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.717368 ] } } +{ "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.472925, 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.472239, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714584 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714720 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717708 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } , -{ "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.473097, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714720 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.713091 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.712955 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } , -{ "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.470007, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.713091 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710918 ] } } , -{ "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.467346, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710375 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.710239 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710375 ] } } , -{ "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.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.710239 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714177 ] } } , -{ "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.464857, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705757 ] } } +{ "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.466917, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714313 ] } } +{ "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": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705757 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.710103 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710918 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717708 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.710103 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715942 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717708 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715942 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.711461 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710375 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.705961 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706165 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710375 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706572 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.706776 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.705961 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706165 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707387 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718522 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706572 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.706776 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.718251 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707387 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718522 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713905 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713905 ] } } , -{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } +{ "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.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.711461 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712819 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.711733 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708609 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710918 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712819 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708609 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.708881 ] } } , -{ "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.717640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } , -{ "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.441168, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714720 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715671 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712412 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714720 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712412 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } , -{ "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.435932, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } +{ "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.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.715467 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.715467 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +{ "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.436790, 37.713498 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.710171 ] } } +{ "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.436361, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713294 ] } } +{ "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.710918 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } , -{ "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.434559, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.711189 ] } } , -{ "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_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } -, -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.717436 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.711054 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718251 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708609 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708609 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712004 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712004 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712683 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712683 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712140 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712140 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708473 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708202 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708473 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708202 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708338 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707659 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707115 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707659 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706504 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706504 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709288 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709017 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 404 }, "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": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.717300 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717300 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "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": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712412 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712412 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "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": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 476 }, "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": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711325 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711461 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.712547 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.712547 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "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": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "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": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.712412 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.712412 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } , -{ "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.402544, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712140 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712412 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712412 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712276 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712276 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "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": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 512 }, "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": 74 }, "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": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713498 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713498 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 456 }, "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": 55 }, "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": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 466 }, "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": 454 }, "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": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "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": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "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": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 465 }, "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": 453 }, "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": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 451 }, "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": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.717029 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.717029 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718251 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.387781, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.387781, 37.714109 ] } } , -{ "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": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 317 }, "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": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717436 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 34 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } -, -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } -, -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.532320, 37.831819 ] } } -, -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832429 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.532320, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.523394, 37.831616 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 3623 }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832429 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.523394, 37.831616 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 3864 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830328 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } , -{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831412 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 3518 }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831345 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 3863 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821785 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3752 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830328 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.515326, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831412 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.832972 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831345 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 3751 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821785 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.515326, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.502108, 37.836429 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833853 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3833 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833582 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3835 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.833582 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833853 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835886 ] } } +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3722 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 3834 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833582 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3724 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.833582 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835886 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3723 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833039 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.792219 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788421 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3523 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792083 ] } } +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.792219 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.807546 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788421 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3427 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806054 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.807546 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.806732 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.803477 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806054 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801578 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.806732 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.801036 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.799815 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.803477 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800086 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.801036 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.799815 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.797916 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803884 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800086 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801578 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.797916 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803884 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 3728 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802257 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_sequence": 3917 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802053 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.801578 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 3730 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 3616 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802257 ] } } , -{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_sequence": 3808 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802053 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3732 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 3618 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 3731 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797916 ] } } +{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801036 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3733 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800765 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3620 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3472 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800493 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3619 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797916 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801036 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3621 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3918 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 3380 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800493 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3916 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.799001 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 3809 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.798187 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3556 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798052 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3807 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.799001 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.804562 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.799340 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3821 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803613 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802799 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.802799 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3801 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.804562 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3709 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803613 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802799 ] } } , -{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797102 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.802799 ] } } , -{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3689 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799815 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797102 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.796695 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799815 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3263 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.795610 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790862 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790862 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.795610 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791269 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790862 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790862 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790727 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805376 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788963 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800086 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800222 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791269 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799273 ] } } +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803070 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805376 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 3612 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796831 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800086 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3271 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796831 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800222 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804427 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 3509 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796831 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3867 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804427 ] } } , -{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_sequence": 3828 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805376 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_sequence": 3757 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } , -{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 3693 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3717 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805105 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805376 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801172 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3584 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805241 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801172 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799679 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799679 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.799612 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3960 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799679 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799679 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.799612 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3854 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3247 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797102 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 3660 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 3318 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3494 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3246 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796288 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3555 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3269 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 3268 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796695 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3402 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796288 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796560 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.791676 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788149 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.791676 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788149 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794118 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792626 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794118 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3790 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792490 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792626 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.791405 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3680 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3387 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788421 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.791405 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788828 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3295 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788421 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3400 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791676 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788828 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3308 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791676 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.512922, 37.779059 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.512922, 37.779059 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 3597 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771393 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 3498 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3753 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3639 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.780959 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.780959 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.502966, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.502966, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779466 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.779059 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.779059 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.507944, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.507944, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773496 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773496 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3878 }, "geometry": { "type": "Point", "coordinates": [ -122.503481, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3869 }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3767 }, "geometry": { "type": "Point", "coordinates": [ -122.503481, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3877 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771868 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3766 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771868 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.771868 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.771868 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "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": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.764133 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2032 }, "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": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 3608 }, "geometry": { "type": "Point", "coordinates": [ -122.509146, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3506 }, "geometry": { "type": "Point", "coordinates": [ -122.509146, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.508974, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.763998 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.763998 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "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": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "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": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "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": 3827 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3715 }, "geometry": { "type": "Point", "coordinates": [ -122.507944, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3539 }, "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": 3444 }, "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": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3538 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "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": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754905 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754905 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "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": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3429 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3525 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3446 }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3540 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760605 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3542 }, "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": 3445 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760605 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3541 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760605 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781773 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.783401 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781502 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783537 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781773 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783537 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3850 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3956 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "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": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.486830, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.486830, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "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": 1099 }, "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": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777838 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "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": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3798 }, "geometry": { "type": "Point", "coordinates": [ -122.492151, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_sequence": 3907 }, "geometry": { "type": "Point", "coordinates": [ -122.492151, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.492838, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 3851 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.492838, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 3957 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.491808, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776074 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.775939 ] } } +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 3522 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772139 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3765 }, "geometry": { "type": "Point", "coordinates": [ -122.489576, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 3627 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772139 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3764 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3876 }, "geometry": { "type": "Point", "coordinates": [ -122.489576, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3875 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787335 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787335 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781909 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782044 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782044 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.782180 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780416 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.782180 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778245 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778245 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.482367, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.482367, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 3355 }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774311 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.483740, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.772682 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 3447 }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.483740, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.478075, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776617 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.478075, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776617 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.776617 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3759 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764540 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.495756, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3870 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.495756, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.488203, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3426 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760876 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.488203, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3522 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 3425 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760876 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758841 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 3521 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760876 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755176 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 3424 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 3520 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3422 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.753548 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3519 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753683 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765083 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.753548 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765083 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765083 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765083 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.477560, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3785 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "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": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.477560, 37.765490 ] } } -, -{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } -, -{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 3894 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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", "tippecanoe:retain_points_multiplier_sequence": 3580 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765355 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763387 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3518 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761351 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761283 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "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": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761419 ] } } -, -{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.761623 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3517 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } -, -{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } -, -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3482 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3421 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761283 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3543 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761419 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 3423 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3515 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3826 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3516 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761555 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759926 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.755991 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755855 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.480822, 37.754090 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3714 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.480822, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.755991 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759926 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754090 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755855 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.480822, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753005 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.480822, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753005 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747304 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745404 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745404 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.749340 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745404 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.753005 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747304 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745404 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745404 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745404 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.753005 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741739 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3321 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.737938 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741739 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3309 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3600 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735358 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735358 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 3824 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3501 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735358 ] } } , -{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731557 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735358 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3712 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753276 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 3955 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731557 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753276 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3849 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745811 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751783 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745811 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.745811 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744182 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3545 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3532 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744182 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3448 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3438 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.738345 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736716 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738616 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742553 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.738345 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736716 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 3320 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.748118 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742553 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750154 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748526 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748661 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748526 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.752055 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746625 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748526 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742553 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748526 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746625 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742553 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742825 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.742960 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3805 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742825 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733865 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3940 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3694 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733865 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3832 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3935 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 3420 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3419 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3827 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3603 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728842 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 3328 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 3626 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.724090 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724225 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 3503 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3421 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727077 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728842 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.718658 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3936 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3521 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.724090 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3934 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724225 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727077 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3828 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3826 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3920 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3811 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 3418 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 3326 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3327 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719066 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3812 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719066 ] } } , -{ "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 & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3524 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 3782 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 3769 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.780687 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782451 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 3672 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782451 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3656 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3460 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3368 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 3467 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.780959 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3552 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 3832 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3464 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.780959 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.783130 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3455 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 3721 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3372 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.783130 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 3754 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.474127, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.474127, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "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": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "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": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777024 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3780 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3670 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "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": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3663 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "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": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 931 }, "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": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "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": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "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": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786250 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "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": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.453699, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.453699, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "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": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 3631 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3853 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3959 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "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": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781366 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781502 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "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": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "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": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "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": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "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": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 3536 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 3640 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3537 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3641 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773496 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773496 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.773903 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.773903 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "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": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777431 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777024 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 3206 }, "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": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1704 }, "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": 1745 }, "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": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "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": 2009 }, "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": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "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": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "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": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "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": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "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": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3651 }, "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": 3765 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "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": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3705 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_sequence": 3706 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_sequence": 3816 }, "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": 228 }, "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": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762233 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762233 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1870 }, "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": 1910 }, "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": 3417 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 3511 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "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": 235 }, "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": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3514 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 3419 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_sequence": 3620 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_sequence": 3516 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.758026 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "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": 3513 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "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": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756941 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756941 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "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": 289 }, "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": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756262 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756262 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "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": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754226 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "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": 1912 }, "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": 3418 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 3512 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758298 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "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": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 3494 }, "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": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760198 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760198 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 3594 }, "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": 3495 }, "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": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "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": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754769 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.462797, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.462797, 37.762369 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "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": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3861 }, "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": 3749 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764405 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 834 }, "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": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763794 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763794 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758569 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.758434 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758569 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3670 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.758434 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.758434 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 3384 }, "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": 3292 }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } , -{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 3381 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 3289 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "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": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "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": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } , -{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 3380 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 3288 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3379 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3287 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 3383 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3291 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3382 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 3290 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 3378 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 3286 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_sequence": 3385 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755312 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3293 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 821 }, "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": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "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": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "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": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.786928 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 3377 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787471 ] } } +{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 3285 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787471 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "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": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.448206, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.448206, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "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": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.787335 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.787335 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787335 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.786250 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787335 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "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": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "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": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "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": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 3136 }, "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": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.778110 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.778110 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.777974 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.777974 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 3225 }, "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": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775396 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3771 }, "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": 3658 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "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": 3797 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3686 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3872 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3761 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775667 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3874 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3763 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3461 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3369 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3760 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3871 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3771 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3881 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3770 }, "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": 3880 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.773768 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "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": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773903 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.773903 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.773903 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "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": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "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": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.774175 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785165 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.786250 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785300 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785165 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785300 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779466 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783130 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783401 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783130 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783130 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.781773 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "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": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.438936, 37.780416 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.780687 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.434988, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.434988, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "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": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781502 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.779873 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "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": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3762 }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "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": 3873 }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777838 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777838 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774718 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770918 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774853 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.778110 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.775125 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.778110 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.775396 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.771054 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.771190 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.771190 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769290 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769290 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769561 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3491 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768204 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769561 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769697 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.764540 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 3545 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765762 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 3649 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765897 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.767051 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.770240 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 3557 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767119 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.767051 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 3662 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767119 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_sequence": 3378 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766305 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3470 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766305 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST", "tippecanoe:retain_points_multiplier_sequence": 3507 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST", "tippecanoe:retain_points_multiplier_sequence": 3609 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 3284 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3283 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760876 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760876 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760876 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.761826 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760876 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761283 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.759926 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761283 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.759926 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760198 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760198 ] } } +{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756398 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.756398 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755448 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756398 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.756398 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755312 ] } } +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754090 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.766508 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762369 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 3671 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.766712 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.768951 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767119 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3529 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3413 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3570 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.765626 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3633 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3507 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.769222 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3678 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3530 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762505 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.762505 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.763862 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764133 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 3634 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762505 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.762505 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.761555 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760605 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.763862 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.761555 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760605 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } , -{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755312 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.750494 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748797 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3691 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748797 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 3690 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746761 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.750494 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748797 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.470694, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748661 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 3802 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748797 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746761 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.470694, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748797 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.748933 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750697 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3701 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748797 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743368 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.748933 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.739024 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739159 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737530 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3812 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3279 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743368 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 3696 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741060 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.739024 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739159 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3283 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737530 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3371 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736444 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 3233 }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_sequence": 3781 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3281 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 3808 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3782 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3611 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3282 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3277 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 3563 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3375 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3449 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3276 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3496 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 3278 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 3284 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3890 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_sequence": 3807 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739431 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3373 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_sequence": 3460 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3891 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3374 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 3369 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 3362 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3546 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 3368 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3370 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 3376 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3322 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 3323 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739431 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3541 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3558 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3542 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 3454 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_sequence": 3540 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3543 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3310 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 3645 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3646 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.745268 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 3311 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3644 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3312 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 3647 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 3313 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3316 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3317 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 3402 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.745268 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.460051, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3403 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 3404 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739159 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3407 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3408 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.460051, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743435 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739159 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742825 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.737734 ] } } -, -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.737870 ] } } -, -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744114 ] } } -, -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } -, -{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741603 ] } } -, -{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.740856 ] } } -, -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743435 ] } } -, -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.743096 ] } } -, -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } -, -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2618 }, "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": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741942 ] } } , { "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736716 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734680 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2971 }, "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": 3700 }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732779 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3806 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "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": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732779 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3695 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3931 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3823 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3715 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3603 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734272 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 3372 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 3280 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3598 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 3499 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 3531 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 3437 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3534 }, "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": 3440 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731150 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "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": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731014 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3535 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731285 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3441 }, "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": 1858 }, "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": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 3602 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731285 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 3502 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731285 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "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": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3638 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3752 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2438 }, "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": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3528 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3433 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 3527 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728299 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3647 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727212 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728299 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3761 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3648 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.474642, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3762 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.474642, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 3511 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3512 }, "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": 3614 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 3405 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3615 }, "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": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3500 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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 Ave", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } , { "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", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720899 ] } } -, -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } -, -{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } -, -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3815 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3704 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3526 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 3685 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3686 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 3432 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 3590 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.732236 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3576 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3577 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 3452 }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 3490 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3450 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3451 }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.732236 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3449 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 3360 }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3358 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3448 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3359 }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 3453 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3357 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732236 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3356 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 3361 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732236 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 3529 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724904 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 3434 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724904 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 3589 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3430 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724904 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724361 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724225 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 3489 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 3687 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724361 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 3588 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3431 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724225 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724225 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 3587 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3578 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 3630 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 3488 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 3487 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 3527 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 3405 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 3406 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 3314 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750426 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3315 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } , -{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } , -{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 3465 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.750697 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750426 ] } } , -{ "type": "Feature", "properties": { "name": "6 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752055 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746625 ] } } +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 3373 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 3860 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "6 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3591 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.748933 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.746897 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 3748 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 3617 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_sequence": 3491 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3618 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746625 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.744318 ] } } +{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.748933 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.746897 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.742553 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 3513 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3514 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746625 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740788 ] } } +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.744318 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.737802 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.742553 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3669 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740788 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.737802 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3564 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.736852 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.736444 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736580 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.736852 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736580 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748526 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.746897 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.745268 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748526 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.746897 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.745268 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749611 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.749476 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751376 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749611 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.749476 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3642 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.751512 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752055 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.433786, 37.749611 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748661 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3538 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.747847 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747847 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747033 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748661 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.747847 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747847 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3657 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748118 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743639 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3552 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 3632 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743639 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 3528 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.740245 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.740245 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.738616 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738345 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736037 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738345 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.448893, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736037 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 3777 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.448893, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 3665 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727620 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728434 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 3585 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728434 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3479 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3387 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719337 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3932 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3824 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3485 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3394 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 3562 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 3464 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 47 }, "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": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3803 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720423 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 3436 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , -{ "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , -{ "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 3566 }, "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": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3567 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720423 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3756 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3561 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720423 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 3866 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3463 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3755 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3486 }, "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": 3395 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 3593 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 3493 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "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": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "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": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3487 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3396 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2858 }, "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": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728977 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3488 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3397 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727755 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727755 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730335 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "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": 74 }, "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": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "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": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.433786, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.433786, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "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": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "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": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733458 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732372 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732372 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731285 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732507 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731285 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.725719 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3399 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.725719 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3398 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3490 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 3489 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3720 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 3831 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 3407 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 3502 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723818 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.724293 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724633 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724497 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724497 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723343 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726330 ] } } -, -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726126 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726126 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.806326 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806326 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807004 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.806326 ] } } , -{ "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": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806326 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807004 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.806597 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.806597 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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": 11 }, "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": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805647 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.807207 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2099 }, "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": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.806054 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808563 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.806054 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3753 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808563 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3865 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3461 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807817 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3559 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807817 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 3389 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807750 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806461 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 3481 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806868 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806461 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801443 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806868 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801307 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801443 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801307 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801578 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797645 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3821 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3810 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3262 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 3261 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3929 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3919 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3249 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3655 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804834 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3248 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798187 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804291 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3305 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.805105 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3745 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3304 }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3768 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.804969 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3928 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804766 ] } } +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_sequence": 3666 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.803342 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3293 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804291 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802392 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3858 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.804969 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805376 ] } } , -{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_sequence": 3778 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.803342 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803613 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3288 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802392 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3289 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800493 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 3206 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 3287 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805376 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803613 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.801578 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3296 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800493 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 3297 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3275 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3276 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 3317 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3318 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3270 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3297 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3294 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3302 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3389 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.796424 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3386 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 3296 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 3394 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 3510 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794932 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796153 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3319 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.796424 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3388 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.795068 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 3285 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 3310 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 3613 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794932 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3307 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796153 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3497 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.795068 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3304 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3299 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790862 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3300 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.790998 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3399 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.793033 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 3290 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_sequence": 3596 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3833 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791405 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790455 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3396 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790862 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.790998 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3454 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790455 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792083 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3941 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791405 ] } } +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3831 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3313 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3286 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790455 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.804495 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3551 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805241 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790455 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 3311 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3939 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.804766 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802867 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802799 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801850 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } -, -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.804495 ] } } -, -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } -, -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805241 ] } } -, -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } -, -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , { "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.804495 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.804155 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.804155 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800222 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800222 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3257 }, "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": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3258 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3252 }, "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": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799137 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3253 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "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": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798323 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797374 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3259 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799408 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799408 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3260 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3255 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799679 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3254 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799679 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "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": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "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": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 3577 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802799 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3479 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802799 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "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": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802053 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802053 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804766 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.802935 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.801172 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.801172 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3274 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3183 }, "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": 3273 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2010 }, "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": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 3265 }, "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": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.800086 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3264 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.800086 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "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": 2061 }, "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": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 998 }, "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": 975 }, "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": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 3245 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 3156 }, "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": 3243 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 3244 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.798187 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797170 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3300 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.792490 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3392 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3298 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3390 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.795542 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792829 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3301 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792829 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3393 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791676 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791676 ] } } +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.790862 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3830 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789641 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.790862 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789506 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789370 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3938 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789641 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790998 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791812 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.790862 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.790862 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.788421 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.789234 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.788421 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795000 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "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": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3299 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3391 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3306 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3398 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796153 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796153 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "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": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 16 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "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": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3303 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3395 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.792626 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.792626 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "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": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "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": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.788285 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3015 }, "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": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791676 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791676 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788828 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788828 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 3692 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808224 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3803 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806054 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806054 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807207 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.807139 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.807139 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3414 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3508 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.806597 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3651 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806597 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3546 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806597 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803477 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803477 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803342 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803342 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "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": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "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": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800493 ] } } , -{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800493 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3272 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799273 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799340 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3251 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 3250 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.797170 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 3481 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 3579 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 3256 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 3178 }, "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": 3266 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 3267 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } , -{ "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": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3544 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803884 ] } } , -{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3648 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805105 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803884 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802121 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802935 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802121 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.802935 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.799679 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.799679 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3367 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797509 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3459 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798323 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796831 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798323 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 3773 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3802 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796831 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3883 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.796695 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3911 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.795339 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.793847 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.795339 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792829 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.793033 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792829 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796017 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.794661 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796017 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.794661 ] } } +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792490 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792829 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792829 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792219 ] } } +{ "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.792083 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792083 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792083 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789099 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789234 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789099 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788149 ] } } +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.789777 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3744 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788556 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795881 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3305 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.794661 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.789777 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3857 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788556 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795881 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3397 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.793982 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796017 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792897 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.794661 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794796 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795068 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792897 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795068 ] } } +{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 3645 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.790998 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 3760 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.790998 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.788963 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3561 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3677 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791269 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3666 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3539 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.790862 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790320 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791269 ] } } -, -{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_sequence": 3582 }, "geometry": { "type": "Point", "coordinates": [ -122.399626, 37.791269 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 3643 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2292 }, "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": 2237 }, "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.401171, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790116 ] } } -, -{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788895 ] } } , -{ "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 3787 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 3676 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799544 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.798866 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.798866 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797781 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "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": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "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": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3800 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792490 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3556 }, "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": 3661 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } , -{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "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": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Main St", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Main St", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.792558 ] } } , { "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.396536, 37.793033 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "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_sequence": 2318 }, "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": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795068 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.795000 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3467 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795068 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3650 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3375 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3578 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 3480 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3616 }, "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": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3525 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792490 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794389 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794389 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794118 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794118 ] } } , { "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } -, -{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_sequence": 3953 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } -, -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 3798 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.792626 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_sequence": 3847 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793915 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 3687 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.792626 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3027 }, "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": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3851 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 3951 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3739 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 3845 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "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": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 3756 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789234 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3642 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789641 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789641 ] } } , -{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3952 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 3846 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3786 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.791812 ] } } , -{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3895 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.791812 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "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": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3711 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790591 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3823 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790591 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3708 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790591 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3820 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3800 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3702 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789777 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3909 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3703 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789777 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3813 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789777 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3814 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789777 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3819 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 3554 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 3659 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791405 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3741 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791405 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3854 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789234 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 3707 }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788828 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 3818 }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788828 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3948 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3835 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "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": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "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": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.790455 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3816 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3924 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789641 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_sequence": 3817 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789641 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3554 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828158 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3725 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828158 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829785 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829785 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 3684 }, "geometry": { "type": "Point", "coordinates": [ -122.376280, 37.825447 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.824430 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 3794 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828294 ] } } +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 3795 }, "geometry": { "type": "Point", "coordinates": [ -122.376280, 37.825447 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 3366 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.824430 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } , -{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 3685 }, "geometry": { "type": "Point", "coordinates": [ -122.372675, 37.824023 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3698 }, "geometry": { "type": "Point", "coordinates": [ -122.373877, 37.823480 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824565 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 3796 }, "geometry": { "type": "Point", "coordinates": [ -122.372675, 37.824023 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.829243 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3810 }, "geometry": { "type": "Point", "coordinates": [ -122.373877, 37.823480 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824565 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825175 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.829243 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_sequence": 3683 }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.368898, 37.823616 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825175 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825311 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3793 }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.368898, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.816226 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825311 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3682 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822328 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3792 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822328 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 3681 }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819887 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 3791 }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819887 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3643 }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.818328 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3531 }, "geometry": { "type": "Point", "coordinates": [ -122.370958, 37.813107 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3758 }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 3532 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813107 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3635 }, "geometry": { "type": "Point", "coordinates": [ -122.370958, 37.813107 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3636 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813107 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 3533 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822192 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3637 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820701 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822192 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.364779, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820701 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 3534 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.364779, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.363749, 37.811683 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 3638 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3535 }, "geometry": { "type": "Point", "coordinates": [ -122.364264, 37.811344 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.363749, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } , -{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3639 }, "geometry": { "type": "Point", "coordinates": [ -122.364264, 37.811344 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786928 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781909 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.787200 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.786114 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.425032, 37.785436 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.425032, 37.785436 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3314 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3315 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3834 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_sequence": 3312 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3772 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3295 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3294 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3774 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3942 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3882 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3309 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3308 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.782451 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781909 ] } } , -{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3291 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3292 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775803 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.775803 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.779195 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.776074 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.779195 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.772139 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3719 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.772411 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.772139 ] } } +{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3830 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.772411 ] } } +{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773768 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.775939 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3649 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770918 ] } } , -{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3784 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.774175 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3749 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3268 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3763 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770918 ] } } +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3893 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786521 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.774175 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.786793 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 3359 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786114 ] } } , -{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787200 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 3225 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782180 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 3316 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780280 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782180 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.783265 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3301 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.782451 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 3302 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780280 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780145 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 3549 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787335 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786521 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.786386 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 3654 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780687 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787335 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.786386 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787132 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3725 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.787200 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3568 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3560 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787132 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3836 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3675 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3718 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3637 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3829 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_sequence": 3751 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3688 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780280 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782044 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783401 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3652 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778381 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3799 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3388 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780280 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3298 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778652 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777296 ] } } -, -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.778177 ] } } -, -{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3766 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778381 ] } } -, -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3480 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.778042 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 3307 }, "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": 3306 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3474 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775192 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3303 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775260 ] } } , { "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3744 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } -, -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3632 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3654 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3943 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3817 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 3469 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3665 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3559 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774175 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774175 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3750 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3852 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779059 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779059 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 3548 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3855 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 3742 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.775125 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "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": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772411 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774718 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3945 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772411 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 3837 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3506 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767526 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3412 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.769290 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767526 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 3676 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "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": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "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": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 3411 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 3505 }, "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": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3447 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 3544 }, "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": 2274 }, "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": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3848 }, "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": 3954 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3408 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.764540 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764540 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.762776 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.762776 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2323 }, "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": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3357 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3266 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3356 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770104 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768340 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 3333 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768340 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3243 }, "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": 3334 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764676 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764676 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3244 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 3335 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3245 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3246 }, "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": 3336 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3247 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3248 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763048 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3337 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3338 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3339 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763048 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761419 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3370 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3462 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3371 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757348 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3463 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757348 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756398 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.754769 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757212 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756398 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3249 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3250 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3251 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3253 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3340 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3252 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758705 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3341 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3254 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3343 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 3255 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3342 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758705 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3256 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 3344 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3257 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3345 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3258 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3346 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3348 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.768611 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3347 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.768611 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767119 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3841 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768476 ] } } , -{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765083 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768476 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765083 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2231 }, "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": 3428 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "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": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.765083 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3524 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 3728 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3738 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3730 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 3839 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3850 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3551 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3842 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3656 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3731 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.763794 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3843 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770376 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.763794 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770376 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "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": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768069 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768069 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763998 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763998 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.762912 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.762912 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 3737 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761826 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3732 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 3849 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3736 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758841 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3844 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3848 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758841 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755176 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3733 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3735 }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755448 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3845 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761826 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3847 }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.758976 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3769 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.758976 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.758976 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 3768 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 3879 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761826 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "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": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787471 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787471 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1501 }, "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": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "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": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3607 }, "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": 3505 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 3946 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3839 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3668 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3838 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_sequence": 3562 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis street & Powell street", "tippecanoe:retain_points_multiplier_sequence": 3908 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street", "tippecanoe:retain_points_multiplier_sequence": 3799 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 23 }, "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 St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } +{ "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 STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3567 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784418 ] } } +{ "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": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "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": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3365 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.786386 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.786386 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "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": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "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": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3604 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3838 }, "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": 3727 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 3716 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 3604 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782723 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782723 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "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": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.786521 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3947 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 3764 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3842 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 3650 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 3745 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.787878 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3746 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 3633 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 3634 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 3564 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 3466 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780280 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780280 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3606 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.780416 ] } } +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3504 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.780416 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781773 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780687 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776617 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "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": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773496 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "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": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772547 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3549 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771461 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3452 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.774650 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3859 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 3747 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3837 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3679 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3726 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3571 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3822 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3710 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3786 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786521 ] } } , -{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 3770 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 3657 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 3469 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3377 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3809 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3697 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 3843 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 3949 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784486 ] } } , -{ "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.784486 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3840 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784283 ] } } , -{ "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": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782451 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3841 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.782655 ] } } , -{ "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": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } , -{ "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": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783265 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 3592 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3492 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3950 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3844 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3553 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } , -{ "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": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3456 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3646 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784554 ] } } , -{ "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 & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } , -{ "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": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.389498, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3658 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.389498, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "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": 3553 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3910 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "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": 3801 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3624 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 3519 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777431 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3192 }, "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": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777024 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3455 }, "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": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.777024 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "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": 193 }, "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": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "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": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3472 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 3571 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 3631 }, "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": 3739 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3626 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 3714 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 3602 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3568 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 3470 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.776074 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 3729 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 3617 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3555 }, "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": 3457 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } -, -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773089 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } -, -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } -, -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.778992 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3724 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } -, -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775464 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3683 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 3682 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776210 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3707 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } -, -{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3708 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772818 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3900 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } -, -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773089 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3664 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766305 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 3613 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3574 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 3573 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 3595 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3360 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3367 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3596 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3366 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3791 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3361 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_sequence": 3558 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766305 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.765897 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3269 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3275 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3270 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3896 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 3746 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.763523 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.765897 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 3904 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3897 }, "geometry": { "type": "Point", "coordinates": [ -122.399626, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763455 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_sequence": 3796 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3788 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3362 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3669 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3363 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.763523 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 3795 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3789 }, "geometry": { "type": "Point", "coordinates": [ -122.399626, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763455 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755855 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3937 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755176 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.761826 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3271 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3364 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3272 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3365 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.759655 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759655 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759519 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755855 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3829 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.759655 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3273 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3422 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756126 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3274 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.759655 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759655 ] } } , -{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759519 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3610 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.759655 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Carolina St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 3432 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3330 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3431 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756126 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3423 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3903 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3898 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3501 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3508 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3901 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3331 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 3902 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 3340 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3899 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3339 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 3586 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769697 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 3684 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3332 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3681 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769561 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3794 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766508 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3709 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3406 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3473 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3706 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764405 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3726 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764405 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3792 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3574 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 3793 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } +{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 3790 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_sequence": 3727 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764133 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3486 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763319 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 3575 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769290 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3572 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769561 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3569 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 3597 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3783 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761283 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759926 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3381 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3594 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760062 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3614 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 3476 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3615 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763319 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3673 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761283 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3424 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 3428 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3429 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760062 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_sequence": 3430 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3784 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3785 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754769 ] } } , -{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3333 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3337 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 3547 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 3338 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3674 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3570 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3675 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3710 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755448 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3583 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3450 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3767 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3471 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3598 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.757551 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 3772 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 3776 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758026 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3653 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758026 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3705 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3711 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.758026 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3660 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755108 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 3664 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3477 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3599 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746490 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.751783 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.749340 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746761 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751919 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746761 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3350 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751919 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743503 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.752055 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3260 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743503 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3503 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 3504 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3409 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 3677 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742146 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3410 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3457 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "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": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742146 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 3569 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3364 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736444 ] } } +{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3444 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737123 ] } } +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_sequence": 3352 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737123 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742146 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.737123 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742282 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.743775 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.743775 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3888 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3779 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3889 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3780 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736173 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736173 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3349 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740245 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3259 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752055 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.752190 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751919 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.752190 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751919 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3352 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3261 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3262 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749476 ] } } +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749476 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3846 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3734 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "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": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3840 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3729 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3353 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.748661 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3263 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.748661 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3355 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3265 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3354 }, "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": 3264 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 3811 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 3699 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3884 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 3775 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748526 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748526 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3788 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3678 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746897 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746897 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 3358 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 3267 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3961 }, "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": 3855 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.746218 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "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": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3673 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749204 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749204 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "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": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3565 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3672 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "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": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "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": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3679 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3789 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3776 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3885 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.748118 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "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": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "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": 1451 }, "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": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "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": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3778 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3887 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 997 }, "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": 1019 }, "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": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.739295 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "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": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.739024 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.739024 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "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": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744182 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744182 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744318 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744318 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_sequence": 3693 }, "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": 3804 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741196 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741196 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "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": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 999 }, "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": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "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": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3517 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3622 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737123 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 3621 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737123 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739567 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3605 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.735630 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733186 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733458 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733458 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730607 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730607 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728434 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 3640 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728434 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 3754 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.735223 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3757 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735223 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.735087 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728706 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728706 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.735223 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735223 ] } } +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 3496 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.735087 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728706 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.723954 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728706 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 3595 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.723954 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721510 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.724633 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725040 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725176 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 3526 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "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": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718794 ] } } -, -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.724633 ] } } -, -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724701 ] } } -, -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725040 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725176 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "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": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725379 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 3629 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720356 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.719337 ] } } , @@ -19848,1257 +19474,1243 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735766 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735766 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735087 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735087 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.735630 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "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": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3862 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 3750 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732779 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732779 ] } } , -{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3468 }, "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": 3376 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732507 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.729113 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.728977 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.728977 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.728977 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.728977 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 3856 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 3743 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3601 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "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": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735766 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735766 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "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": 1478 }, "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": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3825 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3713 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3280 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.730878 ] } } +{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727348 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.730878 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.725855 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.726398 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.726398 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "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": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 3279 }, "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": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3277 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 3278 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3282 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 3437 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3439 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 3345 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3281 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3347 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 3443 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 3192 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 3438 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 3346 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "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": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749476 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.753005 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749476 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.753005 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751376 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue", "tippecanoe:retain_points_multiplier_sequence": 3659 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751376 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 3886 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 3777 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750697 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750697 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 3550 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742825 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 3453 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742825 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3475 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742825 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.741331 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 3382 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742825 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.741331 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3674 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738345 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3566 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738345 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737938 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 3476 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3383 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743911 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.743911 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.741060 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742282 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743911 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.743911 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739567 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739092 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3426 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3425 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752190 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3335 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3427 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3334 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752190 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3336 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_sequence": 3774 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747304 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.747236 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 3653 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746150 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_sequence": 3662 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3773 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752598 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747304 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3775 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.747236 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 3548 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3661 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3663 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737123 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.736309 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736852 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737123 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 3652 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744046 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736852 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740653 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742960 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742960 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3713 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 3547 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744046 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3703 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740653 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 3575 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3601 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3473 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.739838 ] } } +{ "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.387867, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3719 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3720 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3718 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3609 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3607 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3610 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736309 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3734 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3606 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3702 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736309 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3743 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739295 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3905 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3906 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3622 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3630 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 3735 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3701 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3797 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 3742 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3608 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732372 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3629 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732372 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733186 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731285 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730064 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 3944 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731285 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3958 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730064 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 3836 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3655 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3852 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735223 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_sequence": 3550 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735223 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727484 ] } } +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 3787 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727755 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727620 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728434 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727484 ] } } , -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730335 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727755 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727620 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728434 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726262 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726126 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730335 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726534 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725176 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.729113 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 3435 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726262 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3436 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726126 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 3442 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726534 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3441 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725040 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725176 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3343 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3440 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 3344 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 3350 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3349 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719337 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725040 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3348 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720423 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 3913 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723275 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3805 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723275 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3912 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719337 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733186 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731964 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 3804 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3434 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731964 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731150 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 3892 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 3783 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735766 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3478 }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735630 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735087 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735766 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3736 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3386 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 3741 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 3385 }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735087 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 3623 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3628 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_sequence": 3573 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 3592 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732236 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3737 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.732372 ] } } +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_sequence": 3475 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732236 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 3624 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 3477 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3627 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.732372 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3721 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 3384 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 3717 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3605 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3433 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3576 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 3699 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3341 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3698 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3342 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3478 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3328 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 3590 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 3327 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3747 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3667 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725447 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3697 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725447 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3635 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3589 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725447 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 3680 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3914 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3806 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3738 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3695 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3625 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3722 }, "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": 3587 }, "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": 3740 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3611 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 3572 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 3474 }, "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": 3696 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3588 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_sequence": 3700 }, "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": 3591 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722596 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722596 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 3915 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3636 }, "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": 3748 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721374 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721374 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 3325 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 3233 }, "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": 3324 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "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": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3667 }, "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": 3779 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3671 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3781 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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": 3668 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 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.386665, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.753140 ] } } -, -{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3759 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.750290 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.753140 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3723 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3644 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 3712 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.750290 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3704 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3612 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 3584 }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3600 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745811 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 3593 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 3484 }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } +{ "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.745811 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 3755 }, "geometry": { "type": "Point", "coordinates": [ -122.387094, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3641 }, "geometry": { "type": "Point", "coordinates": [ -122.387094, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740517 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740517 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.383661, 37.742553 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743911 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743911 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "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": 3716 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743775 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3415 }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 3509 }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740653 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "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": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.386236, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.386236, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3599 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3500 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "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": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.381773, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.381773, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "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": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.380743, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.380743, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 3868 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3758 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.379198, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.379198, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.736987 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.736987 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.735833 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "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": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.732372 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "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": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3353 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 3354 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 3445 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729520 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3446 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.385378, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729520 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.385378, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.386236, 37.729520 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.386236, 37.729520 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.730131 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "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": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729385 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729385 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733458 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732372 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732372 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3483 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 3581 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "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": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "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": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.730742 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.730742 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.376966, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.376966, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "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": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "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": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727077 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731964 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731964 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731964 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730199 ] } } , -{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.373705, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730199 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.373705, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729113 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 3465 }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.367868, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3563 }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725312 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.367868, 37.725312 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 3459 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727348 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3557 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "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": 1849 }, "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": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718387 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718387 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717300 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715942 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715942 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 3921 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3813 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3930 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714584 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3925 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3822 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3818 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 3510 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3625 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 3416 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3520 }, "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": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715807 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715807 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.715942 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.715942 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.717300 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 868 }, "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": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3814 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3922 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717708 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 3363 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717708 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 3456 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714720 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714584 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 3819 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714720 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3815 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 3926 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3820 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3923 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3927 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3825 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 3933 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 3468 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3462 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 3565 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3560 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714313 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717708 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717708 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715942 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715942 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "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": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3619 }, "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": 3515 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 672 }, "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": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718522 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718522 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3439 }, "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": 3533 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.718251 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 3442 }, "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": 3536 }, "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": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "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": 3537 }, "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": 3443 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2764 }, "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": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713905 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713905 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3435 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 3530 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3740 }, "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": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3853 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715671 ] } } , -{ "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": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714720 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714720 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.715467 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.715467 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 3523 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.717436 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 3628 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718251 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3379 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3330 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3403 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3471 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3581 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 3583 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3495 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3690 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3582 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3692 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3332 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3374 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3691 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3322 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3331 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3466 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 3400 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3412 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.717300 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3451 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3492 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3404 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3493 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3319 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3499 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717300 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3392 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3498 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 3393 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3409 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3580 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 3483 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3579 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 3484 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3689 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 3390 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3688 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 3482 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3320 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 3325 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3410 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 3323 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3416 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3324 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 3415 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3413 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 3414 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 3321 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 3411 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3497 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 3485 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713498 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.717029 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3585 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713498 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.387781, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.717029 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718251 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "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_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.387781, 37.714109 ] } } -, -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "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": 3694 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717436 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3586 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717436 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , { "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778517 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } ] } ] } , @@ -21106,15 +20718,15 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "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", "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , 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 98ba8e2ec..60a6ac7cd 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 @@ -5,18 +5,20 @@ "description": "tests/muni/out/-z11_-ycount_--set-attribute_count%3a1_--accumulate-attribute_count%3asum_--retain-points-multiplier_5.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-z11_-ycount_--set-attribute_count%3a1_--accumulate-attribute_count%3asum_--retain-points-multiplier_5.json.check.mbtiles -z11 -ycount --set-attribute count:1 --accumulate-attribute count:sum --retain-points-multiplier 5 tests/muni/muni.json", -"json": "{\"vector_layers\":[{\"id\":\"muni\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":11,\"fields\":{\"count\":\"Number\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}},{\"id\":\"subway\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":11,\"fields\":{\"count\":\"Number\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":2,\"layers\":[{\"layer\":\"muni\",\"count\":4592,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"count\",\"count\":76,\"type\":\"number\",\"values\":[1,10,105,110,112,113,1175,12,124,125,1279,13,1359,15,156,157,17,172,18,185,187,188,19,193,1954,2,20,200,207,208,22,24,25,263,28,282,29,3,30,31,311,312,315,32,33,34,380,4,41,42,43,44,45,4592,49,5,50,512,520,6,60,62,63,65,652,7,73,74,75,767,78,8,80,82,83,97],\"min\":1,\"max\":4592},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":1000,\"type\":\"number\",\"values\":[0,1,10,100,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,101,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,102,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,103,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,104,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,105,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,106,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,107,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,108,1080,1081,1082,1083,1084,1085,1086,1087],\"min\":0,\"max\":4392}]},{\"layer\":\"subway\",\"count\":19,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"count\",\"count\":8,\"type\":\"number\",\"values\":[1,13,19,2,4,5,6,9],\"min\":1,\"max\":19},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":19,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,2,3,4,5,6,7,8,9],\"min\":0,\"max\":18}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"muni\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":11,\"fields\":{\"count\":\"Number\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}},{\"id\":\"subway\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":11,\"fields\":{\"count\":\"Number\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":2,\"layers\":[{\"layer\":\"muni\",\"count\":4592,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"count\",\"count\":96,\"type\":\"number\",\"values\":[1,10,108,11,111,12,122,13,1357,14,146,147,15,152,157,16,169,17,171,18,19,195,2,20,205,21,210,22,23,232,239,24,244,245,25,26,27,28,287,29,3,30,302,3034,31,32,33,336,35,357,36,364,366,37,3795,39,391,4,40,428,43,449,45,46,48,488,49,5,54,56,58,59,6,60,610,62,68,69,7,76,761,78,785,797,8,82,88,9,90,916,92,94,95,96,97,98],\"min\":1,\"max\":3795},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":1000,\"type\":\"number\",\"values\":[0,1,10,100,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,101,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,102,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,103,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,104,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,105,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,106,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,107,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,108,1080,1081,1082,1083,1084,1085,1086,1087],\"min\":0,\"max\":4387}]},{\"layer\":\"subway\",\"count\":19,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"count\",\"count\":8,\"type\":\"number\",\"values\":[1,15,19,2,4,5,7,8],\"min\":1,\"max\":19},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":19,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,2,3,4,5,6,7,8,9],\"min\":0,\"max\":18}]}]}}", "maxzoom": "11", "minzoom": "0", "name": "tests/muni/out/-z11_-ycount_--set-attribute_count%3a1_--accumulate-attribute_count%3asum_--retain-points-multiplier_5.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":4609},{\"dropped_by_rate\":4607},{\"dropped_by_rate\":4604},{\"dropped_by_rate\":4594},{\"dropped_by_rate\":4576},{\"dropped_by_rate\":4520},{\"dropped_by_rate\":4394},{\"dropped_by_rate\":4059},{\"dropped_by_rate\":4257},{\"dropped_by_rate\":1410},{},{}]", +"strategies": "[{\"dropped_by_rate\":4608},{\"dropped_by_rate\":4607},{\"dropped_by_rate\":4603},{\"dropped_by_rate\":4594},{\"dropped_by_rate\":4574},{\"dropped_by_rate\":4519},{\"dropped_by_rate\":4402},{\"dropped_by_rate\":4096},{\"dropped_by_rate\":4349},{\"dropped_by_rate\":1652},{\"dropped_by_rate\":6},{}]", "tippecanoe_decisions": "{\"basezoom\":11,\"droprate\":2.5,\"retain_points_multiplier\":5}", "type": "overlay", "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4592, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3795, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "count": 797, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -26,11 +28,11 @@ , { "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": 1954, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3034, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } , -{ "type": "Feature", "properties": { "count": 1279, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 761, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 1359, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 797, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -40,15 +42,17 @@ , { "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": 1954, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 610, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +, +{ "type": "Feature", "properties": { "count": 610, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 512, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 302, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } , -{ "type": "Feature", "properties": { "count": 767, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 916, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 1175, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } +{ "type": "Feature", "properties": { "count": 1357, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 172, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 785, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -64,35 +68,35 @@ , { "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": 312, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 488, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } , -{ "type": "Feature", "properties": { "count": 207, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 122, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 263, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 366, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 520, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 244, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 652, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 302, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 312, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 428, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 200, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 244, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 263, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 244, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.796763 ] } } , -{ "type": "Feature", "properties": { "count": 193, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 239, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 311, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +{ "type": "Feature", "properties": { "count": 357, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 185, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 364, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "count": 282, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 245, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } , -{ "type": "Feature", "properties": { "count": 188, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 152, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 312, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.744657 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 336, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 380, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 449, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.735969 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -108,71 +112,75 @@ , { "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": 207, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 195, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "count": 49, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 146, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 105, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 98, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.770715 ] } } , -{ "type": "Feature", "properties": { "count": 207, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 122, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 263, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 171, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 125, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 97, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 80, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 98, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 315, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 195, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 73, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 49, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 110, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 147, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 74, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 95, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.766372 ] } } , -{ "type": "Feature", "properties": { "count": 207, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 60, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 188, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 232, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.744657 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 125, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 98, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 75, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 98, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 112, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 97, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 75, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 391, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.809784 ] } } , -{ "type": "Feature", "properties": { "count": 125, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.809784 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 96, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 78, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 94, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 105, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 49, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 80, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.827141 ] } } +{ "type": "Feature", "properties": { "count": 147, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 124, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 210, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 380, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779399 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 169, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 80, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 98, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 105, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 97, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.766372 ] } } , -{ "type": "Feature", "properties": { "count": 207, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 98, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } , -{ "type": "Feature", "properties": { "count": 75, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 147, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.740313 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 113, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 146, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 75, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.744657 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 125, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.744657 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 287, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 187, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.735969 ] } } +{ "type": "Feature", "properties": { "count": 49, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 208, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 146, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.735969 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 75, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 98, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 97, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 205, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.714245 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -188,187 +196,189 @@ , { "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": 82, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.831480 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 78, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.831480 ] } } , -{ "type": "Feature", "properties": { "count": 45, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 98, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 50, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 105, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 50, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 68, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 78, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 43, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 82, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.777228 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 33, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 42, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753344 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 58, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 33, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 50, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 105, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.742485 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 54, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.735969 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 50, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.725108 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 45, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 195, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 50, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 39, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759859 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 75, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 83, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 58, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 42, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 88, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 83, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 108, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 73, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 37, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 50, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 44, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 58, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 82, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 76, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 43, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 59, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 82, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 97, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.731625 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 33, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 75, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 157, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 50, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.729453 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 39, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 75, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 50, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 59, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.807614 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 88, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "count": 45, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.801104 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 68, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 112, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.796763 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 43, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 50, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.807614 ] } } +{ "type": "Feature", "properties": { "count": 59, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 33, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.805444 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 96, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 42, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 36, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 78, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 45, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 49, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.790252 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 49, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 80, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.824972 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 45, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.770715 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 49, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 90, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 28, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779399 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 37, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 41, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 30, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 50, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 33, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 111, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "count": 42, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 58, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 156, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 59, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788081 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 30, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 50, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 97, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764201 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 59, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 45, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.742485 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 50, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 69, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 43, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 48, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.735969 ] } } +{ "type": "Feature", "properties": { "count": 40, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 125, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.733797 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 33, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 50, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 92, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 45, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 58, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733797 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 50, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 59, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 88, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 45, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.722935 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 68, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.735969 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 157, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.716418 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 83, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 42, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.707726 ] } } +{ "type": "Feature", "properties": { "count": 59, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 83, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707726 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 59, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.714245 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 75, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.707726 ] } } , -{ "type": "Feature", "properties": { "count": 50, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.712072 ] } } +{ "type": "Feature", "properties": { "count": 29, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.709899 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 19, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.788081 ] } } ] } ] } , @@ -380,13103 +390,12347 @@ , { "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": 19, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.836903 ] } } -, -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.803274 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.801104 ] } } -, -{ "type": "Feature", "properties": { "count": 65, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.804359 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 17, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.800019 ] } } -, -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.805444 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } -, -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 39, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.804359 ] } } , -{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.512665, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.776142 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 28, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.797848 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 20, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.796763 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.802189 ] } } , -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.771800 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.800019 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 13, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.786996 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 39, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.778313 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 37, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 50, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.759859 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 33, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 42, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 62, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 33, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744657 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 35, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.764201 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 43, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.745743 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 20, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 24, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.777228 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 30, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.745743 ] } } , -{ "type": "Feature", "properties": { "count": 45, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 20, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 78, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726194 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 33, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.764201 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 28, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.783740 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 18, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 31, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.777228 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 24, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.763116 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 30, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 28, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 35, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 50, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.777228 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 30, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757687 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 39, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769629 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 45, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 17, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.767458 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 50, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 37, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 31, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749001 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 20, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 36, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.730539 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 60, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.721849 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 37, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 20, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 33, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 35, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.719677 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 13, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.737055 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 43, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 45, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.738141 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 50, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.728366 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 24, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752258 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 27, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733797 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 20, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 50, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.721849 ] } } +{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.800019 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.804359 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.800019 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 30, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 35, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 28, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.808699 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 31, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.802189 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802189 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.793508 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 13, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789167 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 39, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.795678 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 21, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 18, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808699 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.803274 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.803274 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 78, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 62, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.797848 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.789167 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 18, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.803274 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793508 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 30, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 27, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 29, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.790252 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 20, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 36, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811954 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.786996 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.793508 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 32, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 20, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.781569 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 18, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 49, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.788081 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 28, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 31, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771800 ] } } +{ "type": "Feature", "properties": { "count": 82, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 30, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 26, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 28, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 33, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 22, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 27, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784825 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 19, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 30, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.788081 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 27, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 45, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784825 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 30, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 96, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778313 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 28, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.786996 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.769629 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 31, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.754430 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 23, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.755516 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 20, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 27, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 20, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 43, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 31, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.752258 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 39, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.741399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 13, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 18, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 27, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.732711 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 48, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.732711 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.721849 ] } } , -{ "type": "Feature", "properties": { "count": 50, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 45, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 43, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.737055 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 20, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 29, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 63, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 97, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 20, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 59, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.722935 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 24, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 32, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.731625 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 21, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730539 ] } } , -{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.732711 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.732711 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 18, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.730539 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 78, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.708813 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.713159 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706640 ] } } +{ "type": "Feature", "properties": { "count": 40, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.712072 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 27, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 33, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.707726 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 50, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.709899 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.715331 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.710986 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 23, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.706640 ] } } , -{ "type": "Feature", "properties": { "count": 33, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.712072 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 17, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 30, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 27, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 13, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } ] } ] } , { "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": 12, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "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": 12, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.522964, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836361 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.803816 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } -, -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798391 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.799476 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.803816 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.523651, 37.831480 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.522964, 37.831480 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.514725, 37.832022 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.833107 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800561 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 17, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.803274 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.804901 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797306 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798391 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.788624 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789709 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801646 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.800019 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775600 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771800 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.804901 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.771800 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799476 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.796763 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781569 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772343 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } +{ "type": "Feature", "properties": { "count": 31, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.776685 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771800 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.764744 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 11, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 13, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.776685 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.772886 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.753887 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 13, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759316 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753344 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 31, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734340 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747372 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750629 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747372 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727280 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.732168 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.730539 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727280 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.781027 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726194 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.783740 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784825 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 17, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774514 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765830 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.778856 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.764201 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.763658 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.756601 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 20, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 17, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759316 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.754973 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775600 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755516 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.780484 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 18, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774514 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.771258 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.769086 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.779399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.776685 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769086 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.760401 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.763658 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.759859 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.760944 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.760401 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752801 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.737598 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 17, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749544 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.751715 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.744114 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 29, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734883 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 18, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 17, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.721849 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.726194 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 21, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749001 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750629 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.750629 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.746286 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746829 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 18, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 13, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.749544 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.749544 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.749544 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.739770 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.739770 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 13, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.733797 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 27, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734340 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 11, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.719133 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.730539 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805986 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.724565 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725651 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 18, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.808156 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806529 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805986 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.804901 ] } } , -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796221 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.798933 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790252 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.791880 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804359 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790252 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790252 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.802731 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 31, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.798933 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790795 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790252 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.790252 ] } } , -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796221 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 13, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.788624 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802189 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.803816 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 18, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808156 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.802731 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.791880 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 69, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792422 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793508 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +{ "type": "Feature", "properties": { "count": 11, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } , -{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.795135 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.793508 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.373276, 37.829853 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823345 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789709 ] } } +{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.818463 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.791337 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.789709 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823345 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 20, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.811954 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.810326 ] } } +{ "type": "Feature", "properties": { "count": 11, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.786453 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.786996 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778856 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.774514 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.772343 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776685 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781027 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.784825 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778313 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781027 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.786996 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768001 ] } } , -{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786996 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.769086 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.754973 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766915 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.779399 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 19, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771800 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768001 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.769629 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 46, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.756058 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766915 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.782655 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 23, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.765287 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.776142 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.756601 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781569 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784283 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.776142 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.786453 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768001 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780484 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 23, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757144 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771258 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.760944 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 11, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.754973 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 11, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 33, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.776142 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.747915 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759316 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.741942 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759316 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.756058 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750087 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.763116 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 20, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744114 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.746286 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743571 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728910 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721849 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749544 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750629 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752801 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.737055 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.740313 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747372 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 56, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.736512 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738684 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.724565 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.725651 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723479 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.733254 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 31, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.741942 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.725651 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.737055 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 17, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.736512 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.743571 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.738141 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.730539 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +{ "type": "Feature", "properties": { "count": 37, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.734883 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710443 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.711529 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.725108 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.710986 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.710443 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 13, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.709899 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732711 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712615 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732711 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.712072 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710443 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.714245 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.712615 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.714245 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707183 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.715875 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.708813 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 17, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712615 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.708813 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710443 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.717504 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } -, -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716961 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.711529 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.708813 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718047 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 13, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778856 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } ] } ] } , { "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": 3, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 99 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.738141 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728366 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731082 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.719133 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.736512 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733797 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.728910 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.726194 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 27, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 34, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726466 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.740042 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.724836 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734612 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.720220 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.719677 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733526 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738413 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719677 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.727823 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728638 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723207 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728638 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.735155 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723207 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729724 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725651 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.733797 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.736784 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "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": 1, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724565 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.726466 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.739227 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738141 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737327 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735155 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735155 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726737 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 29, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.739770 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.736241 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737327 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.733254 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.733254 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.729181 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.726194 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726737 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.726194 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.726466 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.723750 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735698 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.730539 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.722121 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735969 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.380486, 37.730539 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.380486, 37.730539 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.372246, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.716961 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.715060 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718590 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.715060 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.717776 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713430 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.706097 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712615 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717776 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711257 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710986 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709356 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.708813 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708541 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708541 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.712887 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.712344 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711257 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.715060 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "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": 6, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712344 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712344 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710986 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709628 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } ] } ] } , { "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": 2, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.532234, 37.831751 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.829040 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832836 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.806529 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.803545 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798391 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803816 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.801646 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.532234, 37.831751 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831751 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831209 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.515068, 37.831751 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.832836 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.799205 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832836 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.803545 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.802731 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.798933 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798933 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.803545 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788895 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791066 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797848 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802731 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799205 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803545 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.802460 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801646 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.797034 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796492 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789981 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.800290 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.799205 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.792151 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788895 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789438 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799747 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788895 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.801104 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773700 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773429 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791608 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.771529 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771529 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.771529 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789438 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.779399 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785097 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.771529 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771529 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.782112 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760130 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.783740 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779670 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.756601 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.775871 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776685 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783469 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781841 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782112 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.772072 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.774514 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.772343 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772614 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.772614 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780213 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784283 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780213 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757144 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774243 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.772614 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764473 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.759044 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757959 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757144 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756330 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763387 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753887 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754158 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747643 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755787 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.753887 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.753887 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.741671 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.750901 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731082 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747643 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743843 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.749815 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747643 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730539 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.747643 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740585 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746015 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748186 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748729 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.736512 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744386 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742757 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.748458 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.751987 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733797 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746557 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742757 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742757 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.725923 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780484 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726194 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785097 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776956 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784825 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.776956 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.782926 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.785911 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783740 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.782926 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781298 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.777228 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.784011 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.778856 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774514 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765558 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.770443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.774243 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774785 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765558 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757959 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.770443 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759044 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754158 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756601 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757959 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766101 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759044 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762301 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754158 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.765015 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.762301 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756873 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.754701 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.765015 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.763387 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756873 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754973 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784825 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773429 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776956 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774514 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.786996 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775871 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783469 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.783740 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.786996 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.777228 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.774514 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773157 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781841 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.780213 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.775328 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773157 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764744 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769086 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762844 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762844 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.768815 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762301 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768815 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.759859 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.768815 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762301 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.754158 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755787 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765830 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760944 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.759044 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.753887 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.755244 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.756058 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743028 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748729 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.745200 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.744929 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.751444 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751444 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.753073 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747100 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746557 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734612 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.719133 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.724836 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.719948 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.719948 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.751987 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750901 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745472 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.751715 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746557 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.744386 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743571 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.744386 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.742485 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.752258 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.752258 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751444 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.749544 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748729 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747100 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.744657 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751444 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748729 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741671 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745472 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.748186 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738141 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741671 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.738413 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.719948 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720491 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.734883 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729453 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726466 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724565 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722664 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.726466 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806800 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.806258 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807343 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808428 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.806258 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } +{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805173 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805173 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804088 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804088 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802460 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.804901 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802460 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802460 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800561 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803545 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.798662 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.798662 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.790252 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.792151 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794864 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790523 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.788353 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.804630 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804088 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799205 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.799205 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802460 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.799747 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.799747 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.799205 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800290 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800290 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792422 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.791608 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789438 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790252 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790252 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795678 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.794322 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 11, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.788895 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803274 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802460 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.802189 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803816 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.802731 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802460 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801646 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797034 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797034 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.805173 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.804901 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.803003 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.802189 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.799747 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792151 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791066 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.795949 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } +{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.789709 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.799476 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.792422 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794322 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793779 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791608 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794322 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793779 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791880 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789981 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.792422 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.828226 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.829853 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.829853 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.816022 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.822260 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823616 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.785097 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.825243 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785639 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782383 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.785097 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.775600 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782383 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773700 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776142 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772614 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770986 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.774243 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786996 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.777499 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 11, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785097 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.776956 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786453 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.785368 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.780213 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783740 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775328 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.787810 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786182 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.782926 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778856 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778585 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.771800 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775328 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773971 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770172 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.767729 ] } } , -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.768815 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774785 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778856 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764473 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768272 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766644 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770172 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769358 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.767729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767187 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767187 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.754973 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.770172 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766644 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.757416 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758773 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759044 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761758 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.759316 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787267 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768001 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763930 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.761758 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782926 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781298 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787267 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.783740 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.782926 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787539 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786453 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.772614 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772343 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774243 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771800 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781298 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786453 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.787810 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.778042 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.772614 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771529 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774243 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771800 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783469 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.768815 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766372 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763116 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.773157 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757416 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.755787 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.763387 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759587 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769629 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.757416 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.765015 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.754973 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.755787 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755787 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767729 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766644 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.761487 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756058 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.756058 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.757416 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.753615 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.757144 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753615 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770443 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757959 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766644 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751444 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.763387 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762844 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.747100 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.751987 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.743571 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758501 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.742485 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751444 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.744929 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.751987 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.743571 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748186 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.736512 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.746829 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.740856 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751987 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.748186 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.744929 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735155 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.739770 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728638 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753073 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.744657 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750901 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750629 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.736241 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734612 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747372 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752530 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.741671 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740585 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753344 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.744657 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.751987 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750629 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737327 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737870 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749815 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.726194 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743300 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.741942 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.726466 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735698 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724022 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.726194 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726737 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719948 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721306 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.734883 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732168 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.730539 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.380486, 37.730539 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.722121 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755244 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740585 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743571 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.715060 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.732983 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.380486, 37.730539 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.372246, 37.729724 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.706097 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.715060 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712615 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708541 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.713159 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712615 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717776 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709356 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.708813 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708541 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.712887 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.711529 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.712344 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.716961 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716146 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.715060 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712344 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712344 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709628 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788895 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.788624 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767187 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767187 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 99 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 98 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.827413 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.825243 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.822260 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } ] } ] } , { "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": 3, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 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": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728502 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722528 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722528 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718726 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721034 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } , -{ "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": 3, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727688 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724157 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727688 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721713 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721985 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721713 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720899 ] } } +{ "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, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "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.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718998 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722121 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.724293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726194 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722121 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721713 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719269 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.724293 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721713 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721442 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } , -{ "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_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.727416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729317 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726601 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726737 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722528 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719269 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.721985 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719269 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729453 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.713566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714924 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.715060 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.715060 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714652 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706097 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707455 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.707047 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711393 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "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_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.715060 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716553 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.715739 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711665 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.715467 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718319 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709764 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711393 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713023 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.715467 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.718047 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709764 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718183 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.708541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706233 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717097 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.712751 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.708541 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707183 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706233 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.711936 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715196 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.711393 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711529 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713430 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712208 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711665 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.709356 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.714109 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } -, -{ "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, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832429 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832429 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831616 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831345 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831345 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.836361 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3270 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833649 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3271 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833649 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835954 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.836361 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.833107 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829446 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.806665 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829446 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803681 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.806665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803952 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803681 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806529 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806122 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.803545 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801782 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.797984 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.797984 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.803816 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.803952 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.803952 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.803681 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.803816 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803681 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803681 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802053 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3333 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802053 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801511 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801511 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.801375 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.801375 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801782 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.801646 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.800968 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.798255 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.798255 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3334 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.798120 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.799069 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797984 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803409 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.804495 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.798120 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797984 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.803681 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803545 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.801511 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3259 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.803681 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.802460 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.801511 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798527 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.797170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800426 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.799883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798527 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.800019 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796628 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.800019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795542 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.798798 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.790930 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795542 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790659 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.790930 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790659 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788895 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800154 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800154 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804495 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802867 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.802596 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.804901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802867 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3294 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.802596 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805308 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.802324 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.804901 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801239 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805308 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805173 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.800697 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805037 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801239 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.800968 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.797034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.797441 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799612 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.797577 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3374 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796356 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796628 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797441 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.797170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796899 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.797034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.797441 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.791744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796628 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.791744 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795814 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788760 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789845 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.788760 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792287 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792422 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779806 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788760 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789845 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788895 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771393 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.788760 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.779941 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.779806 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779806 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.778992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771393 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.771665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771258 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.773564 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.771529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.771936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.771936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.778992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764065 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.507687, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760266 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760266 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771529 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3303 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762301 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3295 }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.771529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762166 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.771936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760266 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.771936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.758501 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764065 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760266 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760808 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3265 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.783469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760266 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760266 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756737 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756601 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779806 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.488117, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783604 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783604 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783469 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783604 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.783469 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781434 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.775871 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.776007 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.776007 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.772207 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.488117, 37.783740 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783604 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783604 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776007 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3371 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776007 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783604 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776007 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777906 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.481937, 37.783876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775735 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.776007 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.781976 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.776007 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781976 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.771936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776007 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776007 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784147 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3302 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782248 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3301 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.782248 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.780213 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776278 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776278 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.772343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.780077 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.477818, 37.776685 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.776549 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784147 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.782248 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.780213 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.762437 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759180 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.772343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.772750 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.477818, 37.776685 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.776549 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.755108 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.772750 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3296 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.762437 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764880 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.753751 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.755108 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753480 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.753751 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.753615 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765151 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.765287 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765423 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765423 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3317 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763387 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763387 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.753887 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.754023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.753887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.754023 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3264 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761758 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759994 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759994 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.757823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.756058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.756058 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.754294 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756194 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.751172 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751037 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745472 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745472 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.753073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.753208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.501850, 37.747508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.501850, 37.747508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.499447, 37.747643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.499447, 37.747643 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743707 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.743571 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.741807 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.738006 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.736105 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.736105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736105 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736105 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735290 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3262 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.729724 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.745879 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.745879 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751715 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.747779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747508 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.745879 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.745879 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.747779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746150 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.745879 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.490864, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742349 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742349 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738549 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740721 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738684 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742349 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740721 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.751987 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.745064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748593 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.742892 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.748729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.742892 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741264 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733661 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.733661 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.742892 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742892 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.742892 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731761 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3356 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.733661 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.733390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731761 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729724 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728502 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734204 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730403 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734204 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734204 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722528 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725787 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724157 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3350 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722528 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3336 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.782383 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3225 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.782519 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782790 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782519 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780620 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780620 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780755 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784690 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.784554 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784690 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784825 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.784825 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782790 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783062 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776821 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776821 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.776821 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3292 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776821 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776821 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773157 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.777092 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775192 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773564 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783062 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.782790 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.773293 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.780891 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773564 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773293 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.783876 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.782790 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786182 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.783876 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.780891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.780891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3373 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781298 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.783876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784147 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.783876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.461681, 37.777363 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781298 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773564 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781298 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774650 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.774785 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773564 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774650 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.774785 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3254 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.763930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.763930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765830 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.757959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765965 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.761758 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.759180 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757008 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.763930 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.757959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761894 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759180 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.759180 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757008 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.756601 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756466 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.758366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.765965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.762166 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762437 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758501 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.754837 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.762708 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.754566 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765965 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3289 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762708 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.765965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.765965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.762166 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762437 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.762708 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762708 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.765965 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.765965 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.763251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.766237 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.463055, 37.758637 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753615 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784147 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.786860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.754430 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.787946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784147 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787132 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.786860 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.786182 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.781976 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787132 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784690 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782519 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782248 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.784825 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782519 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775328 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774921 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773293 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778177 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774921 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773157 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773021 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773293 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3298 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775735 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3300 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3306 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773836 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778856 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.771936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774107 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773836 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774107 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.787946 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774107 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785232 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783469 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.785504 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783876 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.782790 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.780484 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785775 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.780891 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783062 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781298 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.781434 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781298 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.781434 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779806 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.777363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3299 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.777363 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777906 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774650 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774921 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774921 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.771258 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774650 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.778177 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774921 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.774921 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.778177 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771258 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771529 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.770986 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769493 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769493 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769493 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769629 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769493 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764608 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765830 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764608 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764744 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.764880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.770172 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.770172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.770172 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.770443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.770308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.770172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766237 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761894 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760808 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761894 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.759723 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.759723 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.758366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.756466 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754158 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754158 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.766644 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.766644 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769222 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769222 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768951 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768951 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769222 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769222 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761758 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760537 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760808 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.754973 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.754294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759316 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.754294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759180 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.757551 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759316 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.756058 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759180 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.750494 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.757551 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.756058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.750494 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.745064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746693 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750629 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.749136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752665 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743164 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.749136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743435 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743164 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741535 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3250 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743164 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743435 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743164 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741535 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740721 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3245 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.739635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3314 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3244 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740721 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3315 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751580 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.738006 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.739635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.739499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.739770 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751580 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747779 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.747100 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.746015 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745336 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746422 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740449 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.739906 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740042 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739227 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737734 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.744114 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745336 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.743435 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736784 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737734 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3249 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.744114 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741671 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3243 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743164 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.742892 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731761 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732711 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731218 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731218 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733118 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3206 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3253 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720899 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732304 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732032 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732575 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721849 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751308 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721849 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.744929 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745879 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.752122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.744929 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750629 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.752122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746422 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3288 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750765 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750629 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746286 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.746693 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743435 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744521 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741807 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.746693 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743435 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737734 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737734 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736784 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736648 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.736512 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736648 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751037 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751037 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751037 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751037 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749408 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752937 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751037 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751851 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749679 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749408 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752937 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751851 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748729 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747779 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747779 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745607 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745607 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.745472 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743300 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741535 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741535 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.741535 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741807 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.741535 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738277 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.737327 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738277 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.737327 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736784 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736105 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736784 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.735562 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.733933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.733933 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.735562 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.733933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.733933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.733933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3349 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.719948 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3293 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.731489 ] } } , -{ "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": 2, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.731489 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725787 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725787 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.721985 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3269 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.721985 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.724293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.724293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726194 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806393 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.806665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806393 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.806665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805580 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.805851 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.807207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805580 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.805851 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.808021 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.807885 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.807750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3291 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.808292 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808021 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.806529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.806800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.808021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.807885 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.807750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.801375 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.808292 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.806800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802053 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.802053 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.800290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.801646 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.797984 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801782 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802053 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.802053 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804766 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804766 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804223 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797713 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3347 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.805037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3335 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.803409 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.797984 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798255 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802324 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805037 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802324 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804766 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3346 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804766 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803681 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804223 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803409 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3286 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.805308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.801511 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802324 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802324 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802189 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.798798 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803681 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803409 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.801646 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.801511 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798527 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.798798 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790659 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790659 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792694 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.796085 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790659 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794728 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.795000 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.796085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794728 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.793101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.791473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791202 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790388 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791473 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790388 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3357 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.791473 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791202 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.802867 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790388 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.802867 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801782 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791473 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790388 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805173 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.789438 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3354 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788353 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.804766 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.802867 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.802867 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801782 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805173 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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": 3, "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, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.799069 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.798933 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.800154 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799069 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798391 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798255 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797441 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799340 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.804223 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803681 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803409 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.802053 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804901 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.802867 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797441 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.801239 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.799883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800154 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803681 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803409 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802867 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800426 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.800426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.798255 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.802053 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.797306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.804766 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.802867 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.801239 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.799747 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.799883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800154 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800154 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.792829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.800426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.798255 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.790659 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.790659 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3353 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789302 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795271 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.792015 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795542 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.792829 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.791744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796085 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.790659 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795271 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.790659 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789302 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796085 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.792015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791066 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795542 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.795271 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789167 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795814 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795000 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795271 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.789302 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796085 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.791744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795542 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788895 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.807343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.807207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.795271 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806529 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.803545 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803409 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803681 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803545 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.802596 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.802596 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.807343 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799205 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799340 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.807207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.806665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803409 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801375 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803681 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803545 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800290 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799205 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.800697 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.802189 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.799612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.798120 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800697 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797441 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.797713 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798255 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3308 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801375 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3328 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.802189 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.799612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.798120 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797441 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.797577 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.794728 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798255 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795407 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792829 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.794728 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789302 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788217 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788217 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.788488 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.789845 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794728 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788353 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789438 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788217 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.794322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.788488 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.789845 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.793101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796085 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794728 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793101 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.790930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792965 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.792015 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790252 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790388 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790388 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.792015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790388 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789031 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788895 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.798933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799476 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789031 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.798933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788624 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788217 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.792558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.792558 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.792558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796628 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.796356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.796356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } , -{ "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_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.792558 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794186 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.792558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 3369 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3348 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3281 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3367 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791608 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.791744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789845 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789845 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.789302 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.789438 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.789302 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3368 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.792015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.788488 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3318 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.792015 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3261 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790523 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790523 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3258 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790523 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789845 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789845 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.789981 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3251 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3252 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3257 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.788217 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3283 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791202 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3256 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.788895 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3364 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3360 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790523 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3341 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3342 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828226 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828226 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826870 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.372761, 37.824023 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823480 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.824565 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3247 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823480 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.829311 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.824565 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825243 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.829311 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.823616 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825243 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.823616 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.366238, 37.819955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.816158 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819955 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818328 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821853 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813174 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.366238, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811818 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813174 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.363834, 37.811683 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811276 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.784961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.781705 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785097 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.784961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.781705 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786046 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787674 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782383 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779534 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3358 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3307 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780077 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782383 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.775871 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3297 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.776007 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776007 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.779263 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.776685 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.772207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.775735 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.776007 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.772479 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776007 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.772614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.779263 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.776685 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.772207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 3268 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.771936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.772886 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.772614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.773836 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777499 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773971 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.776821 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.773021 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.787946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.773836 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.786860 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770986 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.787946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785775 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3316 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.773021 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.784961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774107 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.786996 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771258 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786318 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.787946 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.786860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782790 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.787946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.784961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.786996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780213 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782790 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782383 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.781705 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783062 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781162 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.780213 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782383 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.781705 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.787403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785775 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.786453 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.787132 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783604 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782790 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.787810 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779806 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.787132 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3272 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787132 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783333 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.785097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784147 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.782248 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783604 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.781162 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782790 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.781298 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3267 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777906 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783333 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.782248 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.781162 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.781298 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.777363 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778177 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777635 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3359 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778449 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3255 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.773021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778449 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773836 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.774785 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777635 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769493 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769222 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3284 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767458 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767594 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773836 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.774785 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3361 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769493 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.768815 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769222 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.767865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767594 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767187 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764608 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764608 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.768815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.767865 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768408 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766780 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766237 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3370 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.764608 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764608 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759723 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766780 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757416 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756466 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.764608 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760266 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759723 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755108 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770443 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766644 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760266 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768408 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766237 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768408 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762166 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.763794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.768137 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3280 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3275 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764065 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762980 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765151 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759723 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3276 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762166 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.759044 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.763794 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758094 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770308 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.758909 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.757551 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.768137 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755787 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755108 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.762166 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764065 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.759316 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762980 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759723 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758094 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 3279 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755787 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755108 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753480 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784690 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3277 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755651 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3305 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758909 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3304 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.784147 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786318 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3362 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783876 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785775 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782790 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783333 ] } } , -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.787674 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.787674 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781434 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781162 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782790 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783333 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782926 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782790 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781162 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.787674 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787674 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.787674 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.787674 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786453 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777363 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3363 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773564 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787674 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3192 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771393 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.784961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774650 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.779263 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.777906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776821 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.776685 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.785775 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773564 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771393 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.785504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774650 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.774514 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.787946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3273 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.777906 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783333 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3260 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.787946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3246 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783604 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3365 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.787946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.779534 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "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": 2, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783333 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777363 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3366 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.787946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776821 ] } } , -{ "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776007 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783604 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.776549 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3327 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775192 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776278 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.766372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.765965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.765965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.768679 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.767458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776278 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.767322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.765965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.764880 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.764608 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762166 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.761894 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.759044 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3287 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770172 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757416 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.756194 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.768679 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755651 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3320 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.765965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.759723 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763523 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3321 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759451 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763523 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762166 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758094 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759723 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756194 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755651 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757416 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.757280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3352 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.757280 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754837 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762437 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759451 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.758501 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770443 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.766780 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758094 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.757959 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769493 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759723 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756194 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.766508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.766508 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.754430 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.754294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.762844 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.763387 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762708 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754837 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761080 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754837 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759994 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.762573 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762437 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.759994 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3323 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.755923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3322 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.766780 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754837 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769493 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.766508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.753887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.766508 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.767187 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.763387 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762708 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760808 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761080 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759994 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758094 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.759994 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755108 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751580 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.744929 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.751851 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.757823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.757823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758094 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758094 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.757959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.757551 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.754973 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755108 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742078 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.737734 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736376 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738820 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749136 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.744929 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.746965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.751851 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751851 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.736241 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740313 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.751987 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736376 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738820 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.751987 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750222 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.750629 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742349 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752394 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738820 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3312 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.746693 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3313 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.746693 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.738820 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752394 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740178 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.751037 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750765 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.751987 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.751987 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752665 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3278 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3274 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.749136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744250 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3248 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3309 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.746693 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744386 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.746693 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3375 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.746286 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741264 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.745879 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738820 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738277 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739635 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3233 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.735562 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3310 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748051 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733390 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.745336 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733661 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744250 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730675 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.744114 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744386 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741264 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.741807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728502 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738820 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.735562 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738820 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738277 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735290 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738277 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735969 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.735562 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730675 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730675 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720356 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.735562 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725515 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735290 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735833 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732304 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.735562 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732847 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.732847 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.732575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721170 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733526 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725787 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725515 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "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_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735833 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732304 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.735562 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3290 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.732575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3285 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.751037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749679 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.752937 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.752665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753073 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3263 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751580 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.729860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.751851 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.727416 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725787 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742892 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742892 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737734 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722664 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743978 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743843 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.738820 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.751037 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749679 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.752937 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752394 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.752665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752394 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751580 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.751444 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.744657 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752665 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750765 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752394 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750901 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747236 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752394 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742892 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742892 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739635 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737191 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737734 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737191 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.736105 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740721 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742892 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743978 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743843 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742757 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.739499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752394 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737463 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736376 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751037 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732304 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733254 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737191 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737191 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.736105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.731489 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730131 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744250 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.743978 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.735290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731761 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727688 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737463 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736376 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726330 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726058 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3324 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3325 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737191 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725244 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732304 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730131 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3372 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.734204 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731761 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731218 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.735290 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731761 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3319 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735833 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.735698 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730131 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726601 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.733933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.732439 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732847 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729317 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726873 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3330 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731761 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731218 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729724 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735833 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722257 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.733933 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.732847 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.746015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.746015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732847 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729317 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.383747, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740721 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.385807, 37.736648 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737734 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3331 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735833 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734612 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3332 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722257 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.385464, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.721985 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730131 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719133 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733390 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.732439 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.379627, 37.732439 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732847 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732711 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729317 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740585 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.383747, 37.742485 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743843 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3266 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743707 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.732032 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740721 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.385807, 37.736648 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737734 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738549 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735833 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732304 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.385464, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734204 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.732439 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.379627, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.713566 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732711 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729317 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.375507, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716282 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.715060 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3337 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3343 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718319 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3338 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.715060 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714652 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3344 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3340 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3345 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3339 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713023 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711393 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3355 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.715739 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.715467 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.715060 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709764 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718319 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713023 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711393 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3282 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.715467 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.708541 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710986 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717097 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709764 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718183 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713023 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.712751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.711936 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.708541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709356 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709085 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717097 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715196 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.711393 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711529 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713430 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712208 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711665 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.709356 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3311 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +] } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.714109 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } -] } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.792965 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778720 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767322 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784147 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767322 ] } } ] } ] } , @@ -13484,27 +12738,25 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } ] } ] } , @@ -13514,29 +12766,29 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.722800 ] } } , -{ "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_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722528 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } , @@ -13544,41 +12796,41 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 1, "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, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721238 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 571 }, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 542 }, "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.721102 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 543 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 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, "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, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721374 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721374 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 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, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.719066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.719066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721510 ] } } , @@ -13586,89 +12838,89 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } , -{ "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_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719812 ] } } , -{ "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_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720084 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "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_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 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, "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, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723818 ] } } , -{ "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_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723682 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 321 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "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_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.720152 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "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_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720152 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721917 ] } } , -{ "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_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721781 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720152 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } , -{ "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_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +{ "type": "Feature", "properties": { "count": 1, "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, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } , -{ "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_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 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, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.723139 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.723139 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723071 ] } } , @@ -13676,49 +12928,49 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.722868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.722868 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } , -{ "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_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , -{ "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_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "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_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 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_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , @@ -13726,71 +12978,71 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "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_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720423 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720491 ] } } , -{ "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_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.720016 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , -{ "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_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 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_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720559 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720627 ] } } , -{ "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_sequence": 402 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } , -{ "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_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722868 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } , -{ "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_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 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 ] } } , @@ -13798,29 +13050,29 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723479 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } , -{ "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_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723818 ] } } , -{ "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_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.723411 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723954 ] } } , @@ -13830,41 +13082,41 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721510 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721510 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 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, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "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_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 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, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 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, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722528 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 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_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720152 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719745 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721646 ] } } , @@ -13872,33 +13124,33 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720559 ] } } , -{ "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_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720423 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719066 ] } } , -{ "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_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } , -{ "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_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720559 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.719405 ] } } , @@ -13910,63 +13162,63 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "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, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.723954 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.723954 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.412844, 37.723818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.412844, 37.723818 ] } } , -{ "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_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723275 ] } } , -{ "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_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723139 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.722732 ] } } , -{ "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_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722868 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718794 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } , -{ "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_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720559 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720423 ] } } , -{ "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_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723682 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.723886 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723682 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.723411 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.723411 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723275 ] } } , @@ -13974,77 +13226,75 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721646 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721646 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } , -{ "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_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.723818 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.723818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721170 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721238 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721238 ] } } , -{ "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_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 595 }, "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_sequence": 598 }, "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, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719812 ] } } , -{ "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_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "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, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } , -{ "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_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.722053 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.722053 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } , @@ -14052,13 +13302,13 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716078 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } , @@ -14072,29 +13322,29 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.711189 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.711189 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714992 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714584 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714449 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } , -{ "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_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.717504 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 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, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715807 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.715942 ] } } , @@ -14102,17 +13352,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717436 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717436 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.717300 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } , @@ -14120,31 +13370,31 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717708 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717708 ] } } , -{ "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_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.717368 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714584 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714584 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714720 ] } } , -{ "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_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "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_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } , @@ -14152,165 +13402,165 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.712955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.712955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.713566 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710918 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710918 ] } } , -{ "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_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710375 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710375 ] } } , -{ "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_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.710239 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714177 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711529 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.464857, 37.711597 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.464857, 37.711597 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } , -{ "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_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714313 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.711257 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "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_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717708 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717708 ] } } , -{ "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_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } , -{ "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_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714992 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.711461 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.711461 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714109 ] } } , -{ "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_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 416 }, "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, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , -{ "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_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710375 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.710307 ] } } , -{ "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_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.705961 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706165 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706165 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706572 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706572 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707387 ] } } , -{ "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_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718522 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "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_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.718251 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716214 ] } } , -{ "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_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "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_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 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, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713905 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713905 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714109 ] } } , -{ "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_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } , { "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 ] } } , @@ -14322,17 +13572,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.711461 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.711461 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.711733 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.711733 ] } } , -{ "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_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710918 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708609 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708609 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.708881 ] } } , @@ -14342,9 +13592,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , @@ -14352,19 +13602,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716486 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716486 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715671 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715128 ] } } , @@ -14372,9 +13622,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711054 ] } } , @@ -14392,9 +13642,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.715128 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.715128 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , @@ -14402,87 +13652,87 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710918 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710918 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } , -{ "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_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712140 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.711189 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.711189 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "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_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "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_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.717436 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.711054 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.711054 ] } } , -{ "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_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718251 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.717776 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "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_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713362 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713362 ] } } , -{ "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_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708949 ] } } , @@ -14490,31 +13740,31 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "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_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.710035 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 426 }, "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, "tippecanoe:retain_points_multiplier_sequence": 424 }, "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_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } , -{ "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_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.712208 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713362 ] } } , @@ -14522,179 +13772,179 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711597 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711597 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.716214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.716214 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.714992 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713226 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713226 ] } } , -{ "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_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "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_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712683 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , -{ "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_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710986 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.712751 ] } } , -{ "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_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712140 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.710578 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.710443 ] } } , -{ "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_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.710375 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709831 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 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_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708473 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708609 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708609 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708338 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707115 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707115 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.708134 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.708134 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } , -{ "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_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706504 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } , -{ "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_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709288 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709017 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , -{ "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_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717776 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716621 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717300 ] } } , -{ "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_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } , -{ "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_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715128 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } , -{ "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_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712412 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712412 ] } } , -{ "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_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.710171 ] } } , -{ "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_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.709967 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } , -{ "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_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.711529 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.711393 ] } } , -{ "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_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711461 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711325 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } , -{ "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_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.713838 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.712547 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.712547 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711868 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.710578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.710578 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716825 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "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_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.716486 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.716486 ] } } , -{ "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_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.716961 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "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_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "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_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713362 ] } } , -{ "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_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.712412 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.712208 ] } } , @@ -14702,71 +13952,71 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712412 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712412 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712276 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712276 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 603 }, "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, "tippecanoe:retain_points_multiplier_sequence": 594 }, "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_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 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, "tippecanoe:retain_points_multiplier_sequence": 591 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } , -{ "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_sequence": 586 }, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713498 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713498 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } , -{ "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_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 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, "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, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 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, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711597 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709831 ] } } , -{ "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_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 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, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } , -{ "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_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 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, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "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_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708813 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.709492 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 561 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 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, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } , -{ "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_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 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, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "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_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } , { "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 ] } } , @@ -14782,13 +14032,13 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709831 ] } } , -{ "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_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717436 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.712140 ] } } ] } @@ -14798,35 +14048,35 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "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, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.532320, 37.831819 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.532320, 37.831819 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832429 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832429 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3998 }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3993 }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4278 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830328 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4273 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830328 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831345 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4277 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821785 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4272 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821785 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.515326, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.832972 ] } } , @@ -14834,19 +14084,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.502108, 37.836429 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.502108, 37.836429 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833853 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833853 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4243 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4238 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833582 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4245 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.833582 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4240 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.833582 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4244 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833107 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4239 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833107 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833039 ] } } , @@ -14854,23 +14104,23 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.806665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.806665 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788421 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788421 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3887 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3882 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } , @@ -14884,9 +14134,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806054 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806054 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.806732 ] } } , @@ -14894,9 +14144,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803545 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803545 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801578 ] } } , @@ -14904,19 +14154,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800086 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800086 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.797916 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.797916 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803681 ] } } , @@ -14924,79 +14174,79 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801646 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4123 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4118 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803749 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803749 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4119 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802257 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4114 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802257 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4341 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802053 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4336 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802053 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4121 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4116 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.800154 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.800154 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4124 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4119 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4122 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797916 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4117 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797916 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801036 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4125 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4120 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4340 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800697 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4335 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800697 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3828 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800493 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3823 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800493 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4342 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.800358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4337 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.800358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4339 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4334 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.799001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.799001 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.799340 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3925 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798052 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3920 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798052 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.803409 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.803409 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.804562 ] } } , @@ -15004,37 +14254,37 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 4229 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803613 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4224 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803613 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.802460 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.802460 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802799 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802799 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.802799 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4204 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4199 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797102 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797102 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.800019 ] } } , @@ -15042,31 +14292,31 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 3829 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798662 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3824 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798662 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.796695 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.796695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.796492 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.796492 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3572 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.795746 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3567 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.795746 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3598 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.795610 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3593 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.795610 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3571 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3566 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 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, "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, "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790727 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790727 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788963 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788963 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791269 ] } } , @@ -15074,9 +14324,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803070 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803070 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805376 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805376 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800086 ] } } , @@ -15084,19 +14334,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.800358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.800358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799273 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799273 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3987 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3982 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3607 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3602 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804427 ] } } , @@ -15104,19 +14354,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 4283 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802596 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4278 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802596 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4238 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4233 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805376 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4074 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805241 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4069 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805241 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805105 ] } } , @@ -15124,199 +14374,197 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799679 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799679 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799883 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.799612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.799612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4391 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4386 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.800832 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.800900 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3758 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.800900 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3753 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.800900 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3332 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3327 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796763 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3580 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797102 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3575 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797102 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4037 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4032 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3581 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3576 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3573 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3568 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3853 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3848 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.797577 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3574 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.797441 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3569 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.797441 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3578 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796288 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3573 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796288 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3579 }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796153 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3574 }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796153 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3604 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796560 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3599 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796560 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3603 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796695 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3598 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3333 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3328 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 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, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.791676 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.788081 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.791948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.791948 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3330 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3325 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795814 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3324 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795814 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3335 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3330 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3334 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794118 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792490 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792490 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4193 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4188 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.792694 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3336 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.791405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3331 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.791405 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3733 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3728 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791473 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788421 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3331 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.789302 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.789302 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3328 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788828 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3323 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788828 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3748 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791676 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3743 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791676 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.789845 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.789845 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789913 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789913 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.789845 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.789845 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.788760 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.788760 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779738 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779738 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.512922, 37.779059 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.512922, 37.779059 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.778992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 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, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774989 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774989 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1769 }, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3972 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3967 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773157 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771325 ] } } +{ "type": "Feature", "properties": { "count": 2, "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, "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.779873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.779873 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4147 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4142 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.779738 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.779738 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779806 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.780959 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.785029 ] } } , @@ -15324,9 +14572,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779602 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779602 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779466 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779466 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.779059 ] } } , @@ -15334,9 +14582,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.507944, 37.773293 ] } } , @@ -15344,29 +14592,29 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771597 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771597 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771597 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4295 }, "geometry": { "type": "Point", "coordinates": [ -122.503481, 37.771732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4290 }, "geometry": { "type": "Point", "coordinates": [ -122.503481, 37.771732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4285 }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4280 }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771732 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775600 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4294 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4289 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771868 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.771868 ] } } , @@ -15374,29 +14622,29 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3983 }, "geometry": { "type": "Point", "coordinates": [ -122.509146, 37.760334 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3978 }, "geometry": { "type": "Point", "coordinates": [ -122.509146, 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, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.763998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.763998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762166 ] } } , @@ -15404,19 +14652,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 4236 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760334 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4231 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760334 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4235 }, "geometry": { "type": "Point", "coordinates": [ -122.507944, 37.760266 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4230 }, "geometry": { "type": "Point", "coordinates": [ -122.507944, 37.760266 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3907 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3902 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3906 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3901 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760334 ] } } , @@ -15424,37 +14672,37 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.756737 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.756737 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3889 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.760469 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3884 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.760469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3908 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760605 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3903 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3910 }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3905 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3909 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760605 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3904 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760605 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.783401 ] } } , @@ -15464,9 +14712,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781705 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781705 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } , @@ -15474,17 +14722,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779806 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.779738 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779534 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.779534 ] } } , @@ -15494,19 +14742,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783537 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783537 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779602 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779602 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4387 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4382 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.779941 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } , @@ -15514,9 +14762,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.486830, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.486830, 37.781976 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779873 ] } } , @@ -15524,17 +14772,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 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, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4329 }, "geometry": { "type": "Point", "coordinates": [ -122.492151, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4324 }, "geometry": { "type": "Point", "coordinates": [ -122.492151, 37.777770 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775871 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.775803 ] } } , @@ -15544,39 +14792,39 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771936 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.492838, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4388 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777703 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4383 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777703 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776074 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776074 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.776210 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.776210 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4002 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772139 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3997 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772139 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4293 }, "geometry": { "type": "Point", "coordinates": [ -122.489576, 37.772343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4288 }, "geometry": { "type": "Point", "coordinates": [ -122.489576, 37.772343 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4292 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4287 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } , @@ -15584,9 +14832,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785843 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785843 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } , @@ -15594,9 +14842,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.783944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.783944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.783944 ] } } , @@ -15604,19 +14852,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781909 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781909 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 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, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782112 ] } } , @@ -15624,29 +14872,29 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780077 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780077 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.780348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.780348 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.784215 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.782180 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.782180 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.780213 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.780552 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.780552 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778245 ] } } , @@ -15664,27 +14912,27 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774514 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774311 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774311 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.772682 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3801 }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3796 }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.483740, 37.772479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776617 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776617 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } , @@ -15694,99 +14942,99 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.772750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4286 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4281 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764540 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764540 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3369 }, "geometry": { "type": "Point", "coordinates": [ -122.495756, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3364 }, "geometry": { "type": "Point", "coordinates": [ -122.495756, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3370 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.762505 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3365 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.762505 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.488203, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3371 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3366 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3886 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760741 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3881 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760741 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3372 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3367 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3373 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3368 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3374 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3369 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758841 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3884 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3879 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3885 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760876 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3880 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3377 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3372 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3378 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3373 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753412 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753412 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3379 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3374 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3380 }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755176 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3375 }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755176 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3381 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3376 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753412 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753412 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3882 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3877 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3883 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3878 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3880 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761148 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3875 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761148 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.753548 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.753548 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753683 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753683 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765083 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.765015 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } , @@ -15794,9 +15042,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } , @@ -15804,69 +15052,69 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.477560, 37.765490 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.477560, 37.765490 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4314 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4309 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3954 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3949 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765355 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } , -{ "type": "Feature", "properties": { "count": 1, "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, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763387 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3879 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3874 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761351 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761283 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3881 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3876 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3878 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3873 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.753751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.753751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.754023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.754023 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3911 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3906 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761419 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761419 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } , @@ -15874,119 +15122,119 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 3876 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3871 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4234 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4229 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3877 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3872 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761555 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761555 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760130 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.755991 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.755991 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755855 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755855 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.480822, 37.753955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.480822, 37.753955 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756194 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756194 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.755991 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.755991 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754090 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754090 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752733 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753005 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753005 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.749340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.749340 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.749136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747304 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747304 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745404 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 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, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745404 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.753005 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.753005 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3464 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3459 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3465 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741739 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3460 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741739 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.739974 ] } } , @@ -15994,359 +15242,359 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 3661 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3656 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735969 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735969 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3749 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3744 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 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, "tippecanoe:retain_points_multiplier_sequence": 3463 }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3462 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741874 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3457 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741874 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3461 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741874 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3456 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741874 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3460 }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3455 }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3459 }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3454 }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3453 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3300 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3295 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3301 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735494 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3296 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735494 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3975 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3970 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3298 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3293 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3299 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3294 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3296 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3291 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3297 }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3292 }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3294 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3289 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3295 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3290 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4232 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4227 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3277 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3272 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3280 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731150 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3275 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731150 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3278 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3273 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3279 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3274 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3382 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753276 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3377 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753276 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4386 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4381 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3385 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751783 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3380 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751783 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3386 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3381 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3387 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3382 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3388 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3383 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3390 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3385 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745811 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745811 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3389 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3384 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3386 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3392 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.745811 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3387 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.745811 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3395 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744182 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3390 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744182 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3396 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3397 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3392 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3467 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3462 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3913 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3908 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3899 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3894 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3466 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3461 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3398 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3393 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3457 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3452 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3456 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.742349 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3451 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3400 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3395 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3399 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3394 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738616 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3396 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738616 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3402 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.738345 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3397 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.738345 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3403 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736716 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3398 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736716 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3404 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.736512 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3399 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3454 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3449 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3455 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3450 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3452 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742553 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3447 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3453 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742417 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3448 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3561 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.740721 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3556 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.740721 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3660 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738752 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3655 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738752 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.748118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.748118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.748390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.748390 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.748322 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750358 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750154 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748526 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748526 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.748593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.748593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748661 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748526 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748526 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746422 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745200 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.745064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3451 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742553 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3446 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3450 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3445 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3449 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3444 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3448 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3443 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742757 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3447 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3442 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742689 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3446 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3441 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3444 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.742960 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3439 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.742960 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3445 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3440 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3443 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.742960 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3438 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.742960 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4209 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4204 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3293 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3288 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3309 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3304 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733661 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3282 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3277 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4367 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4362 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3281 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3276 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3406 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3405 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3400 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3290 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3285 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3292 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3287 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3291 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3286 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3393 }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3388 }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3394 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3389 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3383 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3378 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3384 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3379 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3375 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3370 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3376 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729792 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3371 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729792 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3289 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3284 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3302 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3297 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3306 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3301 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3303 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734204 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3298 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3305 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3300 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3310 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.734136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3305 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.734136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3311 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3306 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3307 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3302 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3308 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3303 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3288 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3283 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3304 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3299 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3287 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3282 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3285 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3280 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3286 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3281 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4362 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4357 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728502 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3770 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3765 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3769 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728027 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3764 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3978 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3973 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4001 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.724090 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3996 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.724090 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3771 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727077 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3766 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727077 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3772 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3767 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726941 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.718658 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4363 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.722732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4358 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.722732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4361 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722460 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4356 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722460 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4344 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720695 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4339 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720695 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.725923 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.725855 ] } } , @@ -16354,19 +15602,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 3767 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3762 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3768 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3763 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4345 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4340 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } , @@ -16374,49 +15622,49 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784351 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784486 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784486 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784486 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4004 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3999 }, "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, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 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, "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.782383 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.782383 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782451 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4183 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782451 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4178 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782451 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4165 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.780687 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4160 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.780687 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } , @@ -16424,69 +15672,69 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3816 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3811 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3934 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3929 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784758 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.780959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.780959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3921 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782858 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3916 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782858 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4242 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782994 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4237 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782994 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3820 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782858 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3815 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782858 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.783130 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.783130 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776753 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 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, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4280 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.776889 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4275 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.776889 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773225 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773225 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773225 ] } } , @@ -16494,23 +15742,23 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777024 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777024 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777160 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777160 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4181 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775260 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4176 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775260 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4180 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4175 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.775328 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.774989 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.774989 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773429 ] } } , @@ -16524,17 +15772,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 4040 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4035 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.783197 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.782994 ] } } , @@ -16544,29 +15792,29 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781095 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781095 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.460909, 37.781230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785572 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785572 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } , @@ -16574,29 +15822,29 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.785979 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.785979 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786250 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786250 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784079 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4008 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4003 }, "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, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4390 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4385 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781366 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781162 ] } } , @@ -16604,19 +15852,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781502 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } , @@ -16624,67 +15872,67 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777363 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773632 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773632 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4017 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4012 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4018 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4013 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773700 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773496 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773496 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.773903 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777431 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 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, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777024 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777024 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3535 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3530 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3557 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3552 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3558 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777567 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3553 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777567 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774243 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3323 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774582 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3318 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774582 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3325 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3320 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3324 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3319 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3321 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765626 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765626 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762030 ] } } , @@ -16694,17 +15942,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762030 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4160 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4155 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765830 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } , @@ -16714,59 +15962,59 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4222 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4217 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4223 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4218 }, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3872 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3867 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3875 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3870 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.761894 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3995 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.758026 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3990 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.758026 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3874 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3869 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.761962 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.761962 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.759112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.759112 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756262 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756262 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.755244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.755244 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3873 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3868 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758298 ] } } , @@ -16774,17 +16022,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3968 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3963 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3969 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3964 }, "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, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758366 ] } } , @@ -16794,9 +16042,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756466 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756466 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754769 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754769 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } , @@ -16804,19 +16052,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766033 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766033 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762301 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762301 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.462797, 37.762369 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.462797, 37.762369 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.762301 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.762301 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.764201 ] } } , @@ -16824,19 +16072,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4274 }, "geometry": { "type": "Point", "coordinates": [ -122.460909, 37.762505 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4269 }, "geometry": { "type": "Point", "coordinates": [ -122.460909, 37.762505 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4275 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4270 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766033 ] } } , @@ -16844,59 +16092,59 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763794 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763726 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758569 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4049 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.758434 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4044 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.758434 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3730 }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3725 }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3727 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3722 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754633 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754633 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3726 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.756873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3721 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.756873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3725 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3720 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3729 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3724 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3728 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3723 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3724 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3719 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3731 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755312 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3726 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755312 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.784079 ] } } , @@ -16908,15 +16156,15 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.786928 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3723 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787471 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3718 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787471 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.448206, 37.784961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.448206, 37.784961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.781841 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } , @@ -16924,149 +16172,149 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 3192 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788014 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788014 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.787335 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.787335 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787335 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787335 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.786250 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.786250 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784486 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784486 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3431 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3426 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784351 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3411 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3406 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3412 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3407 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 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, "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, "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3553 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3548 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3554 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3549 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3540 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.778110 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3535 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.778110 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3541 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.777974 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3536 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.777974 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3556 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3551 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3555 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3550 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775396 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.775328 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4167 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4162 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3233 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4200 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4195 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773021 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3550 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778652 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3545 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778652 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3551 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778517 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3546 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778517 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3543 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3538 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 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, "tippecanoe:retain_points_multiplier_sequence": 4289 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4284 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775667 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775667 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3542 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3537 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3549 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.778924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3544 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.778924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3548 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.779059 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3543 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.779059 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4291 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4286 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3817 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3812 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4287 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776821 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4282 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4299 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4294 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4298 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4293 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774039 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774039 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774039 ] } } , @@ -17074,49 +16322,49 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 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, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785165 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785165 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3415 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3410 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3416 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3411 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3434 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3429 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3433 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3428 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783808 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3538 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779466 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3533 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779466 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783130 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780484 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } , @@ -17124,29 +16372,29 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.780687 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.780687 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3435 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3430 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3436 }, "geometry": { "type": "Point", "coordinates": [ -122.434988, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3431 }, "geometry": { "type": "Point", "coordinates": [ -122.434988, 37.785775 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.786114 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3412 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.786114 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3418 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3413 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785775 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.784215 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.784215 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784690 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.783944 ] } } , @@ -17154,37 +16402,37 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782994 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782994 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781502 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3536 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3531 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3537 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3532 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3539 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779331 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3534 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779331 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 4290 }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4285 }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777770 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777703 ] } } , @@ -17194,17 +16442,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776753 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770918 ] } } , @@ -17214,9 +16462,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774853 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774853 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } , @@ -17224,29 +16472,29 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.778110 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.778110 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.775125 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778517 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778517 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.775396 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.775396 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.771054 ] } } , @@ -17254,69 +16502,69 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.769154 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.769154 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3327 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3322 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3850 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768204 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3845 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3322 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3317 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769426 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3320 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765490 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3315 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 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, "tippecanoe:retain_points_multiplier_sequence": 3321 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3316 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.764540 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.764540 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4026 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4021 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765830 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765897 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.765830 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.764744 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.764608 ] } } , @@ -17324,49 +16572,49 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769901 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770104 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770104 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.767051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.767051 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.767254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4039 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4034 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767254 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767119 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770308 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3826 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3821 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.767322 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765355 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765219 ] } } , @@ -17378,25 +16626,25 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.764269 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3984 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.762980 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3979 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 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, "tippecanoe:retain_points_multiplier_sequence": 3622 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3617 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3621 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3616 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.763251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.763251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761691 ] } } , @@ -17404,19 +16652,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753412 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753412 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760876 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760876 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } , @@ -17424,17 +16672,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.758637 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.759926 ] } } , @@ -17444,17 +16692,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.761623 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760198 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757755 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.758366 ] } } , @@ -17464,9 +16712,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756398 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.756398 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755312 ] } } , @@ -17474,29 +16722,29 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.753955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.753955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.766508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.766508 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4051 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.766712 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4046 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.766712 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767119 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767119 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762030 ] } } , @@ -17504,29 +16752,29 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.768951 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.768951 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4010 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4005 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3868 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.769222 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3863 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.769222 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4059 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4054 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767390 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.765626 ] } } , @@ -17534,15 +16782,15 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764133 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762573 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762437 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762437 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4011 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762505 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4006 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762505 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762369 ] } } , @@ -17550,19 +16798,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.763862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.763862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.763930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.763930 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.762641 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760537 ] } } , @@ -17570,9 +16818,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760605 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760605 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760741 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760741 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760673 ] } } , @@ -17580,9 +16828,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } , @@ -17590,9 +16838,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755787 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755787 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755312 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755312 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753480 ] } } , @@ -17600,19 +16848,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760808 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.760944 ] } } , @@ -17620,99 +16868,99 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756058 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.750494 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748797 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748661 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4206 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4201 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748797 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4205 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4200 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.748729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.748729 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746761 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746761 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3316 }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3311 }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.745064 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 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, "tippecanoe:retain_points_multiplier_sequence": 3315 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3310 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752733 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752733 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.749136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.749136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748797 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.748933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.748933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.743300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.743300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3442 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743096 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3437 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743096 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3441 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3436 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3440 }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743164 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3435 }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743164 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741467 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4217 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4212 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743096 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743096 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.741535 ] } } , @@ -17726,321 +16974,321 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 3716 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3711 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736444 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.741603 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.741603 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3563 }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3558 }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3562 }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3557 }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3564 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3559 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4212 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741060 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4207 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741060 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3986 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3981 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3570 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3565 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3567 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.741467 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3562 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.741467 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3720 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3715 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3568 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3563 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3855 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3850 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3565 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3560 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3566 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3561 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4310 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4305 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4211 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4206 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3718 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3713 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3901 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740721 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3896 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740721 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4311 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4306 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3569 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3564 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3719 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3714 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3714 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3709 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4047 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4042 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3914 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3909 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3713 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3708 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3715 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3710 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3721 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.739838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3716 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.739838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3722 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.739567 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3717 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.739567 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3662 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3657 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3663 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739431 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3658 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739431 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3927 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3922 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3808 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3803 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4022 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4017 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4023 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4018 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748118 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4021 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4016 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4024 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4019 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3750 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3745 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.745268 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.745268 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3751 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746354 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3746 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746354 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3752 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3747 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3753 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3748 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3756 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3751 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3757 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3752 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740110 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740110 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.460051, 37.739363 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740042 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739159 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.737734 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.737870 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744114 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741603 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741603 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.740856 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.743096 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.743096 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741942 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736716 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736716 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3284 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3279 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4216 }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.734680 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4211 }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 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, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734680 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3283 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3278 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4210 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4205 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.731761 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.731761 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4357 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4352 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3312 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3307 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4103 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4098 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3313 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3308 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3345 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3340 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 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, "tippecanoe:retain_points_multiplier_sequence": 3717 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3712 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3973 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3968 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3344 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3339 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3898 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3893 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3902 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3897 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.731150 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.731150 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731014 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 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, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3903 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731285 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3898 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731285 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3977 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731285 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3972 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731285 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3350 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734680 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3345 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734680 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3349 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3344 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3347 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3342 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3348 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3343 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3346 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3341 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3233 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4146 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4141 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3894 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729928 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3889 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729928 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3893 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3888 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728299 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728299 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4156 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727212 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4151 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727212 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4157 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4152 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 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, "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, "tippecanoe:retain_points_multiplier_sequence": 3989 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3984 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3990 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3985 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3859 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3854 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3860 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3855 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720967 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4221 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4216 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 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, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721442 ] } } , @@ -18048,213 +17296,213 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3892 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3887 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4066 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4061 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4067 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4062 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3964 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3959 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.732236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.732236 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732032 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3806 }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3801 }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3804 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3799 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3805 }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3800 }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3803 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3798 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733661 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729928 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.730539 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.730539 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3802 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3797 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3807 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.732575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3802 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.732575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.730675 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.730675 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731082 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.731421 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.731421 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3895 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3890 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724904 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724904 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3890 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724904 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3885 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724904 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3963 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3958 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 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, "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, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724361 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724361 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3891 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724225 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3886 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724225 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724225 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724225 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4068 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4063 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723411 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3962 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3957 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.720084 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720016 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3961 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3956 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721917 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721917 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4007 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4002 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.751240 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.751240 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3274 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3269 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3276 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3271 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3754 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3749 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.745336 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.745336 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3755 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3750 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3503 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3498 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3275 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3270 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752326 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752326 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.751715 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750426 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752055 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752055 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751647 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751647 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3821 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3816 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.750697 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.746422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.746422 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4273 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4268 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3965 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3960 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.748933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.748933 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748186 ] } } , @@ -18262,73 +17510,73 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.746693 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3992 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3987 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3993 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3988 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746625 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.744318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.744318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3495 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3490 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3491 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3486 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3502 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.742553 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3497 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.742553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3499 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3494 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3498 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.741807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3493 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3504 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3499 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3505 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3500 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.737802 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4048 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4043 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.740178 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741060 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741060 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3497 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.739838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3492 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.739838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3496 }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3491 }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3490 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3485 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3489 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738888 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3484 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738888 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3488 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737666 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3483 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737666 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3501 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3496 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3485 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.736852 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3480 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.736852 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3484 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3479 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.736444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.736444 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736580 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736580 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.752462 ] } } , @@ -18338,9 +17586,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } , @@ -18348,19 +17596,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752733 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752733 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.746897 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.746897 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.745268 ] } } , @@ -18368,49 +17616,49 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751037 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.749476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.749476 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752869 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752055 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752055 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751376 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751376 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.751240 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.751240 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751240 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4019 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4014 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.751512 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.433786, 37.749611 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.433786, 37.749611 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748661 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.747847 ] } } , @@ -18418,19 +17666,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747033 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747033 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745607 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4034 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4029 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748118 ] } } , @@ -18438,17 +17686,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743639 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743639 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4009 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738277 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4004 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738277 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743096 ] } } , @@ -18458,9 +17706,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741603 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.740245 ] } } , @@ -18468,17 +17716,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 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, "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, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738888 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738888 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738752 ] } } , @@ -18488,9 +17736,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.737327 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.737327 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } , @@ -18498,39 +17746,39 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736037 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736037 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736784 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3493 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3488 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.734340 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.448893, 37.733118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.448893, 37.733118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4174 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.731693 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4169 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.731693 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731421 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4075 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4070 }, "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727620 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727620 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728434 ] } } , @@ -18538,29 +17786,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.728502 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3492 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3487 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3494 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735494 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3489 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735494 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3487 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3482 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3486 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.733933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3481 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.733933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3507 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.734544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3502 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.734544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3500 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3495 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3506 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3501 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } , @@ -18568,79 +17816,79 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725990 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725990 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3837 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3832 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723003 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719745 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719337 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.722868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.722868 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4359 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4354 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3844 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3839 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720967 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3931 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3926 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 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, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720831 ] } } , @@ -18648,99 +17896,99 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4334 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4329 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3897 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3892 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719948 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , { "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_sequence": 52 }, "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, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3938 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3933 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3939 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3934 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4282 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4277 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3930 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3925 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4281 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4276 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3845 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3840 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722868 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3967 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3962 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 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, "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, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.731625 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3846 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.729045 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3841 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.729045 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.728977 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.728977 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728977 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728977 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3847 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3842 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.731489 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730335 ] } } , @@ -18748,13 +17996,13 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.731489 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.433786, 37.734476 ] } } , @@ -18768,59 +18016,59 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.733593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.733593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732372 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731285 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.725719 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.725719 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3849 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3844 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3848 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3843 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4241 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4236 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3862 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3857 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721238 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721238 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4303 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4298 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.724293 ] } } , @@ -18828,19 +18076,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724497 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724497 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723954 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723954 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726126 ] } } , @@ -18848,19 +18096,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.806326 ] } } , @@ -18868,29 +18116,29 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.806597 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805783 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805647 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.807207 ] } } , @@ -18898,37 +18146,37 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.806054 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.806054 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4279 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4274 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806529 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3928 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3923 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3352 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3347 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3839 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3834 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.806665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.806665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806461 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806461 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805715 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806868 ] } } , @@ -18938,17 +18186,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801307 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801307 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801578 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801782 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801782 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } , @@ -18958,277 +18206,277 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 3597 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797645 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3592 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797645 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3596 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3591 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4355 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800900 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4350 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800900 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4343 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4338 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3583 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3578 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3582 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798187 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3577 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798187 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3645 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.805105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3640 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.805105 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3644 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804969 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3639 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804969 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3643 }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.805173 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3638 }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.805173 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4164 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804834 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4159 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804834 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4354 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804766 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4349 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804766 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3631 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804291 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3626 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804291 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4270 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4265 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.804969 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.804969 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4175 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.803342 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4170 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.803342 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3626 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3621 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802392 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3627 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3622 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802189 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802189 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3625 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3620 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805376 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805376 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803613 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803613 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.801578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.801578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801443 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3634 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800493 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3629 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800493 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3635 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3630 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3611 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3606 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3612 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3607 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3657 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3652 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3658 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3653 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3605 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3600 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3606 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3601 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796967 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796967 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793101 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3735 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3730 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3732 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3727 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3740 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3735 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.790320 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.790320 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790659 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790659 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.790659 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.790659 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3659 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.796424 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3654 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.796424 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3734 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3729 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3623 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3618 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3650 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3645 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3988 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794932 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3983 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794932 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796153 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796153 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.795068 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.795068 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3638 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3633 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794186 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3639 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3634 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793779 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3747 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.793033 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3742 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.793033 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3628 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3623 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3971 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3966 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3743 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3738 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790862 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.791134 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.791134 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792083 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792083 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4368 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4363 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3653 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791134 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3648 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791134 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3624 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3619 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790455 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.790320 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792355 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.791473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.791473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3920 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3915 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.790659 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.790659 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3651 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3646 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4366 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4361 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.804766 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 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, "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, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802867 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802867 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3469 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3464 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3470 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805241 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3465 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805241 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 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, "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, "tippecanoe:retain_points_multiplier_sequence": 3592 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3587 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3593 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.798933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3588 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.798933 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.800154 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3586 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3581 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799137 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3587 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3582 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799069 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798323 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3594 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799408 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3589 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799408 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3595 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.799340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3590 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.799340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3589 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3584 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3588 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799679 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3583 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799679 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3468 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3463 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3472 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.804359 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3467 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.804359 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.803749 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3471 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3466 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3951 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802799 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3946 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802799 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802664 ] } } , @@ -19238,49 +18486,49 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804766 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804766 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.802935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.802935 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3361 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3356 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3610 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3605 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3609 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3604 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3600 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3595 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 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, "tippecanoe:retain_points_multiplier_sequence": 3599 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.800086 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3594 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.800086 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.799001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.799001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.799069 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3577 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.800154 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3572 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.800154 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3575 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3570 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3576 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3571 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800426 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.798255 ] } } , @@ -19288,79 +18536,79 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2721 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795542 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795542 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795407 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3738 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3733 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793372 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3736 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.793643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3731 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.795542 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.795542 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3739 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3734 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 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, "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, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791676 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791676 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.790659 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.790659 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4365 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789641 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4360 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789641 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789506 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789506 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789370 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789370 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791948 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791066 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790998 ] } } , @@ -19368,89 +18616,89 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3415 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.789234 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.789234 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3424 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.788421 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3419 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.788421 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.795746 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.795746 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3737 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3732 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.794050 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3746 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3741 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796085 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796356 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795271 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795271 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3744 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3739 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 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_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3742 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3737 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3741 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.794525 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3736 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.794525 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.792626 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.792626 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792355 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } , @@ -19458,27 +18706,27 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.789302 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.789302 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3421 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3416 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791676 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791676 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3438 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788828 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3433 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788828 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3427 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.789031 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3422 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.789031 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4207 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808224 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4202 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808224 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806054 ] } } , @@ -19488,109 +18736,109 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3869 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.806800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3864 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.806800 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4028 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806597 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4023 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806597 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803477 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803477 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803342 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803342 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3359 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3354 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3360 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3355 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3357 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3352 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.801375 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803545 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3478 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3473 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3479 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3474 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3481 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3476 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3482 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.802596 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3477 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.802596 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3480 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3475 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3477 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.801782 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3472 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.801782 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3367 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800493 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3362 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800493 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3608 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3603 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3355 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799273 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3350 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799273 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3354 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799205 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3349 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799205 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3585 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3580 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3584 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.800697 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3579 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.800697 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3363 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.797170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3358 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.797170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3953 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3948 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3590 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3585 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3591 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3586 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3601 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3596 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3602 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3597 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.798120 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.797577 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.797034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.797034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4025 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4020 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805105 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803884 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803884 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.802324 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.802324 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.801375 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802121 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.802935 ] } } , @@ -19598,19 +18846,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.799679 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.799679 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.798120 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.798120 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3815 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3810 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797509 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797509 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800561 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798323 ] } } , @@ -19618,69 +18866,69 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 4301 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.796695 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4296 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.796695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4333 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4328 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3362 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3357 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3368 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.795339 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3363 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.795339 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.793847 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.793847 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.793711 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.793711 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.793033 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.793033 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3353 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.793711 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3348 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.793711 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3364 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3359 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796017 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796017 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796085 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793372 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792490 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792558 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792219 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792219 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792015 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.791948 ] } } , @@ -19688,125 +18936,121 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791066 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3430 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789234 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3425 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789234 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789099 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789099 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788353 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788149 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788149 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3366 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789913 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3361 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789913 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3365 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3360 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3437 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3432 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789438 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792355 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3422 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.789777 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.789777 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4268 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788556 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4263 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788556 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3745 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.795746 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3740 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.795746 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3206 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796017 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796017 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793847 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793847 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.793982 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.793982 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795068 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795068 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.794254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.794254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.793168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3192 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.793168 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4154 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4149 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793101 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.790998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.790998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.788217 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.788217 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.788963 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.788963 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4269 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788963 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4264 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788963 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.792015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4039 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3427 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790252 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4044 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790320 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3432 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790252 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4185 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790320 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790320 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791269 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4190 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790320 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3951 }, "geometry": { "type": "Point", "coordinates": [ -122.399626, 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, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3956 }, "geometry": { "type": "Point", "coordinates": [ -122.399626, 37.791269 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4020 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4015 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.790862 ] } } , @@ -19814,19 +19058,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789031 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789031 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3475 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788895 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3470 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788895 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4189 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4184 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799544 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.799069 ] } } , @@ -19834,33 +19078,33 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797034 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.794457 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793575 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4203 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4198 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792490 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792490 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4038 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4033 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } , @@ -19872,35 +19116,35 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } +{ "type": "Feature", "properties": { "count": 1, "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, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793440 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795068 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3823 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3818 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4027 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.794796 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4022 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.794796 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3952 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3947 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3319 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.793575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3314 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.793575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3991 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3986 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } , @@ -19908,17 +19152,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4005 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4000 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792490 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3343 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794389 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3338 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794389 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3339 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3334 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794118 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } , @@ -19926,31 +19170,31 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 4384 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4379 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3338 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3333 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4201 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.792626 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4196 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.792626 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3337 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793440 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3332 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793440 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3342 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3337 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3340 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3335 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3341 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3336 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4358 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4353 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4261 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4256 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4382 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4377 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791608 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791608 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } , @@ -19958,217 +19202,217 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789370 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4150 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789234 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4145 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789234 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3476 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789641 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3471 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789641 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3473 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3468 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789438 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 4383 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4378 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791948 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4315 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.791812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4310 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.791812 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.792355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.792355 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4219 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790591 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4214 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790591 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3474 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790727 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3469 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790727 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4231 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790591 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4226 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790591 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4228 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790523 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4223 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790523 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789913 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789913 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4331 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4326 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4218 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789777 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4213 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789777 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4220 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789777 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4215 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789777 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4227 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.789709 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4222 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.788217 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.788217 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4036 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4031 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4265 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4260 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792355 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789234 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4226 }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788828 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4221 }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788828 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4379 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4374 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4371 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4366 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790727 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.790455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.790455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4349 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4344 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4350 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789641 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4345 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789641 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3923 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3918 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4116 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4111 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828158 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828158 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4197 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4192 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4198 }, "geometry": { "type": "Point", "coordinates": [ -122.376280, 37.825447 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4193 }, "geometry": { "type": "Point", "coordinates": [ -122.376280, 37.825447 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3814 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3809 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4199 }, "geometry": { "type": "Point", "coordinates": [ -122.372675, 37.824023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4194 }, "geometry": { "type": "Point", "coordinates": [ -122.372675, 37.824023 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4214 }, "geometry": { "type": "Point", "coordinates": [ -122.373877, 37.823480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4209 }, "geometry": { "type": "Point", "coordinates": [ -122.373877, 37.823480 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.829243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.829243 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 4196 }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4191 }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825311 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825311 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3511 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3506 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3510 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.816226 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3505 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.816226 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4195 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822328 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4190 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822328 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4194 }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4189 }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819955 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 4152 }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813039 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4147 }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813039 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813242 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4012 }, "geometry": { "type": "Point", "coordinates": [ -122.370958, 37.813107 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4007 }, "geometry": { "type": "Point", "coordinates": [ -122.370958, 37.813107 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4013 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813107 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4008 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813107 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4014 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4009 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822192 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822192 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.364779, 37.811954 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4015 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4010 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.363749, 37.811683 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.363749, 37.811683 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4016 }, "geometry": { "type": "Point", "coordinates": [ -122.364264, 37.811344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4011 }, "geometry": { "type": "Point", "coordinates": [ -122.364264, 37.811344 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3413 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3408 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3414 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3409 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784486 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784486 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3425 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3426 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3421 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3428 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786928 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3423 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786928 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.785029 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781909 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } , @@ -20176,61 +19420,61 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 3419 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.787200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3414 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.787200 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.786114 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.786114 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.425032, 37.785436 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.425032, 37.785436 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3273 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3268 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3654 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.787810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3649 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3439 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787607 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3434 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787607 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3655 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3650 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3652 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3647 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3633 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3628 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3632 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3627 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4369 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785572 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4364 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785572 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4300 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4295 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784622 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784622 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3649 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3644 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3648 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3643 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4302 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4297 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.782383 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.779670 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.779602 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4288 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779602 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4283 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779602 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3629 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3624 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3630 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.782451 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3625 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.782451 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3560 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781909 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3555 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781909 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780077 ] } } , @@ -20238,13 +19482,13 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776956 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775803 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775803 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.776074 ] } } , @@ -20258,17 +19502,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.779331 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.779331 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776210 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } , @@ -20276,11 +19520,11 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 4240 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.772004 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4235 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 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, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772004 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.772411 ] } } , @@ -20288,199 +19532,199 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776481 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776481 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773768 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773768 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4143 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.773836 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4138 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.773836 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4158 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4153 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770918 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4313 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4308 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.774175 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.774175 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773225 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3704 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771325 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3699 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771325 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.772886 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.771732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3429 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3424 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786521 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786521 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.786793 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.786793 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3423 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.788014 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3418 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.788014 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785843 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785843 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785029 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785029 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.784961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.784961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787200 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3656 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3651 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3552 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782180 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3547 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782180 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3640 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780213 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3635 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780213 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3641 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3636 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.783333 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.783333 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.783265 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.783265 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3546 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.782451 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3541 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.782451 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.781705 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3544 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782587 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3539 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782587 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4031 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.780348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4026 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.780348 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780755 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787335 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.787403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.787403 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787607 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787607 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.786860 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.785504 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.784690 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785775 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.786996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.786996 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4246 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.787200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4241 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.787200 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.786046 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4056 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4051 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4043 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4038 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784079 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3547 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782790 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3542 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782790 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781637 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3545 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.782994 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3540 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.782994 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4239 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.780891 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4234 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.780891 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4145 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4140 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780552 ] } } , @@ -20488,89 +19732,89 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782044 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782044 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3559 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3554 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.782316 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.782316 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4202 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.781162 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4197 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.781162 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.781298 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3636 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778652 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3631 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778652 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.778177 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.778177 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3637 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.777838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3632 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.777838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4161 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4156 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3838 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.778042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3833 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.778042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3647 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3642 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3646 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3641 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3831 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775192 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3826 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3642 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775260 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3637 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775260 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775192 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775192 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4138 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4133 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 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, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4163 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4158 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.778720 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.777703 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777567 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777567 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777567 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777363 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4262 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4257 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777363 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4370 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4365 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.774989 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3937 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.774989 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3932 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.774989 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4224 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4219 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4225 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4220 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3317 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3312 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4042 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.772954 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4037 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.772954 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.772818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.772818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } , @@ -20578,45 +19822,45 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.779331 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.779331 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4144 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4139 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4263 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4258 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778585 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779059 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.777703 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.778924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.778924 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3917 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779331 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3912 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779331 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 4266 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4261 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771597 ] } } , @@ -20634,73 +19878,73 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 4373 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4368 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3936 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3931 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769426 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3867 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.769290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3862 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.769290 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4057 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4052 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767322 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.767797 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3866 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3861 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3314 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3309 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3912 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3907 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4385 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4380 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3863 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3858 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764405 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.762776 ] } } , @@ -20708,101 +19952,101 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3701 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3696 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3700 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770104 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3695 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770104 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3673 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3668 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3674 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.767865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3669 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.767865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3675 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.766780 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3670 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.766780 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3676 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3671 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766237 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3677 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.765219 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3672 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.765219 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3678 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764608 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3673 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764608 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3679 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.763387 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3674 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.763387 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3680 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763048 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3675 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763048 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761419 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761419 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761148 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761148 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3818 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3813 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3819 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3814 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757212 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757212 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756601 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756398 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756398 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3681 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.761962 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3676 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.761962 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3682 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.761419 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3677 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.761419 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3683 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3678 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3684 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3679 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3686 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3681 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3685 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758705 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3680 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758705 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3687 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3682 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3688 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3683 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3689 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3684 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3690 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755041 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3685 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755041 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3692 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753412 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3687 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753412 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3691 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3686 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770443 ] } } , @@ -20810,9 +20054,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767797 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4251 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4246 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766644 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766644 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767119 ] } } , @@ -20820,9 +20064,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766169 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766169 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765083 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765083 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.764948 ] } } , @@ -20830,49 +20074,49 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.765083 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.765083 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3888 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.764948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3883 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.764948 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4249 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4244 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4260 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765219 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4255 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765219 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4252 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4247 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4033 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4028 }, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765219 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 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, "tippecanoe:retain_points_multiplier_sequence": 4253 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4248 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.763794 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769629 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765355 ] } } , @@ -20880,9 +20124,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765490 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765490 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.765558 ] } } , @@ -20890,17 +20134,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.763116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.763116 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761894 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.759791 ] } } , @@ -20908,99 +20152,99 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758162 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4259 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761826 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4254 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761826 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4254 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.758909 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4249 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.758909 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4258 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4253 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758841 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757484 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.755787 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.755787 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755176 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755176 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753412 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.754294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4255 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4250 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4257 }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755448 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4252 }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755448 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761826 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.758976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.758976 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4297 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.758976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4292 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.758976 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4296 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4291 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.758773 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761826 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760334 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787471 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787471 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3982 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3977 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4375 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783876 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4370 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4374 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.784079 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4369 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.784079 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4046 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4041 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4050 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4045 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784283 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4330 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4325 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.785368 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4055 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4050 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 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, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784418 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.784147 ] } } , @@ -21008,47 +20252,47 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.783876 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.783876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3813 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.783944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3808 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.783944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3358 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.787742 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3353 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.787742 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787607 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.786386 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.786386 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3356 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785843 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785843 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3979 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3974 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.782858 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.782858 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4248 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4243 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4104 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4099 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782926 ] } } , @@ -21056,9 +20300,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782723 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782587 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781434 ] } } , @@ -21066,25 +20310,25 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.787742 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.787742 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785979 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785979 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.786521 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.786521 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4378 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4373 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4159 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4154 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } , @@ -21094,41 +20338,41 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.787878 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4139 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4134 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4140 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4135 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3933 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3928 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.782994 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.782994 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3981 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.780416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3976 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.780416 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781773 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781773 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777906 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776617 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776617 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.778585 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777296 ] } } , @@ -21136,67 +20380,67 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772547 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771461 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771461 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3918 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.774650 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3913 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.774650 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3809 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.774582 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3804 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.774582 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 4272 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771325 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4267 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771325 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4247 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4242 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4060 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4055 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 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, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.776142 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4230 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4225 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3527 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3522 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3526 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3521 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3524 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773632 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3519 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773632 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3525 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3520 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773429 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4188 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4183 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786521 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786521 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4166 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4161 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3825 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3820 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4213 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4208 }, "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 ] } } , @@ -21204,91 +20448,91 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 4380 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4375 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784486 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4376 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4371 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784283 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782451 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782451 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4377 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4372 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.782655 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783265 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783265 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3966 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3961 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.779534 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4381 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4376 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3922 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3917 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4155 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4150 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784554 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4187 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.780687 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4182 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.780687 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779602 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 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, "tippecanoe:retain_points_multiplier_sequence": 4035 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4030 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.776549 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.776549 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4332 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4327 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3522 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775396 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3517 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775396 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3523 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775192 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3518 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3999 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3994 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3519 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777431 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3514 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777431 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3520 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777160 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3515 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777160 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3521 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777024 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3516 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777024 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3810 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3805 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.777024 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.777024 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.777024 ] } } , @@ -21296,169 +20540,169 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3943 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3938 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4137 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4132 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4131 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776210 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4126 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776210 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4102 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4097 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3940 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3935 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.776074 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.776074 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4120 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775735 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4115 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3924 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3919 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773089 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773089 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3518 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3513 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3517 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.778992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3512 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.778992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4115 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4110 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775464 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4064 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4059 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4063 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776210 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4058 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776210 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4094 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4089 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4095 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4090 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4321 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4316 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.768408 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.768408 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4041 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4036 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766305 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766305 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.766033 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.766033 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.765830 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3705 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3700 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3712 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3707 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3711 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.763251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3706 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.763251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3706 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3701 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4271 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4266 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.765897 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.764812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 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, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 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, "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4326 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4321 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4317 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.765965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4312 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.765965 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.764880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4179 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4174 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.763523 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.763523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4325 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4320 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.766237 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4318 }, "geometry": { "type": "Point", "coordinates": [ -122.399626, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4313 }, "geometry": { "type": "Point", "coordinates": [ -122.399626, 37.766237 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763455 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.761826 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.761826 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.759044 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3707 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3702 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3708 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3703 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759587 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757484 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.757416 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } , @@ -21466,79 +20710,79 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755855 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755855 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4364 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755176 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4359 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755176 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753955 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3709 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760741 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3704 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760741 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.761962 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.761962 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3710 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.759655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3705 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.759655 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759519 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759519 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759451 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759451 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.758501 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758094 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758094 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758026 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3773 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3768 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756126 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756126 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.754362 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.754362 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 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, "tippecanoe:retain_points_multiplier_sequence": 3985 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3980 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.753344 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757416 ] } } , @@ -21546,59 +20790,59 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3774 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757144 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3769 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757144 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3784 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3779 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3783 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755719 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3778 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755719 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3775 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3770 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4324 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4319 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4319 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4314 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3861 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3856 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 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, "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, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762844 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762844 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4322 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4317 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4323 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4318 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4320 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4315 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3960 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769697 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3955 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769697 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4065 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4060 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4062 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769561 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4057 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769561 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4093 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4088 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4096 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4091 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } , @@ -21606,79 +20850,79 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3830 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3825 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4092 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4087 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4117 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4112 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4097 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4092 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3947 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3942 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3483 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3478 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4118 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764133 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4113 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764133 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763319 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3941 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762980 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3936 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762980 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762641 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762641 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4184 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4179 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761283 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759926 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759926 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3508 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3503 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3509 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3504 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758230 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755923 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3776 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754633 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3771 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754633 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3780 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3775 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3781 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753412 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3776 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753412 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3782 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.753412 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3777 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.753412 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4185 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754633 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4180 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754633 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4186 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4181 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.756805 ] } } , @@ -21686,67 +20930,67 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755448 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 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, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3915 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3910 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.757687 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760741 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3942 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3937 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760537 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4091 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760469 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4086 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 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, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4098 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760334 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4093 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760334 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757755 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3957 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758026 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3952 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758026 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.757891 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.757891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4162 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758026 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4157 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758026 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.757551 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.757551 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4169 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755108 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4164 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755108 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4173 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.754973 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4168 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.754973 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 4090 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4085 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3948 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755312 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3943 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755312 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4099 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4094 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755244 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.751783 ] } } , @@ -21756,59 +21000,59 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.749136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.749136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746490 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746490 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.744929 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.744929 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746965 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751919 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751919 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.752055 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.752055 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3694 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3689 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743503 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743503 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.742010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.742010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 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, "tippecanoe:retain_points_multiplier_sequence": 3864 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3859 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3865 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3860 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.742621 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4058 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742146 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4053 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742146 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3812 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3807 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.742214 ] } } , @@ -21816,19 +21060,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.737734 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.737734 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736309 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736309 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739702 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3798 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.738888 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3793 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.738888 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737123 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737123 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.737123 ] } } , @@ -21836,29 +21080,29 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742146 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742282 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.743775 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.741060 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.740856 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 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, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.742417 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.742417 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.739906 ] } } , @@ -21866,19 +21110,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 4308 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4303 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739702 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4309 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4304 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739702 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.738956 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.738820 ] } } , @@ -21886,17 +21130,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736173 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736173 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740178 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740178 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3693 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752326 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3688 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752326 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752055 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752055 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } , @@ -21906,59 +21150,59 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751919 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3695 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.750765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3690 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.750765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3696 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3691 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749476 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 4256 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4251 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 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, "tippecanoe:retain_points_multiplier_sequence": 4178 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4173 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.752258 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4250 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4245 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.749069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3697 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.748661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3692 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.748661 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3699 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747983 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3694 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3698 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3693 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4215 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4210 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4304 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4299 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748526 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748526 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4191 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4186 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746897 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746897 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3703 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746693 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3698 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746693 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3702 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.746625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3697 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.746625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4392 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.746218 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4387 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.746218 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.745879 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748254 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752530 ] } } , @@ -21966,39 +21210,39 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 4053 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4048 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752394 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.752462 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.752462 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750833 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750833 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4052 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4047 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4192 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.748390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4187 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.748390 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4305 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4300 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.748051 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , @@ -22006,9 +21250,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4307 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4302 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748390 ] } } , @@ -22016,29 +21260,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744250 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739295 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739295 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744182 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744182 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744114 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744114 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4208 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741467 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4203 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741467 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741196 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741196 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.741467 ] } } , @@ -22046,9 +21290,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738888 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738888 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738888 ] } } , @@ -22056,9 +21300,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 3997 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738209 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3992 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738209 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3996 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.738209 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3991 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.738209 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737123 ] } } , @@ -22066,69 +21310,69 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739567 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739567 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740042 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3980 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3975 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3346 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731829 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 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, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.732168 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731353 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730675 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.730403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.730403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3261 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3256 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728706 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728570 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3263 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3258 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3262 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3257 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3532 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3527 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3533 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3528 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3258 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728434 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3253 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728434 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4148 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728570 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4143 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728570 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4151 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728570 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4146 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728570 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3251 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3246 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.734001 ] } } , @@ -22136,79 +21380,79 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735901 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.735223 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 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, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.735087 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3249 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728706 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3244 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728706 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3250 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3245 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3534 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3529 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3255 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728706 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3250 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728706 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3254 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3249 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3970 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3965 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720831 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722460 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721510 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721238 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718794 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718930 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.724633 ] } } , @@ -22216,17 +21460,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725040 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725040 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725176 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725176 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4006 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4001 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720356 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.719337 ] } } , @@ -22236,49 +21480,49 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735766 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735766 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735087 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735087 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735019 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732304 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732304 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.735630 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.735630 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 4276 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4271 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732779 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3824 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3819 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3246 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.729113 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.729113 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3247 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.728977 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.728977 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3265 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.728977 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3260 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.728977 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3266 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3261 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4267 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4262 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3976 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3971 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.734680 ] } } , @@ -22286,79 +21530,79 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734951 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734951 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 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, "tippecanoe:retain_points_multiplier_sequence": 4233 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4228 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.733254 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3253 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3248 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3252 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.729928 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3247 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.729928 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3617 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3612 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3244 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.730878 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.730878 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3256 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3251 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.726398 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.726398 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726330 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3615 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3610 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3616 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3611 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3613 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725108 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3608 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725108 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3614 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.724972 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3609 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.724972 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3619 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3614 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3620 }, "geometry": { "type": "Point", "coordinates": [ -122.412844, 37.723818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3615 }, "geometry": { "type": "Point", "coordinates": [ -122.412844, 37.723818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3790 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3785 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3792 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3787 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3793 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3788 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3618 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3613 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3797 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.722664 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3792 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3791 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3786 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.752869 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.752869 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752530 ] } } , @@ -22366,29 +21610,29 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749476 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.752665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.752665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4168 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4163 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.753073 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751240 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751240 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4306 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.748390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4301 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.748390 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.748458 ] } } , @@ -22396,69 +21640,69 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750697 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 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, "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, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.750765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.750765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3919 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.746422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3914 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.746422 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3832 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3827 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742825 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739702 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4054 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738345 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4049 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738345 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.738684 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737938 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3833 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3828 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741874 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741874 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3516 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.741060 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3511 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.741060 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3513 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743911 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3508 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3512 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.743911 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3507 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.743911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3515 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741467 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3510 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741467 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3514 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3509 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742282 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738752 ] } } , @@ -22466,19 +21710,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.739499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3268 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3263 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3778 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3773 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3777 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3772 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3779 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.751240 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3774 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.751240 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.752530 ] } } , @@ -22486,17 +21730,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751240 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751240 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749001 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.750019 ] } } , @@ -22504,211 +21748,211 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 4171 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.752326 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4166 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.752326 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747304 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.747236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.747236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4030 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746150 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4025 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746150 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4170 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4165 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4172 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4167 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.741671 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738209 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738209 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3267 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.736309 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3262 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.736309 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737191 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737191 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3264 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3259 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737123 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737123 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.736173 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.736173 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736852 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736852 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.736105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.736105 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4029 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4024 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744046 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740653 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740653 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742960 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4101 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4096 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4088 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4083 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3944 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3939 }, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3949 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3944 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742417 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.740856 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.738073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.738073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4109 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4104 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4107 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4102 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4110 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736309 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4105 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736309 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4106 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4101 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736309 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736309 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739295 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738888 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738888 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4126 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4121 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4087 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4082 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4136 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4131 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.740110 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4327 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4322 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4328 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4323 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737191 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737191 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4108 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4103 }, "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, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4127 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4122 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4086 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4081 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4135 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4130 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3270 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3265 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3269 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.732304 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3264 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.732304 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3248 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3243 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.733254 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3245 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.732032 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3260 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731285 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3255 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731285 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3259 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3254 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3225 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4372 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4367 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4389 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4384 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727959 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3243 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3257 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3252 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4032 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4027 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3272 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735223 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3267 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735223 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3271 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3266 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4316 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4311 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731625 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727484 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727620 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728434 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728434 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3669 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730335 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3664 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730335 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.729113 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.729113 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726262 ] } } , @@ -22716,269 +21960,269 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725176 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725176 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3788 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3783 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3789 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3784 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3796 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3791 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3795 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3790 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725040 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3794 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3789 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719337 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720491 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3225 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4336 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4331 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.723411 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.723411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723275 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723275 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721578 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4335 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4330 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3528 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3523 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.733254 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3531 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731964 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3526 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731964 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3529 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.731761 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3524 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.731761 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3530 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731150 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3525 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731150 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3787 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3782 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727891 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4312 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4307 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735766 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735766 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3836 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3831 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3835 }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735630 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3830 }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735630 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4128 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4123 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4134 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4129 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4085 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4080 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3946 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3941 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 4129 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4124 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4084 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4079 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4133 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4128 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.732372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.732372 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3834 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3829 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4111 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4106 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4105 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.732847 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4100 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.732847 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3785 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3780 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3786 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3781 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3950 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3945 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4082 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4077 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4081 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4076 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3668 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3663 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3666 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3661 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3667 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3662 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.723003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.723003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4141 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4136 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4045 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725447 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4040 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725447 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4079 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725447 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4074 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725447 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4080 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725447 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4075 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725447 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4061 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4056 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4337 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4332 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4130 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4125 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4077 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4072 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4112 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4107 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4132 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4127 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3945 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3940 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4078 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4073 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4083 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4078 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722596 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4338 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4333 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4142 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4137 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.721985 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.721985 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721374 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721374 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3665 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3660 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3664 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3659 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719880 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4176 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4171 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4182 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4177 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 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_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4177 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4172 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.755380 ] } } , @@ -22986,29 +22230,29 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.753140 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.753140 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4153 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4148 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 4114 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4109 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4100 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4095 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4089 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4084 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4113 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4108 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3958 }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3953 }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.746015 ] } } , { "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4149 }, "geometry": { "type": "Point", "coordinates": [ -122.387094, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4144 }, "geometry": { "type": "Point", "coordinates": [ -122.387094, 37.741399 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } , @@ -23016,19 +22260,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.383661, 37.742553 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.383661, 37.742553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743911 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4237 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4232 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743775 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.383146, 37.743707 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.383146, 37.743707 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3870 }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3865 }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740856 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740653 ] } } , @@ -23036,19 +22280,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739974 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739974 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3974 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3969 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737666 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737666 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.381773, 37.738141 ] } } , @@ -23056,9 +22300,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.380743, 37.738752 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.380743, 37.738752 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4284 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4279 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } , @@ -23066,19 +22310,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.736987 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.735833 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.731829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.731829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731829 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.732372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.732372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.386065, 37.732983 ] } } , @@ -23086,49 +22330,49 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735698 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3799 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3794 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3800 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3795 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729520 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729520 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.385378, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.385378, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.386236, 37.729520 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.386236, 37.729520 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.730131 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.730131 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729385 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729385 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734136 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733458 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } , @@ -23136,17 +22380,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3955 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3950 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734340 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.732711 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.732711 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } , @@ -23154,19 +22398,19 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.376966, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.376966, 37.730946 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } , @@ -23176,39 +22420,39 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731964 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731964 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730199 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730199 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.729860 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729113 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 3932 }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725312 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3927 }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725312 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3318 }, "geometry": { "type": "Point", "coordinates": [ -122.367868, 37.725312 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3313 }, "geometry": { "type": "Point", "coordinates": [ -122.367868, 37.725312 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728570 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728570 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3926 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3921 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } , @@ -23216,13 +22460,13 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716078 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } , @@ -23234,41 +22478,41 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 4346 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4341 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4356 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714584 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4351 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714584 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4351 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714449 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4346 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714449 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3871 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3866 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4000 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3995 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 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, "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715807 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717436 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717436 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.717300 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } , @@ -23276,121 +22520,121 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 4347 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4342 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717708 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717708 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3811 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.717368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3806 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.717368 ] } } , { "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, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714584 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714584 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4352 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4347 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4348 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4343 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4353 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4348 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4360 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4355 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.713566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3935 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3930 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3929 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3924 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714177 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714177 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714313 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717708 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717708 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3994 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3989 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718522 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718522 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3900 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3895 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.718251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.718251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3904 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3899 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3905 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3900 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713905 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713905 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3896 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3891 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.716893 ] } } , @@ -23400,9 +22644,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , @@ -23410,19 +22654,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716621 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716486 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4264 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4259 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715671 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715128 ] } } , @@ -23438,9 +22682,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.715128 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.715128 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , @@ -23450,121 +22694,117 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.713294 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.717436 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.717436 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4003 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3998 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3409 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3404 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3410 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3405 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3407 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713362 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3402 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713362 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3408 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3403 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3670 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3665 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3827 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3822 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713362 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3854 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.716214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3849 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.716214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4071 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.714992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4066 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.714992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4073 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4068 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3672 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713226 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3667 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713226 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4072 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4067 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3671 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3666 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3822 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3817 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3762 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3757 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717776 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3851 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3846 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3852 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3847 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3916 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3911 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3858 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3853 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3857 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3852 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3759 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3754 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3842 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3837 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3843 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715128 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3838 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715128 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4070 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4065 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4069 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4064 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3841 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3836 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3840 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.713838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3835 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.713838 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 3760 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3755 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3766 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3761 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3765 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3760 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3763 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3758 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3764 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.716486 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3759 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.716486 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3761 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3756 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3856 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3851 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } , -{ "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, "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, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3206 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3959 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713362 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3954 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713362 ] } } , -{ "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_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713498 ] } } , { "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 ] } } , @@ -23578,9 +22818,9 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4076 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717436 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4071 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717436 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -23592,33 +22832,33 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775125 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775125 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.774989 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778652 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778652 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778517 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778517 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784215 ] } } ] } @@ -23628,7 +22868,7 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 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 ] } } , @@ -23636,13 +22876,13 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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 ] } } , diff --git a/tests/muni/out/-zg_--retain-points-multiplier_2.json b/tests/muni/out/-zg_--retain-points-multiplier_2.json index ec5829fa3..e5973564a 100644 --- a/tests/muni/out/-zg_--retain-points-multiplier_2.json +++ b/tests/muni/out/-zg_--retain-points-multiplier_2.json @@ -9,7 +9,7 @@ "maxzoom": "11", "minzoom": "0", "name": "tests/muni/out/-zg_--retain-points-multiplier_2.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":4609},{\"dropped_by_rate\":4609},{\"dropped_by_rate\":4607},{\"dropped_by_rate\":4604},{\"dropped_by_rate\":4595},{\"dropped_by_rate\":4575},{\"dropped_by_rate\":4521},{\"dropped_by_rate\":4396},{\"dropped_by_rate\":5304},{\"dropped_by_rate\":3802},{\"dropped_by_rate\":1331},{}]", +"strategies": "[{\"dropped_by_rate\":4609},{\"dropped_by_rate\":4608},{\"dropped_by_rate\":4606},{\"dropped_by_rate\":4603},{\"dropped_by_rate\":4594},{\"dropped_by_rate\":4573},{\"dropped_by_rate\":4522},{\"dropped_by_rate\":4401},{\"dropped_by_rate\":5341},{\"dropped_by_rate\":3924},{\"dropped_by_rate\":1568},{}]", "tippecanoe_decisions": "{\"basezoom\":11,\"droprate\":2.5,\"retain_points_multiplier\":2}", "type": "overlay", "version": "2" @@ -27,6 +27,8 @@ { "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -36,9 +38,11 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -54,15 +58,17 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -80,31 +86,33 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.735969 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -120,73 +128,77 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.772886 ] } } , -{ "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": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.746829 ] } } , -{ "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": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.735969 ] } } , -{ "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": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.733797 ] } } , -{ "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": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.707726 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -202,185 +214,183 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.512665, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.808699 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808699 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.778313 ] } } -, -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , { "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } , +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } +, { "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "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": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706640 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } ] } ] } , @@ -394,1883 +404,1797 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836361 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784825 ] } } , -{ "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.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.731082 ] } } , -{ "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": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718047 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } ] } ] } , { "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "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": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } -, -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } -, -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } -, -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } -, -{ "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": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721034 ] } } , -{ "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": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "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": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.725651 ] } } , -{ "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": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "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": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732983 ] } } , -{ "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": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.716961 ] } } , -{ "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": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } , -{ "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": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.716418 ] } } +{ "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": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } -, -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831209 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } -, -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832836 ] } } -, -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } -, -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } -, -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } -, -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } -, -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } -, -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.515068, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801646 ] } } , -{ "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": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781569 ] } } , -{ "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": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "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": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "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": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.765015 ] } } , -{ "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": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "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": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746286 ] } } , -{ "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": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "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": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "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": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "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": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "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": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } , -{ "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": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808428 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } , -{ "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": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.792965 ] } } -, -{ "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": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } -, -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } -, -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } -, -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } -, -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796221 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794050 ] } } -, -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.792965 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.789981 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } -, -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } , -{ "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": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } , -{ "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": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778585 ] } } , -{ "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": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "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/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "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": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755516 ] } } , -{ "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": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "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": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.741128 ] } } , -{ "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": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753073 ] } } , -{ "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": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } , -{ "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.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } ] } ] } , { "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } ] } ] } , { "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } ] } ] } , @@ -2279,3234 +2203,2992 @@ { "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", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": 2 }, "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, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } -, -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } -, -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } -, -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } -, -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } -, -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } -, -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } , -{ "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": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "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": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "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", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724701 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726330 ] } } -, -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } , -{ "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": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "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.403316, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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": 13 }, "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": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +{ "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": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706776 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715739 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706233 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711665 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } -, -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } -, -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 40 }, "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, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832429 ] } } -, -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831887 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } -, -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830531 ] } } -, -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831345 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.836496 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833649 ] } } -, -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } -, -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806529 ] } } -, -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806122 ] } } -, -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.803545 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } -, -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832429 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831887 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831616 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831345 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803138 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.799883 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799612 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.797170 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.503910, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.507687, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.488117, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.488117, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1330 }, "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": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "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": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "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": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.477818, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "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.477131, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763387 ] } } , -{ "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": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778177 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774107 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763794 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740449 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743435 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "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": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } -, -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } -, -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } -, -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } -, -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } -, -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724701 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726330 ] } } -, -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } -, -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806393 ] } } -, -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } -, -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805851 ] } } -, -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805580 ] } } -, -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } -, -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } -, -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.808021 ] } } -, -{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807343 ] } } -, -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } -, -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.807750 ] } } -, -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.805715 ] } } -, -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } -, -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } -, -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } -, -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "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": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804901 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802324 ] } } -, -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } -, -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803409 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.798798 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793643 ] } } -, -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.791880 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.790252 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794728 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806393 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805851 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790388 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792829 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.804223 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795542 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808292 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.799612 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799340 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.794728 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.798933 ] } } +{ "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": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799612 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793915 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823480 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825379 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.363834, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823480 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813174 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "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": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "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": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "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": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "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": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "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": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755108 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768679 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768679 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "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": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.763794 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.768137 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 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": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "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": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771393 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "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": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.768679 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763523 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "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": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "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": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "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": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "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": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "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": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "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": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770579 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767865 ] } } , -{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "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": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750222 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743978 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747236 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.733254 ] } } , -{ "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": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.385464, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.383747, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.385807, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715739 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } -, -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.711393 ] } } -, -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.713159 ] } } -, -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } -, -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713430 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711665 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } -, -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } -, -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 439 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } ] } ] } , @@ -5520,299 +5202,283 @@ , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": "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, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } -, -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": 32 }, "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, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "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": 24 }, "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": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721102 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "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.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 Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } , { "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", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "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": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "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": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } , -{ "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, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } -, -{ "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", "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, "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_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } -, -{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "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": 7 }, "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": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "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": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "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": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "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", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "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": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "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": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "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": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "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": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } , @@ -5820,6139 +5486,5735 @@ , { "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, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722868 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "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": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } -, -{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "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": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "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": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.720423 ] } } -, -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722053 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714584 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714584 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.717029 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709288 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.709152 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717300 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.717979 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.709152 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.713023 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710918 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705757 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.710375 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.461596, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710103 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705757 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.461596, 37.711461 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710103 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706165 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706640 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.706844 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707387 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707387 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706165 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.706844 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707387 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.448378, 37.710510 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714720 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.448378, 37.710510 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712819 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714720 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711733 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712819 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715739 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710239 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710239 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.712955 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710918 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.711054 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.709017 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712819 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710646 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711733 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710646 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712004 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.712004 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712276 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710510 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "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": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.708473 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.708473 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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": 117 }, "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": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708338 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708338 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707930 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707930 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707115 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707115 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "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": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709288 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "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": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717843 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "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": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711733 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "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": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "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": 285 }, "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": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "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": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.711461 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711461 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711325 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "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": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "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": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "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": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 377 }, "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": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712140 ] } } , -{ "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", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712140 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712276 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712276 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712276 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712276 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 425 }, "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": 54 }, "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": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.710646 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.710646 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.712004 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 347 }, "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": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "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": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "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": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } -, -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } -, -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } -, -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.709831 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "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": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } ] } ] } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } -, -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } -, -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831819 ] } } -, -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832497 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } -, -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } -, -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } -, -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831345 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.833039 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.836090 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.502108, 37.836429 ] } } -, -{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833717 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833582 ] } } -, -{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.833582 ] } } -, -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835886 ] } } -, -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833175 ] } } -, -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } -, -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } -, -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.829446 ] } } -, -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.792219 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832497 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831684 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.792083 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806597 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831345 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806054 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.514982, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.833039 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803613 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.836090 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.801036 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833853 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799815 ] } } +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833717 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833582 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802935 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.833582 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833175 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798459 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.797916 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803884 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801578 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788421 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803884 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802053 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801578 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806597 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806732 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797916 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803613 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.801036 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800765 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799815 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798459 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798187 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3206 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803884 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803884 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.799408 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798052 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.804562 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797916 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799137 ] } } , -{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799815 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.804562 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796695 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.795610 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799815 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.799273 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804427 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.795610 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790727 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.803070 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800086 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805105 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.801172 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800765 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799679 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804427 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799679 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.799612 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797102 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.801172 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.442026, 37.796288 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799679 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.799612 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.442026, 37.796288 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796560 ] } } , -{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.796017 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795881 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.794932 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.796017 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.792219 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795881 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788828 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.792219 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779059 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.510347, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779059 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.502966, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.502966, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.779059 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.779059 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.771868 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775667 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771868 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.771868 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764133 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.508974, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762233 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.760198 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762233 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.756805 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "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": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783401 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781773 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "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": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "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": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "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": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.781909 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775667 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777838 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.492151, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.492838, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.492838, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.491808, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787335 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787335 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782044 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.782180 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780280 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780280 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 777 }, "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": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "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": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "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": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "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": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.774311 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.772682 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.480650, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.776617 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.480650, 37.772682 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.764540 ] } } , -{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.495756, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760876 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760876 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755176 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.753683 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.765083 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.480307, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.765083 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765219 ] } } -, -{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765219 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.765287 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "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": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } -, -{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } -, -{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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", "tippecanoe:retain_points_multiplier_sequence": 2926 }, "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": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763455 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761283 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "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": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761419 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763455 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761283 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761555 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761555 ] } } , -{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761555 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759926 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.755991 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759926 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.480822, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754090 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.506399, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753005 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.506742, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.506742, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745404 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "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": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.753005 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745404 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745404 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747440 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747440 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747711 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747711 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "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": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741739 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741739 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736037 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736037 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "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": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742146 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735630 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "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": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735358 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753276 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753276 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751783 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "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": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.745811 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "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": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "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": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "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": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2894 }, "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": 2685 }, "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": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "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": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "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": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.744521 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740788 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.485628, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.752055 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750426 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750426 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748526 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745268 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748526 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746490 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745268 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.742960 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734272 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729656 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.486315, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734408 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729656 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728842 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724090 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724225 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728842 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724225 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726941 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.780959 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783130 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.777024 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773496 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773496 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773496 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.453699, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.786250 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779195 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781366 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773768 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779195 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.774446 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774311 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765626 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765490 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "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": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765626 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762098 ] } } -, -{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1636 }, "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": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762098 ] } } -, -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } -, -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764133 ] } } -, -{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756941 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "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": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754226 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1552 }, "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": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "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": 1314 }, "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": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758434 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758434 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "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": 193 }, "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": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758569 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758569 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "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": 197 }, "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": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "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": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.756533 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "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": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "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": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.762233 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "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": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "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": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "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": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "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": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1927 }, "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": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.758434 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756941 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "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": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754498 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754498 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "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": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.786928 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787335 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.786250 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782180 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778110 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778381 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775396 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778110 ] } } +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778381 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773089 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773089 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778788 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778788 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773768 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773903 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.774175 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773903 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.774175 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.774311 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774446 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.785165 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783130 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.438936, 37.780416 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783401 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.783401 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.434988, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.438936, 37.780416 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786114 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.780959 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.780959 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779195 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781366 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779195 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770783 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777838 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.774718 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777838 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770783 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770918 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775125 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775396 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.771054 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769290 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766440 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766440 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765897 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765762 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766847 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765897 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767119 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770376 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769968 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767119 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767119 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770376 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770240 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766305 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756398 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.759926 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768069 ] } } , -{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756398 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } , -{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754090 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768069 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765626 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.766712 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762098 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760605 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.769222 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764133 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753548 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760876 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756126 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760605 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755991 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753548 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745132 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748933 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760876 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756126 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754430 ] } } -, -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } -, -{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.750562 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750833 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.474127, 37.748797 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748661 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748865 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } -, -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } -, -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746761 ] } } -, -{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745132 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748933 ] } } -, -{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } -, -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.745064 ] } } -, -{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } -, -{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } -, -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } -, -{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } , { "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.750833 ] } } -, -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.749136 ] } } -, -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743368 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "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": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.739024 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.739024 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741196 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741196 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "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": 2552 }, "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": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "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": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3186 }, "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": 2973 }, "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": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "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": 2695 }, "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": 2748 }, "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": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739431 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739431 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "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": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751512 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751376 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "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": 2981 }, "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": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "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": 1512 }, "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": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "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": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745268 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745268 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "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": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "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": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "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": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "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": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.460051, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "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": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744182 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744182 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "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": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743503 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743503 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } -, -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2137 }, "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": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741942 ] } } , { "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736716 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736716 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732779 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "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": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.731150 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "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": 1107 }, "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": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731014 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731014 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731014 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.731014 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731285 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2688 }, "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": 1510 }, "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": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "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": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "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": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "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": 2879 }, "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": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "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": 2680 }, "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": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "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": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.727212 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "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": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.474642, 37.727212 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "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": 296 }, "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": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721102 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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 Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } , { "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", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "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": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "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": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "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": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734408 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734408 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.732643 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732643 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732643 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731285 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724904 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724361 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "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": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "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": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751783 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.750426 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.750426 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.750697 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746490 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747168 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746897 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746897 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } , -{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.737802 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736852 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.448034, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736580 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736852 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736580 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745268 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.748526 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746897 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.749476 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745268 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751919 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.749476 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751919 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751376 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.748661 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747847 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751512 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749611 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.748661 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743639 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "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": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736852 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.727620 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "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": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "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": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } -, -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } -, -{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "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": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "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": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "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": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "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": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728977 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728842 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728842 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727755 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730335 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "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": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "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": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733458 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732372 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.433443, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.433443, 37.732507 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "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": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.725719 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "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": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "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": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "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": 1987 }, "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": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "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": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "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": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "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": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.724293 ] } } , { "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": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724565 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726330 ] } } -, -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726194 ] } } -, -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722800 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721646 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } -, -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.806326 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807004 ] } } -, -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806732 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805647 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.806326 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806190 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807004 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805512 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.806054 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.807275 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807817 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806190 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807817 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.806054 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806868 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807817 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801578 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801714 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798187 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.805105 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804834 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800493 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.798459 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800493 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.798459 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.796424 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790727 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794932 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794932 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.796424 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.796153 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794932 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794932 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.796153 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793847 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3225 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791405 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791405 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.790455 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791405 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791405 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.790455 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.804766 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802935 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2561 }, "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": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805241 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "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", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 20 }, "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": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.804223 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.804223 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.801036 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.801036 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "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": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "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": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799137 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "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": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798323 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "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": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "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": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802799 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802799 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802121 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804834 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.802799 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802121 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.801172 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.802799 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.802935 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.801172 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800086 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800086 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.799001 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.800222 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.800222 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.798187 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797374 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797238 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794661 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793847 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793847 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792897 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.790727 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789641 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789506 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789370 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790998 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789641 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791812 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792083 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795068 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.796017 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789234 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796153 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.796017 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795475 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796424 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796153 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796221 ] } } +{ "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": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795475 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796424 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795339 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.788828 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.808224 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807275 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.806597 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.806597 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.788828 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801443 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807275 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.807207 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.806597 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803477 ] } } +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801443 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799408 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799137 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799273 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799408 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800629 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797170 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801443 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.799679 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } , -{ "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": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800629 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798323 ] } } , -{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796831 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801443 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794661 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.802935 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.795339 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.799679 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792897 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800629 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796831 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.794728 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792897 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792626 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792897 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } +{ "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": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796085 ] } } +{ "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": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792897 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789099 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792626 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792219 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789506 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788556 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795881 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789234 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789099 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792897 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788421 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794796 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.400312, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789506 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } , -{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788556 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795881 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.790998 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.789777 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792897 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795068 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.790862 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793168 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793168 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793168 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793236 ] } } -, -{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.790998 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } -, -{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.789777 ] } } -, -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788624 ] } } -, -{ "type": "Feature", "properties": { "name": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.792015 ] } } -, -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790320 ] } } -, -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790320 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.791337 ] } } -, -{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.791134 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "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": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789370 ] } } , { "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, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789099 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789099 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788963 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.799001 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.799544 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "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": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797781 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797102 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797102 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797238 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "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": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "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": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.792626 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.792626 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "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": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "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": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.792558 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793440 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } -, -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.794118 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.794118 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793915 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793033 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791676 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791676 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789234 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789506 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788556 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789641 ] } } , -{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.791812 ] } } +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789506 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788556 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.790862 ] } } +{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.791812 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3130 }, "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": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.790862 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790591 ] } } +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790727 ] } } , -{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790591 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3122 }, "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": 2904 }, "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": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788828 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788692 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788828 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "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": 1030 }, "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": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790591 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790591 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.790455 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828158 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828158 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "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": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 216 }, "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": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828430 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824497 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828294 ] } } +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824497 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } , -{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.372675, 37.824023 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823277 ] } } -, -{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } -, -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "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": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.373877, 37.823548 ] } } , { "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824565 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.829243 ] } } -, -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } -, -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } -, -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.368898, 37.823616 ] } } -, -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825311 ] } } -, -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818531 ] } } -, -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } -, -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.366152, 37.819887 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.818328 ] } } -, -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813039 ] } } -, -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813107 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.825175 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.816226 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.812022 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818531 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811886 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.363749, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.364264, 37.811344 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.366152, 37.819887 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813107 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820768 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.812022 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811886 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.364264, 37.811344 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810530 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.782044 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785436 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.781909 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785436 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777024 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.776074 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.775803 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.772411 ] } } , -{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774175 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.786793 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782180 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780280 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780145 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780280 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "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": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783265 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.787335 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "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": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.786793 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.786793 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "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": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "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": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787200 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "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": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2791 }, "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": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "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": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "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": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "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": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3107 }, "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": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "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": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.778381 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.778381 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "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": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "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": 2500 }, "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": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775192 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "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": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775328 ] } } , { "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.775532 ] } } -, -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775532 ] } } -, -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775396 ] } } -, -{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778924 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777703 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777567 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.773361 ] } } +{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779195 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772139 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779195 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767526 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.766305 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.766305 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.764405 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.762776 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769833 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769833 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.758298 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757348 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757212 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757348 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756669 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756669 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.761419 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754769 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.755583 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.755583 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768611 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768611 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766712 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766712 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767119 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768476 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768476 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765083 ] } } +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765083 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.763862 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770376 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769833 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769697 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.763862 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768069 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768476 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768476 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762233 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762233 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.763998 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762912 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "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": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3147 }, "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": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758841 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758841 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1823 }, "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": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755176 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "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": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "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": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758976 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758976 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758976 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "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": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758841 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 560 }, "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": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "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": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "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": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "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": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783944 ] } } -, -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } -, -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "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": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784825 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784486 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "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": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.786386 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782723 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "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": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786521 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787878 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780280 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780416 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.780416 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780280 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.782180 ] } } +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780416 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.780416 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781773 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776617 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775532 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772547 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772547 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.771461 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777974 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773496 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773496 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "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": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 3233 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782723 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783265 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "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": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "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": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "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": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777431 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "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": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777024 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "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": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775803 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776074 ] } } -, -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "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": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } -, -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773089 ] } } -, -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773089 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "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": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "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": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771190 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771190 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "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": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "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": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762233 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.763319 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762233 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "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": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763591 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763523 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762233 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.761826 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763523 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757212 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755855 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.759655 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755176 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759655 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.759655 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759655 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754498 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757212 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754905 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Carolina St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754905 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3192 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769561 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769697 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769561 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764405 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760062 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759926 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760062 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755448 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755991 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760605 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.758026 ] } } , -{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760605 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.757551 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.746761 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751919 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755312 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.749204 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751919 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.737123 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.737123 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742146 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.742146 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.737123 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742146 ] } } +{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742282 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739024 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752055 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.752190 ] } } , -{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739024 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.737463 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.748661 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.752190 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.746218 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748118 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746761 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3243 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.746218 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744318 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.739295 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739295 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749204 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.744182 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.739024 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748118 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746897 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744318 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.739024 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.744182 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739567 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735223 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.735630 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735223 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733186 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735087 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.728706 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733458 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.730471 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735223 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735087 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.724633 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.728706 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724768 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725176 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } , -{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724768 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722528 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } -, -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "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": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } -, -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.724633 ] } } -, -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724768 ] } } -, -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725176 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725447 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "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": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } , @@ -11960,1023 +11222,969 @@ , { "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735766 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735087 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732643 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735087 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732779 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732507 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732779 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734951 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725855 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726398 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726398 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726398 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "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": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.753005 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753276 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.753005 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751376 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753276 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751376 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.751919 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.751919 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "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": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "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": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2636 }, "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": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742825 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "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": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738345 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "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": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737938 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742553 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742553 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743911 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743911 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743911 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743911 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739159 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.742282 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739159 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739567 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752190 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752190 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "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": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.747236 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.747236 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750426 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737123 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.736852 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737123 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.736852 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744046 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744046 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742960 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736309 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.736309 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734272 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732372 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732372 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733186 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727348 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730131 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.727348 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735358 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727755 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727620 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729113 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726262 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726126 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727620 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.726534 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725040 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726126 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.726534 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725040 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726398 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726941 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.720423 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726398 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735766 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733186 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735766 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730471 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } -, -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } -, -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722053 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } -, -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } -, -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } -, -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753140 ] } } -, -{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } -, -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.749069 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749069 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.746015 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.746082 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740517 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742553 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.383661, 37.742553 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.746082 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743911 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.383146, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740517 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742553 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743911 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.739024 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743775 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.739024 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.381773, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.732372 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.735833 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.385378, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729520 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.385378, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.380056, 37.733458 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732372 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.380056, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734408 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732372 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734408 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.730742 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730607 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728706 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.380228, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730607 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.730064 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.380228, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727077 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.730064 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731964 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727077 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731964 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.372160, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729113 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725312 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725312 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "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": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.361002, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.717029 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.717029 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1502 }, "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": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1501 }, "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": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "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": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714584 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "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": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.717979 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "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": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 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": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "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": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "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": 301 }, "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": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "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": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "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": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "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": 2108 }, "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": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "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": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "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": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "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": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "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": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "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": 2886 }, "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": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "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": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "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": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "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": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714720 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "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": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "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": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715739 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717843 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717843 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "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": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } -, -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } -, -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "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": 3025 }, "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": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762641 ] } } , { "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778517 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } ] } ] } , @@ -12984,15 +12192,15 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "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", "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, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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, "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, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json index 377adab44..a906eea36 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json @@ -9,7 +9,7 @@ "maxzoom": "4", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":172},{\"dropped_by_rate\":203},{\"dropped_by_rate\":187},{\"dropped_by_rate\":168},{}]", +"strategies": "[{\"dropped_by_rate\":172},{\"dropped_by_rate\":203},{\"dropped_by_rate\":183,\"tiny_polygons\":1},{\"dropped_by_rate\":148},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,13 +17,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.830078, 20.303418 ], [ -155.214844, 19.973349 ], [ -154.775391, 19.476950 ], [ -155.654297, 18.895893 ], [ -155.917969, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.830078, 19.973349 ], [ -155.830078, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.005859, 20.797201 ], [ -156.445312, 20.550509 ], [ -156.708984, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -156.796875, 21.043491 ], [ -157.324219, 21.125498 ], [ -157.236328, 21.207459 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.675781, 21.289374 ], [ -158.115234, 21.289374 ], [ -158.291016, 21.616579 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.345703, 22.187405 ], [ -159.345703, 21.943046 ], [ -159.433594, 21.861499 ], [ -159.785156, 22.024546 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.833984, 49.382373 ], [ -94.658203, 48.864715 ], [ -94.306641, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.791016, 48.283193 ], [ -89.560547, 47.989922 ], [ -89.296875, 47.989922 ], [ -88.417969, 48.283193 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.619261 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.437857 ], [ -84.375000, 46.377254 ], [ -84.111328, 46.498392 ], [ -84.111328, 46.255847 ], [ -83.847656, 46.134170 ], [ -83.583984, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.583984, 45.828799 ], [ -82.529297, 45.336702 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.244141, 42.358544 ], [ -78.925781, 42.875964 ], [ -79.189453, 43.452919 ], [ -78.750000, 43.644026 ], [ -76.816406, 43.644026 ], [ -76.464844, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.367188, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.890008 ], [ -69.960938, 46.679594 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.159840 ], [ -68.203125, 47.338823 ], [ -67.763672, 47.040182 ], [ -67.763672, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.777936 ], [ -68.027344, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.488281, 41.771312 ], [ -70.048828, 41.771312 ], [ -70.224609, 42.163403 ], [ -69.873047, 41.902277 ], [ -69.960938, 41.640078 ], [ -72.861328, 41.244772 ], [ -73.740234, 40.913513 ], [ -72.246094, 41.112469 ], [ -71.982422, 40.913513 ], [ -73.300781, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.916016, 40.780541 ], [ -74.267578, 40.446947 ], [ -73.916016, 40.446947 ], [ -74.179688, 39.707187 ], [ -74.882812, 38.959409 ], [ -74.970703, 39.164141 ], [ -75.498047, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.754083 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.230328 ], [ -75.761719, 37.926868 ], [ -76.201172, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.685510 ], [ -76.289062, 38.065392 ], [ -76.992188, 38.203655 ], [ -76.289062, 37.926868 ], [ -76.289062, 36.949892 ], [ -75.937500, 36.879621 ], [ -75.761719, 35.532226 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.046875, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.189453, 33.137551 ], [ -80.332031, 32.472695 ], [ -81.298828, 31.428663 ], [ -81.474609, 30.751278 ], [ -81.298828, 30.069094 ], [ -80.507812, 28.459033 ], [ -80.507812, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.799891 ], [ -80.419922, 25.165173 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.165173 ], [ -81.298828, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.880859, 27.916767 ], [ -82.617188, 28.536275 ], [ -82.968750, 29.075375 ], [ -83.671875, 29.916852 ], [ -84.111328, 30.069094 ], [ -85.078125, 29.611670 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.372875 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.372875 ], [ -89.560547, 30.145127 ], [ -89.384766, 29.916852 ], [ -89.384766, 29.458731 ], [ -89.208984, 29.305561 ], [ -89.384766, 29.152161 ], [ -89.736328, 29.305561 ], [ -90.175781, 29.152161 ], [ -90.878906, 29.152161 ], [ -91.582031, 29.688053 ], [ -92.460938, 29.535230 ], [ -93.251953, 29.764377 ], [ -94.658203, 29.458731 ], [ -95.625000, 28.767659 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.382812, 26.667096 ], [ -97.119141, 25.878994 ], [ -97.558594, 25.799891 ], [ -99.052734, 26.352498 ], [ -99.492188, 27.527758 ], [ -100.107422, 28.071980 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.764377 ], [ -102.480469, 29.764377 ], [ -103.095703, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.414062, 29.535230 ], [ -105.029297, 30.675715 ], [ -106.523438, 31.728167 ], [ -108.193359, 31.728167 ], [ -108.281250, 31.353637 ], [ -111.005859, 31.353637 ], [ -114.785156, 32.546813 ], [ -114.697266, 32.694866 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.388672, 33.724340 ], [ -118.476562, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.322266, 34.452218 ], [ -120.585938, 34.597042 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.519531, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.837891, 39.774769 ], [ -124.365234, 40.313043 ], [ -124.189453, 41.112469 ], [ -124.189453, 41.967659 ], [ -124.541016, 42.747012 ], [ -124.101562, 43.707594 ], [ -123.925781, 45.521744 ], [ -124.101562, 46.860191 ], [ -124.716797, 48.166085 ], [ -124.541016, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.338823 ], [ -122.871094, 48.980217 ], [ -95.185547, 48.980217 ], [ -95.185547, 49.382373 ], [ -94.833984, 49.382373 ] ] ], [ [ [ -156.621094, 71.357067 ], [ -155.039062, 71.159391 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.902268 ], [ -152.226562, 70.815812 ], [ -152.226562, 70.612614 ], [ -150.732422, 70.436799 ], [ -149.677734, 70.524897 ], [ -147.568359, 70.199994 ], [ -145.722656, 70.110485 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.140364 ], [ -142.031250, 69.839622 ], [ -140.976562, 69.718107 ], [ -140.976562, 60.283408 ], [ -140.009766, 60.283408 ], [ -139.042969, 59.977005 ], [ -137.460938, 58.904646 ], [ -136.494141, 59.445075 ], [ -135.439453, 59.800634 ], [ -134.912109, 59.265881 ], [ -133.330078, 58.401712 ], [ -131.748047, 56.559482 ], [ -129.990234, 55.924586 ], [ -129.990234, 55.279115 ], [ -130.517578, 54.826008 ], [ -131.044922, 55.178868 ], [ -131.923828, 55.478853 ], [ -132.275391, 56.365250 ], [ -133.505859, 57.183902 ], [ -134.033203, 58.124320 ], [ -136.582031, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.833984, 59.534318 ], [ -142.558594, 60.064840 ], [ -143.964844, 59.977005 ], [ -145.898438, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.183594, 60.673179 ], [ -148.007812, 59.977005 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.355596 ], [ -151.699219, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.716198 ], [ -150.380859, 61.015725 ], [ -150.644531, 61.270233 ], [ -151.875000, 60.716198 ], [ -152.578125, 60.064840 ], [ -153.984375, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.124320 ], [ -156.269531, 57.421294 ], [ -156.533203, 56.992883 ], [ -158.115234, 56.462490 ], [ -158.466797, 55.973798 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.627996 ], [ -163.037109, 54.673831 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.572062 ], [ -162.861328, 55.329144 ], [ -161.806641, 55.875311 ], [ -160.576172, 56.022948 ], [ -160.048828, 56.413901 ], [ -158.642578, 56.992883 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.562995 ], [ -157.587891, 58.309489 ], [ -157.060547, 58.904646 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.768200 ], [ -159.082031, 58.401712 ], [ -159.697266, 58.950008 ], [ -159.960938, 58.585436 ], [ -160.312500, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.894531, 59.623325 ], [ -162.509766, 59.977005 ], [ -163.828125, 59.800634 ], [ -164.619141, 60.283408 ], [ -165.322266, 60.500525 ], [ -165.322266, 61.058285 ], [ -166.113281, 61.480760 ], [ -165.761719, 62.062733 ], [ -164.882812, 62.633770 ], [ -164.531250, 63.154355 ], [ -163.740234, 63.233627 ], [ -163.037109, 63.074866 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.751953, 63.782486 ], [ -160.927734, 64.206377 ], [ -161.542969, 64.396938 ], [ -160.751953, 64.774125 ], [ -161.367188, 64.774125 ], [ -162.421875, 64.548440 ], [ -162.773438, 64.320872 ], [ -163.564453, 64.548440 ], [ -164.970703, 64.434892 ], [ -166.464844, 64.699105 ], [ -166.816406, 65.072130 ], [ -168.134766, 65.658275 ], [ -166.728516, 66.089364 ], [ -164.443359, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.722541 ], [ -163.740234, 67.101656 ], [ -164.443359, 67.609221 ], [ -165.410156, 68.040461 ], [ -166.728516, 68.366801 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.125000, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.894531, 70.318738 ], [ -160.927734, 70.436799 ], [ -158.994141, 70.902268 ], [ -158.115234, 70.815812 ], [ -156.621094, 71.357067 ] ] ], [ [ [ -153.193359, 57.984808 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.610107 ], [ -153.017578, 57.136239 ], [ -153.984375, 56.752723 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.193359, 57.984808 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.430860 ], [ -168.662109, 63.312683 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.312683 ], [ -171.826172, 63.391522 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.370429 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.888937 ], [ -166.201172, 59.756395 ], [ -167.431641, 60.196156 ], [ -166.464844, 60.370429 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.009766, 51.454007 ], [ 5.625000, 51.013755 ], [ 6.152344, 50.792047 ], [ 6.064453, 50.120578 ], [ 5.800781, 50.064192 ], [ 5.712891, 49.553726 ], [ 4.833984, 50.007739 ], [ 4.306641, 49.894634 ], [ 3.164062, 50.792047 ], [ 2.636719, 50.792047 ], [ 2.548828, 51.124213 ], [ 3.339844, 51.344339 ], [ 4.042969, 51.289406 ], [ 5.009766, 51.454007 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.005904 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.439453, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.527344, 7.449624 ], [ 0.615234, 6.926427 ], [ 1.054688, 5.965754 ], [ -1.933594, 4.740675 ], [ -2.812500, 5.003394 ], [ -2.812500, 5.353521 ], [ -3.251953, 6.227934 ], [ -2.988281, 7.362467 ], [ -2.548828, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.900391, 10.919618 ], [ -0.791016, 10.919618 ], [ -0.439453, 11.092166 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ], [ 10.195312, 36.738884 ], [ 11.074219, 37.090240 ], [ 11.074219, 36.879621 ], [ 10.634766, 36.385913 ], [ 10.634766, 35.960223 ], [ 10.898438, 35.675147 ], [ 10.810547, 34.813803 ], [ 10.195312, 34.307144 ], [ 10.371094, 33.797409 ], [ 10.898438, 33.797409 ], [ 11.074219, 33.284620 ], [ 11.513672, 33.137551 ], [ 11.425781, 32.398516 ], [ 9.931641, 31.353637 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.524413 ], [ 9.492188, 30.297018 ], [ 9.052734, 32.101190 ], [ 8.437500, 32.472695 ], [ 8.437500, 32.768800 ], [ 7.646484, 33.358062 ], [ 7.558594, 34.089061 ], [ 8.173828, 34.669359 ], [ 8.349609, 35.460670 ], [ 8.261719, 36.456636 ], [ 8.437500, 36.949892 ], [ 9.492188, 37.370157 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.321911 ], [ 34.365234, 51.781436 ], [ 34.101562, 51.563412 ], [ 34.189453, 51.234407 ], [ 35.068359, 51.179343 ], [ 35.419922, 50.792047 ], [ 35.332031, 50.569283 ], [ 36.650391, 50.233152 ], [ 37.353516, 50.401515 ], [ 38.056641, 49.894634 ], [ 38.583984, 49.951220 ], [ 40.078125, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.902344, 48.224673 ], [ 39.726562, 47.872144 ], [ 38.759766, 47.813155 ], [ 38.232422, 47.517201 ], [ 38.232422, 47.100045 ], [ 37.441406, 47.040182 ], [ 36.738281, 46.679594 ], [ 35.859375, 46.619261 ], [ 34.980469, 46.255847 ], [ 34.980469, 45.644768 ], [ 35.507812, 45.398450 ], [ 36.562500, 45.460131 ], [ 36.298828, 45.089036 ], [ 35.244141, 44.964798 ], [ 33.925781, 44.339565 ], [ 33.310547, 44.590467 ], [ 33.574219, 45.026950 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.828799 ], [ 33.310547, 46.073231 ], [ 31.728516, 46.316584 ], [ 31.640625, 46.679594 ], [ 30.761719, 46.558860 ], [ 30.410156, 46.012224 ], [ 29.619141, 45.274886 ], [ 29.179688, 45.460131 ], [ 28.652344, 45.274886 ], [ 28.212891, 45.460131 ], [ 28.476562, 45.583290 ], [ 28.916016, 46.255847 ], [ 28.828125, 46.437857 ], [ 29.091797, 46.498392 ], [ 29.179688, 46.377254 ], [ 30.058594, 46.437857 ], [ 29.882812, 46.498392 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.920255 ], [ 29.443359, 47.338823 ], [ 29.091797, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.107431 ], [ 28.300781, 48.166085 ], [ 27.509766, 48.458352 ], [ 26.894531, 48.341646 ], [ 26.630859, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.224609, 47.872144 ], [ 24.873047, 47.754098 ], [ 24.433594, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.872144 ], [ 22.675781, 48.166085 ], [ 22.060547, 48.400032 ], [ 22.587891, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.466797, 50.289339 ], [ 23.906250, 50.401515 ], [ 23.994141, 50.680797 ], [ 23.554688, 51.563412 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 26.367188, 51.835778 ], [ 27.421875, 51.563412 ], [ 28.212891, 51.563412 ], [ 28.652344, 51.399206 ], [ 29.003906, 51.618017 ], [ 29.267578, 51.344339 ], [ 30.146484, 51.399206 ], [ 30.585938, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.937500, 52.052490 ], [ 32.167969, 52.052490 ], [ 32.431641, 52.268157 ], [ 32.695312, 52.214339 ], [ 33.750000, 52.321911 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.152344, 12.039321 ], [ 51.064453, 10.660608 ], [ 50.537109, 9.188870 ], [ 49.482422, 6.839170 ], [ 48.603516, 5.353521 ], [ 46.582031, 2.811371 ], [ 43.154297, 0.263671 ], [ 42.011719, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.878872 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.214943 ], [ 42.802734, 4.214943 ], [ 43.681641, 4.915833 ], [ 45.000000, 5.003394 ], [ 47.812500, 7.972198 ], [ 48.955078, 9.449062 ], [ 48.955078, 11.436955 ], [ 50.273438, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.152344, 12.039321 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.082031, 55.379110 ], [ 70.839844, 55.178868 ], [ 71.191406, 54.110943 ], [ 72.246094, 54.367759 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.488046 ], [ 74.355469, 53.540307 ], [ 76.904297, 54.470038 ], [ 76.552734, 54.162434 ], [ 77.783203, 53.383328 ], [ 80.068359, 50.847573 ], [ 80.595703, 51.399206 ], [ 81.914062, 50.792047 ], [ 83.408203, 51.069017 ], [ 83.935547, 50.903033 ], [ 84.462891, 50.289339 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.667628 ], [ 86.835938, 49.837982 ], [ 87.363281, 49.210420 ], [ 86.572266, 48.574790 ], [ 85.781250, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.166016, 46.980252 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.521744 ], [ 81.914062, 45.336702 ], [ 79.980469, 44.902578 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.488302 ], [ 79.101562, 42.875964 ], [ 76.025391, 43.004647 ], [ 75.673828, 42.875964 ], [ 74.179688, 43.325178 ], [ 73.652344, 43.068888 ], [ 73.476562, 42.488302 ], [ 71.806641, 42.811522 ], [ 71.191406, 42.682435 ], [ 70.927734, 42.293564 ], [ 70.400391, 42.098222 ], [ 69.082031, 41.376809 ], [ 68.642578, 40.647304 ], [ 68.291016, 40.647304 ], [ 68.027344, 41.112469 ], [ 66.708984, 41.178654 ], [ 66.533203, 41.967659 ], [ 66.005859, 41.967659 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.707594 ], [ 62.050781, 43.516689 ], [ 61.083984, 44.402392 ], [ 58.535156, 45.583290 ], [ 55.898438, 44.964798 ], [ 55.986328, 41.310824 ], [ 55.458984, 41.244772 ], [ 54.755859, 42.032974 ], [ 54.052734, 42.293564 ], [ 52.910156, 42.098222 ], [ 52.470703, 41.771312 ], [ 52.470703, 42.032974 ], [ 52.734375, 42.423457 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.361328, 44.276671 ], [ 50.273438, 44.590467 ], [ 51.240234, 44.527843 ], [ 51.328125, 45.274886 ], [ 52.207031, 45.398450 ], [ 53.085938, 45.274886 ], [ 53.261719, 46.255847 ], [ 53.085938, 46.860191 ], [ 52.031250, 46.800059 ], [ 51.152344, 47.040182 ], [ 50.009766, 46.619261 ], [ 49.130859, 46.377254 ], [ 48.603516, 46.558860 ], [ 48.691406, 47.100045 ], [ 48.076172, 47.754098 ], [ 47.285156, 47.694974 ], [ 46.494141, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.757812, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.603516, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.800781, 51.672555 ], [ 52.294922, 51.727028 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.677734, 50.569283 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.792047 ], [ 61.611328, 51.289406 ], [ 59.941406, 51.944265 ], [ 60.908203, 52.429222 ], [ 60.732422, 52.696361 ], [ 61.699219, 52.961875 ], [ 60.996094, 53.644638 ], [ 61.435547, 54.007769 ], [ 65.214844, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.203125, 54.977614 ], [ 69.082031, 55.379110 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.972741 ], [ 14.062500, -17.392579 ], [ 18.281250, -17.308688 ], [ 18.984375, -17.811456 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.308688 ], [ 24.697266, -17.392579 ], [ 25.048828, -17.560247 ], [ 23.554688, -18.312811 ], [ 23.203125, -17.895114 ], [ 21.621094, -18.229351 ], [ 20.917969, -18.229351 ], [ 20.917969, -21.779905 ], [ 19.863281, -21.861499 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.998532 ], [ 18.457031, -29.075375 ], [ 17.402344, -28.767659 ], [ 17.226562, -28.381735 ], [ 16.787109, -28.071980 ], [ 16.347656, -28.613459 ], [ 15.644531, -27.839076 ], [ 15.205078, -27.059126 ], [ 14.765625, -25.403585 ], [ 14.414062, -23.885838 ], [ 14.238281, -22.105999 ], [ 13.359375, -20.879343 ], [ 12.568359, -19.062118 ], [ 11.777344, -18.062312 ], [ 11.777344, -17.308688 ], [ 12.216797, -17.140790 ], [ 12.832031, -16.972741 ], [ 13.447266, -16.972741 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -8.233237 ], [ 32.167969, -8.928487 ], [ 33.222656, -9.709057 ], [ 33.486328, -10.487812 ], [ 33.134766, -11.609193 ], [ 33.310547, -12.468760 ], [ 32.958984, -12.811801 ], [ 32.695312, -13.752725 ], [ 33.222656, -14.008696 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.538376 ], [ 29.531250, -15.623037 ], [ 28.916016, -16.045813 ], [ 28.828125, -16.383391 ], [ 28.476562, -16.467695 ], [ 27.070312, -17.978733 ], [ 25.224609, -17.727759 ], [ 24.697266, -17.392579 ], [ 23.994141, -17.308688 ], [ 23.203125, -17.560247 ], [ 21.884766, -16.045813 ], [ 21.972656, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 24.082031, -12.211180 ], [ 23.906250, -11.695273 ], [ 23.994141, -11.264612 ], [ 23.906250, -10.919618 ], [ 24.257812, -10.919618 ], [ 24.345703, -11.264612 ], [ 25.400391, -11.350797 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.953349 ], [ 27.158203, -11.609193 ], [ 27.421875, -12.125264 ], [ 28.125000, -12.297068 ], [ 28.916016, -13.239945 ], [ 29.707031, -13.239945 ], [ 29.619141, -12.211180 ], [ 29.355469, -12.382928 ], [ 28.388672, -11.781325 ], [ 28.652344, -9.622414 ], [ 28.476562, -9.188870 ], [ 28.740234, -8.494105 ], [ 30.322266, -8.233237 ] ] ] } } ] } ] } , @@ -37,11 +37,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.262197 ], [ -155.214844, 19.973349 ], [ -154.819336, 19.518375 ], [ -155.522461, 19.062118 ], [ -155.698242, 18.895893 ], [ -155.917969, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.049805, 19.683970 ], [ -155.830078, 19.973349 ], [ -155.917969, 20.179724 ], [ -155.874023, 20.262197 ] ] ], [ [ [ -156.621094, 21.002471 ], [ -156.005859, 20.756114 ], [ -156.093750, 20.632784 ], [ -156.401367, 20.550509 ], [ -156.708984, 20.920397 ], [ -156.621094, 21.002471 ] ] ], [ [ [ -157.236328, 21.207459 ], [ -156.752930, 21.166484 ], [ -156.796875, 21.084500 ], [ -157.324219, 21.084500 ], [ -157.236328, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.631836, 21.330315 ], [ -157.719727, 21.248422 ], [ -158.115234, 21.330315 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -159.345703, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.861499 ], [ -159.785156, 22.065278 ], [ -159.609375, 22.228090 ], [ -159.345703, 22.228090 ] ] ], [ [ [ -94.833984, 49.382373 ], [ -94.658203, 48.835797 ], [ -94.306641, 48.661943 ], [ -92.592773, 48.458352 ], [ -91.625977, 48.136767 ], [ -90.834961, 48.253941 ], [ -89.604492, 48.019324 ], [ -89.252930, 48.019324 ], [ -88.374023, 48.312428 ], [ -84.858398, 46.890232 ], [ -84.770508, 46.649436 ], [ -84.550781, 46.528635 ], [ -84.594727, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.155273, 46.498392 ], [ -84.067383, 46.286224 ], [ -83.891602, 46.103709 ], [ -83.627930, 46.103709 ], [ -83.452148, 45.981695 ], [ -83.583984, 45.828799 ], [ -82.529297, 45.336702 ], [ -82.133789, 43.580391 ], [ -82.441406, 42.972502 ], [ -83.100586, 42.065607 ], [ -83.144531, 41.967659 ], [ -83.012695, 41.836828 ], [ -82.705078, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.254883, 42.195969 ], [ -80.244141, 42.358544 ], [ -78.925781, 42.875964 ], [ -79.013672, 43.261206 ], [ -79.189453, 43.452919 ], [ -78.706055, 43.612217 ], [ -76.816406, 43.612217 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.809122 ], [ -74.882812, 44.995883 ], [ -71.499023, 44.995883 ], [ -71.411133, 45.243953 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.679594 ], [ -69.213867, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.338823 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.308127 ], [ -70.092773, 43.675818 ], [ -70.795898, 42.875964 ], [ -70.839844, 42.326062 ], [ -70.488281, 41.804078 ], [ -70.092773, 41.771312 ], [ -70.180664, 42.130821 ], [ -69.873047, 41.934977 ], [ -69.960938, 41.640078 ], [ -70.620117, 41.475660 ], [ -71.103516, 41.508577 ], [ -71.850586, 41.310824 ], [ -72.861328, 41.211722 ], [ -73.696289, 40.913513 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.913513 ], [ -73.344727, 40.613952 ], [ -73.959961, 40.613952 ], [ -73.959961, 40.747257 ], [ -74.267578, 40.480381 ], [ -73.959961, 40.413496 ], [ -74.179688, 39.707187 ], [ -74.882812, 38.925229 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.232253 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.265310 ], [ -75.717773, 37.926868 ], [ -76.245117, 38.307181 ], [ -76.333008, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.065392 ], [ -76.992188, 38.238180 ], [ -76.289062, 37.926868 ], [ -76.245117, 36.949892 ], [ -75.981445, 36.879621 ], [ -75.717773, 35.532226 ], [ -76.376953, 34.813803 ], [ -77.387695, 34.524661 ], [ -78.046875, 33.906896 ], [ -78.530273, 33.870416 ], [ -79.057617, 33.504759 ], [ -79.189453, 33.174342 ], [ -80.288086, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.428663 ], [ -81.474609, 30.713504 ], [ -81.298828, 30.031055 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.459033 ], [ -80.507812, 28.033198 ], [ -80.068359, 26.863281 ], [ -80.112305, 25.799891 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.694336, 25.878994 ], [ -82.705078, 27.488781 ], [ -82.836914, 27.877928 ], [ -82.661133, 28.536275 ], [ -82.924805, 29.113775 ], [ -83.715820, 29.916852 ], [ -84.111328, 30.069094 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.410782 ], [ -87.539062, 30.259067 ], [ -88.417969, 30.372875 ], [ -89.165039, 30.297018 ], [ -89.604492, 30.145127 ], [ -89.428711, 29.878755 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.305561 ], [ -89.384766, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.131836, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.688053 ], [ -92.504883, 29.535230 ], [ -93.208008, 29.764377 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.458731 ], [ -95.581055, 28.729130 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.194877 ], [ -97.119141, 25.878994 ], [ -97.514648, 25.839449 ], [ -99.008789, 26.352498 ], [ -99.316406, 26.824071 ], [ -99.536133, 27.527758 ], [ -100.107422, 28.110749 ], [ -100.942383, 29.382175 ], [ -101.645508, 29.764377 ], [ -102.480469, 29.764377 ], [ -103.095703, 28.960089 ], [ -103.930664, 29.267233 ], [ -104.458008, 29.573457 ], [ -105.029297, 30.637912 ], [ -106.127930, 31.391158 ], [ -106.523438, 31.765537 ], [ -108.237305, 31.765537 ], [ -108.237305, 31.353637 ], [ -111.005859, 31.316101 ], [ -114.829102, 32.509762 ], [ -114.697266, 32.731841 ], [ -117.114258, 32.546813 ], [ -117.290039, 33.027088 ], [ -117.949219, 33.614619 ], [ -118.388672, 33.724340 ], [ -118.520508, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.452218 ], [ -120.629883, 34.597042 ], [ -120.761719, 35.137879 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.544577 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.099983 ], [ -123.706055, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.313043 ], [ -124.189453, 41.145570 ], [ -124.189453, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.707594 ], [ -123.881836, 45.521744 ], [ -124.057617, 46.860191 ], [ -124.409180, 47.724545 ], [ -124.672852, 48.195387 ], [ -124.584961, 48.370848 ], [ -123.134766, 48.048710 ], [ -122.563477, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.475586, 48.166085 ], [ -122.827148, 49.009051 ], [ -95.141602, 49.009051 ], [ -95.141602, 49.382373 ], [ -94.833984, 49.382373 ] ] ], [ [ [ -156.577148, 71.357067 ], [ -155.083008, 71.145195 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.887885 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.422079 ], [ -149.721680, 70.524897 ], [ -147.612305, 70.214875 ], [ -145.678711, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.569336, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.976562, 69.718107 ], [ -140.976562, 60.305185 ], [ -140.009766, 60.283408 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.556592 ], [ -137.460938, 58.904646 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.778522 ], [ -134.956055, 59.265881 ], [ -134.252930, 58.859224 ], [ -133.374023, 58.401712 ], [ -131.704102, 56.559482 ], [ -129.990234, 55.924586 ], [ -129.990234, 55.279115 ], [ -130.517578, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.503750 ], [ -132.231445, 56.365250 ], [ -133.549805, 57.183902 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.625977, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.877930, 59.534318 ], [ -142.558594, 60.086763 ], [ -143.964844, 59.998986 ], [ -145.942383, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.007812, 59.977005 ], [ -148.579102, 59.910976 ], [ -149.721680, 59.712097 ], [ -150.600586, 59.377988 ], [ -151.699219, 59.153403 ], [ -151.875000, 59.734253 ], [ -151.391602, 60.716198 ], [ -150.336914, 61.037012 ], [ -150.600586, 61.291349 ], [ -151.875000, 60.716198 ], [ -152.578125, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.533203, 56.968936 ], [ -158.115234, 56.462490 ], [ -158.422852, 55.998381 ], [ -159.609375, 55.553495 ], [ -160.268555, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.393352 ], [ -164.926758, 54.572062 ], [ -163.828125, 55.028022 ], [ -162.861328, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 55.998381 ], [ -160.048828, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.207710 ], [ -157.719727, 57.562995 ], [ -157.543945, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.608334 ], [ -158.510742, 58.790978 ], [ -159.038086, 58.424730 ], [ -159.697266, 58.927334 ], [ -159.960938, 58.562523 ], [ -160.356445, 59.063154 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.850586, 59.623325 ], [ -162.509766, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.261617 ], [ -165.322266, 60.500525 ], [ -165.366211, 61.079544 ], [ -166.113281, 61.501734 ], [ -165.717773, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.740234, 63.213830 ], [ -163.081055, 63.054959 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.450509 ], [ -160.751953, 63.763065 ], [ -160.971680, 64.225493 ], [ -161.499023, 64.396938 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.774125 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.420898, 64.680318 ], [ -166.860352, 65.090646 ], [ -168.090820, 65.676381 ], [ -166.684570, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.784180, 66.071546 ], [ -161.674805, 66.107170 ], [ -162.465820, 66.739902 ], [ -163.696289, 67.118748 ], [ -164.443359, 67.609221 ], [ -165.366211, 68.040461 ], [ -166.772461, 68.350594 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.168945, 69.364831 ], [ -162.949219, 69.854762 ], [ -161.894531, 70.333533 ], [ -160.927734, 70.451508 ], [ -159.038086, 70.887885 ], [ -158.115234, 70.830248 ], [ -156.577148, 71.357067 ] ] ], [ [ [ -153.237305, 57.961503 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.586559 ], [ -153.017578, 57.112385 ], [ -153.984375, 56.728622 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.961503 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.685248 ], [ -169.672852, 63.430860 ], [ -168.706055, 63.292939 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.683594, 63.371832 ], [ -171.562500, 63.312683 ], [ -171.782227, 63.411198 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.392148 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.933000 ], [ -167.431641, 60.217991 ], [ -166.464844, 60.392148 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.083984, 10.876465 ], [ -60.908203, 10.833306 ], [ -60.952148, 10.098670 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.655273, 10.358151 ], [ -61.699219, 10.746969 ], [ -61.083984, 10.876465 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.795898, 19.890723 ], [ -70.224609, 19.601194 ], [ -69.960938, 19.642588 ], [ -69.785156, 19.311143 ], [ -69.213867, 19.311143 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.979026 ], [ -68.334961, 18.604601 ], [ -68.686523, 18.187607 ], [ -69.169922, 18.437925 ], [ -69.609375, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.229351 ], [ -70.532227, 18.187607 ], [ -70.664062, 18.437925 ], [ -71.015625, 18.271086 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.674805, 18.312811 ], [ -71.938477, 18.604601 ], [ -71.718750, 18.771115 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.586914, 19.890723 ], [ -70.795898, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ], [ -13.710938, 12.254128 ], [ -13.842773, 12.125264 ], [ -13.754883, 11.824341 ], [ -13.886719, 11.695273 ], [ -14.106445, 11.695273 ], [ -14.370117, 11.523088 ], [ -14.677734, 11.523088 ], [ -15.117188, 11.049038 ], [ -15.644531, 11.436955 ], [ -16.083984, 11.523088 ], [ -16.303711, 11.824341 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.655273, 12.382928 ], [ -16.127930, 12.554564 ], [ -15.820312, 12.511665 ], [ -15.556641, 12.640338 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.410786 ], [ -4.921875, 24.966140 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.537109, 15.496032 ], [ -9.536133, 15.496032 ], [ -9.711914, 15.241790 ], [ -10.063477, 15.326572 ], [ -10.634766, 15.114553 ], [ -11.337891, 15.411319 ], [ -11.645508, 15.368950 ], [ -11.821289, 14.817371 ], [ -12.172852, 14.604847 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.299051 ], [ -14.589844, 16.594081 ], [ -15.117188, 16.594081 ], [ -15.600586, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.130262 ], [ -16.567383, 16.678293 ], [ -16.259766, 17.182779 ], [ -16.127930, 18.104087 ], [ -16.391602, 19.601194 ], [ -16.259766, 20.097206 ], [ -16.523438, 20.550509 ], [ -17.050781, 21.002471 ], [ -16.831055, 21.330315 ], [ -12.919922, 21.330315 ], [ -13.095703, 22.755921 ], [ -12.875977, 23.281719 ], [ -11.953125, 23.362429 ], [ -11.953125, 25.918526 ], [ -8.701172, 25.878994 ], [ -8.701172, 27.410786 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.295898, 51.344339 ], [ 3.515625, 51.316881 ], [ 3.515625, 50.429518 ], [ 3.120117, 50.792047 ], [ 2.680664, 50.792047 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.344339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.005904 ], [ 0.043945, 11.005904 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.185187 ], [ 0.351562, 9.449062 ], [ 0.483398, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.926427 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.483398, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.977539, 4.696879 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.227934 ], [ -2.988281, 7.362467 ], [ -2.548828, 8.233237 ], [ -2.944336, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.186523, 11.005904 ], [ -0.747070, 10.919618 ], [ -0.439453, 11.092166 ] ] ] } } ] } ] } , @@ -49,13 +49,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.087891, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.230469, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.947274 ], [ 138.603516, -66.895596 ], [ 139.921875, -66.878345 ], [ 140.800781, -66.826520 ], [ 143.085938, -66.791909 ], [ 144.360352, -66.843807 ], [ 145.502930, -66.912834 ], [ 146.206055, -67.238062 ], [ 145.986328, -67.609221 ], [ 146.645508, -67.892086 ], [ 148.842773, -68.382996 ], [ 151.479492, -68.720441 ], [ 152.490234, -68.879358 ], [ 153.632812, -68.895187 ], [ 154.291992, -68.560384 ], [ 155.170898, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.229744 ], [ 161.586914, -70.583418 ], [ 162.685547, -70.743478 ], [ 163.828125, -70.714471 ], [ 164.926758, -70.772443 ], [ 166.113281, -70.757966 ], [ 167.299805, -70.830248 ], [ 168.442383, -70.974028 ], [ 169.453125, -71.201920 ], [ 170.507812, -71.399165 ], [ 171.210938, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.387695, -74.164085 ], [ 166.113281, -74.378513 ], [ 165.629883, -74.775843 ], [ 164.970703, -75.140778 ], [ 164.223633, -75.464105 ], [ 163.828125, -75.866646 ], [ 163.564453, -76.247817 ], [ 163.476562, -76.689906 ], [ 163.476562, -77.068954 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.832589 ], [ 164.750977, -78.179588 ], [ 166.596680, -78.322757 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.163075 ], [ 160.927734, -79.734281 ], [ 160.751953, -80.201176 ], [ 159.785156, -80.949188 ], [ 161.103516, -81.281717 ], [ 161.630859, -81.691497 ], [ 162.509766, -82.063963 ], [ 163.696289, -82.396611 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.409180, -83.825220 ], [ 172.265625, -84.043447 ], [ 173.232422, -84.414502 ], [ 176.000977, -84.160849 ], [ 178.286133, -84.474065 ], [ 180.000000, -84.714152 ], [ 180.043945, -84.722243 ], [ 180.922852, -84.138452 ], [ 182.724609, -84.452865 ], [ 183.515625, -84.223108 ], [ 183.515625, -85.345325 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -3.032227, -71.286699 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 4.130859, -70.859087 ], [ 5.141602, -70.612614 ], [ 6.284180, -70.466207 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.900118 ], [ 8.481445, -70.155288 ], [ 9.536133, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.641769 ], [ 12.392578, -70.244604 ], [ 13.447266, -69.975493 ], [ 14.721680, -70.035597 ], [ 15.117188, -70.407348 ], [ 15.952148, -70.035597 ], [ 17.050781, -69.915214 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.900118 ], [ 20.390625, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.928711, -70.407348 ], [ 22.587891, -70.699951 ], [ 23.686523, -70.524897 ], [ 24.829102, -70.480896 ], [ 27.114258, -70.466207 ], [ 29.135742, -70.214875 ], [ 30.014648, -69.930300 ], [ 30.981445, -69.763757 ], [ 31.992188, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.310547, -68.831802 ], [ 33.881836, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.166992, -69.240579 ], [ 37.221680, -69.162558 ], [ 37.924805, -69.519147 ], [ 38.671875, -69.778952 ], [ 39.682617, -69.534518 ], [ 40.034180, -69.115611 ], [ 40.913086, -68.926811 ], [ 41.967773, -68.608521 ], [ 44.121094, -68.269387 ], [ 46.494141, -67.609221 ], [ 47.460938, -67.726108 ], [ 48.999023, -67.084550 ], [ 49.921875, -67.118748 ], [ 50.756836, -66.878345 ], [ 50.932617, -66.530768 ], [ 51.811523, -66.249163 ], [ 52.602539, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ], [ 56.337891, -65.982270 ], [ 57.172852, -66.249163 ], [ 57.260742, -66.687784 ], [ 58.139648, -67.016009 ], [ 58.754883, -67.289015 ], [ 59.941406, -67.407487 ], [ 60.600586, -67.676085 ], [ 61.435547, -67.958148 ], [ 62.402344, -68.007571 ], [ 63.193359, -67.825836 ], [ 64.072266, -67.407487 ], [ 64.995117, -67.625954 ], [ 66.928711, -67.858985 ], [ 67.895508, -67.941650 ], [ 68.906250, -67.941650 ], [ 69.697266, -68.974164 ], [ 69.697266, -69.224997 ], [ 69.565430, -69.672358 ], [ 68.598633, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.699951 ], [ 69.082031, -70.685421 ], [ 68.950195, -71.074056 ], [ 68.422852, -71.441171 ], [ 67.939453, -71.856229 ], [ 68.730469, -72.168351 ], [ 69.873047, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.586914, -71.691293 ], [ 71.894531, -71.328950 ], [ 72.465820, -71.016960 ], [ 73.081055, -70.714471 ], [ 73.344727, -70.363091 ], [ 73.872070, -69.869892 ], [ 74.487305, -69.778952 ], [ 75.629883, -69.733334 ], [ 77.651367, -69.457554 ], [ 78.134766, -69.068563 ], [ 78.442383, -68.704486 ], [ 79.101562, -68.334376 ], [ 80.947266, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.373698 ], [ 82.792969, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.152898 ], [ 87.495117, -66.878345 ], [ 87.978516, -66.213739 ], [ 88.374023, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.692383, -67.152898 ], [ 90.615234, -67.238062 ], [ 91.582031, -67.118748 ], [ 92.592773, -67.187000 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.118748 ], [ 95.009766, -67.169955 ], [ 95.800781, -67.390599 ], [ 96.679688, -67.255058 ], [ 97.778320, -67.255058 ], [ 98.701172, -67.118748 ], [ 99.711914, -67.255058 ], [ 100.371094, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.601562, -66.302205 ], [ 102.832031, -65.567550 ], [ 103.491211, -65.694476 ], [ 104.238281, -65.982270 ], [ 106.171875, -66.930060 ], [ 108.105469, -66.947274 ], [ 110.258789, -66.705169 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.916992, -66.390361 ], [ 115.620117, -66.705169 ], [ 116.718750, -66.670387 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.838867, -67.272043 ], [ 120.893555, -67.187000 ], [ 122.343750, -66.565747 ], [ 123.222656, -66.478208 ], [ 124.145508, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.123047, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.726562, -66.583217 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 134.780273, -66.213739 ], [ 135.043945, -65.712557 ], [ 135.087891, -65.311829 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.638672, 3.513421 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 39.638672, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.292969, 3.513421 ], [ 15.424805, 3.337954 ], [ 15.864258, 3.030812 ], [ 15.908203, 2.547988 ], [ 15.996094, 2.284551 ], [ 15.952148, 1.713612 ], [ 14.326172, 2.240640 ], [ 13.095703, 2.284551 ], [ 12.963867, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.293945, 2.284551 ], [ 9.667969, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.536133, 3.513421 ], [ 15.292969, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.153320, 3.513421 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.064982 ], [ 44.077148, 1.054628 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 41.000977, -0.878872 ], [ 41.000977, 2.767478 ], [ 41.528320, 3.513421 ], [ 47.153320, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.366211, -8.233237 ], [ 30.761719, -8.363693 ], [ 31.552734, -8.754795 ], [ 32.211914, -8.928487 ], [ 32.783203, -9.232249 ], [ 33.222656, -9.665738 ], [ 33.486328, -10.531020 ], [ 33.310547, -10.790141 ], [ 33.134766, -11.609193 ], [ 33.310547, -12.425848 ], [ 33.002930, -12.768946 ], [ 32.695312, -13.710035 ], [ 33.222656, -13.966054 ], [ 30.190430, -14.817371 ], [ 30.278320, -15.496032 ], [ 29.531250, -15.665354 ], [ 28.959961, -16.045813 ], [ 28.828125, -16.383391 ], [ 28.476562, -16.467695 ], [ 27.597656, -17.308688 ], [ 27.026367, -17.936929 ], [ 26.718750, -17.978733 ], [ 26.367188, -17.853290 ], [ 25.268555, -17.727759 ], [ 24.697266, -17.350638 ], [ 24.038086, -17.308688 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.088042 ], [ 21.928711, -12.897489 ], [ 24.038086, -12.897489 ], [ 23.950195, -12.554564 ], [ 24.082031, -12.211180 ], [ 23.906250, -11.738302 ], [ 24.038086, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.257812, -10.962764 ], [ 24.301758, -11.264612 ], [ 24.785156, -11.221510 ], [ 25.400391, -11.350797 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.609193 ], [ 27.377930, -12.125264 ], [ 28.168945, -12.254128 ], [ 28.916016, -13.239945 ], [ 29.707031, -13.239945 ], [ 29.619141, -12.168226 ], [ 29.355469, -12.382928 ], [ 28.388672, -11.781325 ], [ 28.696289, -9.622414 ], [ 28.432617, -9.188870 ], [ 28.740234, -8.537565 ], [ 29.003906, -8.407168 ], [ 30.366211, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.620117, 3.513421 ], [ 115.532227, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.609375, 1.450040 ], [ 113.818359, 1.230374 ], [ 112.851562, 1.493971 ], [ 112.368164, 1.406109 ], [ 111.796875, 0.922812 ], [ 111.181641, 0.966751 ], [ 110.522461, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.687500, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.679687 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.378906, 3.513421 ], [ 115.620117, 3.513421 ] ] ], [ [ [ 103.403320, 3.513421 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.504085 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.274309 ], [ 103.535156, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.293945, 3.294082 ], [ 101.074219, 3.513421 ], [ 103.403320, 3.513421 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.832031, -16.930705 ], [ 13.447266, -16.972741 ], [ 14.062500, -17.434511 ], [ 14.194336, -17.350638 ], [ 18.281250, -17.308688 ], [ 18.940430, -17.811456 ], [ 21.401367, -17.936929 ], [ 24.038086, -17.308688 ], [ 24.697266, -17.350638 ], [ 25.092773, -17.602139 ], [ 25.092773, -17.644022 ], [ 24.521484, -17.895114 ], [ 24.213867, -17.895114 ], [ 23.598633, -18.271086 ], [ 23.203125, -17.853290 ], [ 21.665039, -18.229351 ], [ 20.917969, -18.271086 ], [ 20.874023, -21.820708 ], [ 19.907227, -21.861499 ], [ 19.907227, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.402344, -28.767659 ], [ 17.226562, -28.343065 ], [ 16.831055, -28.071980 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.839076 ], [ 15.205078, -27.098254 ], [ 14.985352, -26.115986 ], [ 14.765625, -25.403585 ], [ 14.414062, -23.845650 ], [ 14.370117, -22.674847 ], [ 14.282227, -22.105999 ], [ 13.886719, -21.698265 ], [ 13.359375, -20.879343 ], [ 12.612305, -19.062118 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.308688 ], [ 12.216797, -17.098792 ], [ 12.832031, -16.930705 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.020508, -2.591889 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.854492, -4.872048 ], [ 145.986328, -5.484768 ], [ 147.656250, -6.096860 ], [ 147.875977, -6.620957 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.406048 ], [ 148.095703, -8.059230 ], [ 148.754883, -9.102097 ], [ 149.326172, -9.058702 ], [ 149.282227, -9.535749 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.882275 ], [ 150.820312, -10.314919 ], [ 150.688477, -10.574222 ], [ 150.029297, -10.660608 ], [ 149.765625, -10.401378 ], [ 147.919922, -10.141932 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.755859, -7.623887 ], [ 143.920898, -7.928675 ], [ 143.305664, -8.233237 ], [ 143.437500, -8.971897 ], [ 142.646484, -9.318990 ], [ 142.075195, -9.145486 ], [ 141.020508, -9.102097 ], [ 141.020508, -2.591889 ] ] ], [ [ [ 152.138672, -4.171115 ], [ 152.358398, -4.302591 ], [ 152.314453, -4.872048 ], [ 152.006836, -5.484768 ], [ 151.479492, -5.572250 ], [ 151.303711, -5.834616 ], [ 150.249023, -6.315299 ], [ 149.721680, -6.315299 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.282227, -5.572250 ], [ 149.853516, -5.528511 ], [ 149.985352, -5.047171 ], [ 150.161133, -5.003394 ], [ 150.249023, -5.528511 ], [ 150.820312, -5.441022 ], [ 151.083984, -5.134715 ], [ 151.655273, -4.740675 ], [ 151.523438, -4.171115 ], [ 152.138672, -4.171115 ] ] ], [ [ [ 154.643555, -5.047171 ], [ 154.775391, -5.353521 ], [ 155.083008, -5.572250 ], [ 155.566406, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.839170 ], [ 155.610352, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.922045 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.047171 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 152.226562, -3.250209 ], [ 153.017578, -3.995781 ], [ 153.149414, -4.521666 ], [ 152.841797, -4.784469 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.391602, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.952148, -2.504085 ] ] ] ] } } ] } ] } , @@ -63,19 +61,21 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.404297, 43.004647 ], [ 9.580078, 42.163403 ], [ 9.228516, 41.376809 ], [ 8.789062, 41.574361 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.617791 ], [ 9.404297, 43.004647 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.680664, 50.792047 ], [ 3.120117, 50.792047 ], [ 3.603516, 50.373496 ], [ 4.306641, 49.894634 ], [ 4.790039, 49.979488 ], [ 5.668945, 49.525208 ], [ 5.888672, 49.439557 ], [ 6.196289, 49.468124 ], [ 6.679688, 49.210420 ], [ 8.085938, 49.009051 ], [ 7.602539, 48.341646 ], [ 7.470703, 47.606163 ], [ 7.207031, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.279229 ], [ 6.020508, 46.709736 ], [ 6.020508, 46.286224 ], [ 6.503906, 46.437857 ], [ 6.855469, 45.981695 ], [ 6.811523, 45.706179 ], [ 7.119141, 45.336702 ], [ 6.767578, 45.026950 ], [ 7.031250, 44.245199 ], [ 7.558594, 44.119142 ], [ 7.426758, 43.707594 ], [ 6.547852, 43.133061 ], [ 4.570312, 43.389082 ], [ 3.120117, 43.068888 ], [ 2.988281, 42.455888 ], [ 1.845703, 42.326062 ], [ 0.703125, 42.779275 ], [ 0.351562, 42.585444 ], [ 0.000000, 42.650122 ], [ -1.494141, 43.036776 ], [ -1.889648, 43.421009 ], [ -1.406250, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.241211, 47.070122 ], [ -2.944336, 47.576526 ], [ -3.515625, 47.694974 ], [ -3.515625, 48.864715 ], [ -3.295898, 48.893615 ], [ -1.625977, 48.632909 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.667628 ], [ 1.362305, 50.120578 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.625000, 51.041394 ], [ 6.152344, 50.792047 ], [ 6.064453, 50.120578 ], [ 5.800781, 50.092393 ], [ 5.668945, 49.525208 ], [ 4.790039, 49.979488 ], [ 4.306641, 49.894634 ], [ 3.603516, 50.373496 ], [ 3.120117, 50.792047 ], [ 2.680664, 50.792047 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.344339 ], [ 4.042969, 51.261915 ], [ 4.965820, 51.481383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.005904 ], [ 0.043945, 11.005904 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.185187 ], [ 0.351562, 9.449062 ], [ 0.483398, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.926427 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.527344, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.977539, 4.696879 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.227934 ], [ -2.988281, 7.362467 ], [ -2.548828, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.186523, 11.005904 ], [ -0.747070, 10.919618 ], [ -0.439453, 11.092166 ] ] ] } } , { "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.498392 ], [ 16.875000, 46.377254 ], [ 17.622070, 45.951150 ], [ 18.457031, 45.767523 ], [ 18.852539, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 19.028320, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.885742, 45.058001 ], [ 17.006836, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 44.995883 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.809122 ], [ 16.259766, 44.339565 ], [ 16.479492, 44.024422 ], [ 16.918945, 43.675818 ], [ 17.314453, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.457031, 42.488302 ], [ 17.534180, 42.843751 ], [ 16.918945, 43.197167 ], [ 16.040039, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.380859, 44.308127 ], [ 14.941406, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.282227, 45.243953 ], [ 13.974609, 44.809122 ], [ 13.666992, 45.120053 ], [ 13.666992, 45.490946 ], [ 14.414062, 45.460131 ], [ 14.589844, 45.644768 ], [ 14.941406, 45.460131 ], [ 15.336914, 45.460131 ], [ 15.336914, 45.736860 ], [ 15.688477, 45.828799 ], [ 15.776367, 46.225453 ], [ 16.567383, 46.498392 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.335224 ], [ 10.195312, 37.230328 ], [ 10.195312, 36.738884 ], [ 11.030273, 37.090240 ], [ 11.118164, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.942383, 35.710838 ], [ 10.810547, 34.813803 ], [ 10.151367, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.760882 ], [ 11.118164, 33.284620 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.361403 ], [ 10.942383, 32.063956 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.063477, 30.977609 ], [ 9.975586, 30.524413 ], [ 9.492188, 30.297018 ], [ 9.052734, 32.101190 ], [ 8.437500, 32.509762 ], [ 8.437500, 32.731841 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.089061 ], [ 8.129883, 34.669359 ], [ 8.393555, 35.460670 ], [ 8.217773, 36.421282 ], [ 8.437500, 36.949892 ], [ 9.492188, 37.335224 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.321911 ], [ 34.409180, 51.754240 ], [ 34.145508, 51.563412 ], [ 34.233398, 51.261915 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.764259 ], [ 35.375977, 50.569283 ], [ 36.650391, 50.233152 ], [ 37.397461, 50.373496 ], [ 38.012695, 49.922935 ], [ 38.583984, 49.922935 ], [ 40.078125, 49.610710 ], [ 40.078125, 49.296472 ], [ 39.682617, 48.777913 ], [ 39.902344, 48.224673 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.813155 ], [ 38.276367, 47.546872 ], [ 38.232422, 47.100045 ], [ 37.441406, 47.010226 ], [ 36.782227, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.980469, 46.286224 ], [ 35.024414, 45.644768 ], [ 35.507812, 45.398450 ], [ 36.518555, 45.460131 ], [ 36.342773, 45.120053 ], [ 35.244141, 44.933696 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.559163 ], [ 33.530273, 45.026950 ], [ 32.475586, 45.336702 ], [ 32.651367, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.310547, 46.073231 ], [ 31.728516, 46.316584 ], [ 31.684570, 46.709736 ], [ 30.761719, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.619141, 45.305803 ], [ 29.135742, 45.460131 ], [ 28.696289, 45.305803 ], [ 28.256836, 45.490946 ], [ 28.476562, 45.583290 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.255847 ], [ 28.872070, 46.437857 ], [ 29.091797, 46.528635 ], [ 29.179688, 46.377254 ], [ 29.750977, 46.346928 ], [ 30.014648, 46.407564 ], [ 29.838867, 46.528635 ], [ 29.926758, 46.679594 ], [ 29.575195, 46.920255 ], [ 29.399414, 47.338823 ], [ 29.047852, 47.517201 ], [ 29.135742, 47.842658 ], [ 28.652344, 48.107431 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.458352 ], [ 26.850586, 48.370848 ], [ 26.630859, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.224609, 47.901614 ], [ 24.873047, 47.724545 ], [ 24.389648, 47.989922 ], [ 23.774414, 47.989922 ], [ 23.159180, 48.107431 ], [ 22.719727, 47.872144 ], [ 22.631836, 48.136767 ], [ 22.104492, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.468124 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 24.038086, 50.708634 ], [ 23.510742, 51.563412 ], [ 23.994141, 51.618017 ], [ 24.565430, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.465820, 51.590723 ], [ 28.256836, 51.563412 ], [ 28.608398, 51.426614 ], [ 29.003906, 51.590723 ], [ 29.267578, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.316881 ], [ 30.629883, 51.808615 ], [ 30.937500, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.167969, 52.052490 ], [ 32.431641, 52.295042 ], [ 32.739258, 52.241256 ], [ 33.750000, 52.321911 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.501953, 12.854649 ], [ 14.897461, 12.211180 ], [ 14.941406, 11.566144 ], [ 14.941406, 10.876465 ], [ 15.468750, 9.968851 ], [ 14.897461, 9.968851 ], [ 14.633789, 9.925566 ], [ 14.194336, 10.012130 ], [ 13.974609, 9.535749 ], [ 14.545898, 8.971897 ], [ 14.985352, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.402648 ], [ 14.545898, 6.227934 ], [ 14.458008, 5.441022 ], [ 14.545898, 5.047171 ], [ 14.501953, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.424805, 3.337954 ], [ 15.864258, 3.030812 ], [ 15.908203, 2.547988 ], [ 15.996094, 2.284551 ], [ 15.952148, 1.713612 ], [ 14.326172, 2.240640 ], [ 13.095703, 2.284551 ], [ 12.963867, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.293945, 2.240640 ], [ 9.667969, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.964844, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.481445, 4.477856 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.536133, 6.446318 ], [ 10.107422, 7.057282 ], [ 10.502930, 7.057282 ], [ 11.074219, 6.620957 ], [ 11.733398, 6.970049 ], [ 11.821289, 7.406048 ], [ 12.084961, 7.798079 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.711359 ], [ 12.963867, 9.405710 ], [ 13.183594, 9.622414 ], [ 13.579102, 10.790141 ], [ 14.414062, 11.566144 ], [ 14.458008, 11.910354 ], [ 14.589844, 12.082296 ], [ 14.194336, 12.468760 ], [ 14.194336, 12.811801 ], [ 14.501953, 12.854649 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.402765 ], [ 23.862305, 19.559790 ], [ 23.906250, 15.623037 ], [ 23.027344, 15.665354 ], [ 22.587891, 14.944785 ], [ 22.324219, 14.306969 ], [ 22.500000, 14.093957 ], [ 22.192383, 13.795406 ], [ 22.280273, 13.368243 ], [ 22.060547, 12.940322 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.500000, 11.695273 ], [ 22.895508, 11.393879 ], [ 22.851562, 11.135287 ], [ 22.236328, 10.962764 ], [ 21.708984, 10.574222 ], [ 21.005859, 9.492408 ], [ 20.083008, 9.015302 ], [ 19.116211, 9.058702 ], [ 18.808594, 8.971897 ], [ 18.896484, 8.624472 ], [ 18.413086, 8.276727 ], [ 17.973633, 7.885147 ], [ 16.699219, 7.493196 ], [ 16.479492, 7.710992 ], [ 16.303711, 7.754537 ], [ 16.127930, 7.493196 ], [ 15.292969, 7.406048 ], [ 15.424805, 7.710992 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.971897 ], [ 13.974609, 9.535749 ], [ 14.194336, 10.012130 ], [ 14.633789, 9.925566 ], [ 14.897461, 9.968851 ], [ 15.468750, 9.968851 ], [ 14.941406, 10.876465 ], [ 14.941406, 11.566144 ], [ 14.897461, 12.211180 ], [ 14.501953, 12.854649 ], [ 14.589844, 13.325485 ], [ 13.974609, 13.368243 ], [ 13.974609, 14.008696 ], [ 13.535156, 14.349548 ], [ 13.974609, 15.665354 ], [ 15.249023, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.688477, 19.973349 ], [ 15.908203, 20.385825 ], [ 15.468750, 20.715015 ], [ 15.468750, 21.043491 ], [ 15.117188, 21.289374 ], [ 14.853516, 22.877440 ], [ 15.864258, 23.402765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.978733 ], [ 38.979492, 16.846605 ], [ 39.287109, 15.919074 ], [ 39.814453, 15.453680 ], [ 41.176758, 14.477234 ], [ 42.583008, 12.983148 ], [ 43.066406, 12.683215 ], [ 42.802734, 12.468760 ], [ 42.363281, 12.554564 ], [ 42.011719, 12.854649 ], [ 41.616211, 13.453737 ], [ 41.176758, 13.752725 ], [ 40.913086, 14.136576 ], [ 40.034180, 14.519780 ], [ 39.331055, 14.519780 ], [ 39.111328, 14.732386 ], [ 38.496094, 14.519780 ], [ 37.924805, 14.944785 ], [ 37.617188, 14.221789 ], [ 36.430664, 14.434680 ], [ 36.342773, 14.817371 ], [ 36.738281, 16.299051 ], [ 36.870117, 16.972741 ], [ 37.177734, 17.266728 ], [ 37.924805, 17.434511 ], [ 38.408203, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.924805, 14.944785 ], [ 38.496094, 14.519780 ], [ 39.111328, 14.732386 ], [ 39.331055, 14.519780 ], [ 40.034180, 14.519780 ], [ 40.913086, 14.136576 ], [ 41.176758, 13.752725 ], [ 41.616211, 13.453737 ], [ 42.011719, 12.854649 ], [ 42.363281, 12.554564 ], [ 41.660156, 11.609193 ], [ 41.748047, 11.049038 ], [ 42.319336, 11.049038 ], [ 42.539062, 11.092166 ], [ 42.758789, 10.919618 ], [ 42.583008, 10.574222 ], [ 43.286133, 9.535749 ], [ 43.681641, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.812500, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.681641, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.143555, 4.214943 ], [ 41.835938, 3.908099 ], [ 41.176758, 3.908099 ], [ 40.781250, 4.258768 ], [ 39.858398, 3.820408 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.671875, 3.601142 ], [ 38.144531, 3.601142 ], [ 36.870117, 4.434044 ], [ 36.166992, 4.434044 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.484768 ], [ 34.716797, 6.577303 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.574219, 7.710992 ], [ 32.958984, 7.798079 ], [ 33.310547, 8.363693 ], [ 33.837891, 8.363693 ], [ 33.969727, 8.667918 ], [ 33.969727, 9.579084 ], [ 34.277344, 10.617418 ], [ 34.716797, 10.919618 ], [ 34.848633, 11.307708 ], [ 35.244141, 12.082296 ], [ 35.859375, 12.554564 ], [ 36.254883, 13.581921 ], [ 36.430664, 14.434680 ], [ 37.617188, 14.221789 ], [ 37.924805, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.082031, 55.379110 ], [ 70.883789, 55.178868 ], [ 71.191406, 54.136696 ], [ 72.246094, 54.367759 ], [ 73.520508, 54.033586 ], [ 73.432617, 53.488046 ], [ 74.399414, 53.540307 ], [ 76.904297, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.958008, 50.819818 ], [ 83.364258, 51.069017 ], [ 83.935547, 50.875311 ], [ 84.418945, 50.317408 ], [ 85.122070, 50.120578 ], [ 85.561523, 49.696062 ], [ 86.835938, 49.837982 ], [ 87.363281, 49.210420 ], [ 86.616211, 48.545705 ], [ 85.781250, 48.458352 ], [ 85.737305, 47.457809 ], [ 85.166016, 47.010226 ], [ 83.188477, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.958008, 45.305803 ], [ 79.980469, 44.902578 ], [ 80.859375, 43.165123 ], [ 80.200195, 42.908160 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.488302 ], [ 79.145508, 42.843751 ], [ 77.651367, 42.972502 ], [ 75.981445, 42.972502 ], [ 75.629883, 42.875964 ], [ 74.223633, 43.293200 ], [ 73.652344, 43.100983 ], [ 73.476562, 42.488302 ], [ 71.850586, 42.843751 ], [ 71.191406, 42.714732 ], [ 70.971680, 42.261049 ], [ 70.400391, 42.065607 ], [ 69.082031, 41.376809 ], [ 68.642578, 40.680638 ], [ 68.247070, 40.647304 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.533203, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.907227, 43.739352 ], [ 63.193359, 43.644026 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.402392 ], [ 58.491211, 45.583290 ], [ 55.942383, 44.995883 ], [ 55.986328, 41.310824 ], [ 55.458984, 41.244772 ], [ 54.755859, 42.032974 ], [ 54.096680, 42.326062 ], [ 52.954102, 42.098222 ], [ 52.514648, 41.771312 ], [ 52.470703, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.514648, 42.779275 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.361328, 44.276671 ], [ 50.317383, 44.621754 ], [ 51.284180, 44.527843 ], [ 51.328125, 45.243953 ], [ 52.163086, 45.398450 ], [ 53.041992, 45.243953 ], [ 53.217773, 46.225453 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.800059 ], [ 51.196289, 47.040182 ], [ 50.053711, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.603516, 46.558860 ], [ 48.691406, 47.070122 ], [ 48.076172, 47.754098 ], [ 47.329102, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.065430, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.866317 ], [ 48.691406, 50.597186 ], [ 50.756836, 51.699800 ], [ 52.338867, 51.727028 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.541363 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.792047 ], [ 61.611328, 51.261915 ], [ 59.985352, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.996094, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.342149 ], [ 65.654297, 54.597528 ], [ 68.159180, 54.977614 ], [ 69.082031, 55.379110 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.064453, 10.617418 ], [ 50.844727, 10.271681 ], [ 50.537109, 9.188870 ], [ 49.438477, 6.795535 ], [ 48.603516, 5.353521 ], [ 47.724609, 4.214943 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.021065 ], [ 44.077148, 1.054628 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 41.000977, -0.878872 ], [ 41.000977, 2.767478 ], [ 41.835938, 3.908099 ], [ 42.143555, 4.214943 ], [ 42.758789, 4.258768 ], [ 43.681641, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.812500, 8.015716 ], [ 48.955078, 9.449062 ], [ 48.955078, 11.393879 ], [ 49.262695, 11.436955 ], [ 50.273438, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.471955 ], [ 102.744141, 21.657428 ], [ 103.227539, 20.756114 ], [ 104.458008, 20.756114 ], [ 104.809570, 19.890723 ], [ 104.194336, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.117188, 18.646245 ], [ 106.567383, 16.594081 ], [ 107.314453, 15.919074 ], [ 107.578125, 15.199386 ], [ 107.402344, 14.179186 ], [ 106.479492, 14.562318 ], [ 106.040039, 13.880746 ], [ 105.205078, 14.264383 ], [ 105.556641, 14.732386 ], [ 105.600586, 15.580711 ], [ 104.765625, 16.425548 ], [ 104.721680, 17.434511 ], [ 103.974609, 18.229351 ], [ 103.183594, 18.312811 ], [ 103.007812, 17.978733 ], [ 102.436523, 17.936929 ], [ 102.128906, 18.104087 ], [ 101.074219, 17.518344 ], [ 101.030273, 18.396230 ], [ 101.293945, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.097206 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.293945, 21.207459 ], [ 101.821289, 21.166484 ], [ 101.645508, 22.309426 ], [ 102.172852, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.114258, 6.926427 ], [ 117.641602, 6.402648 ], [ 117.685547, 5.965754 ], [ 119.179688, 5.397273 ], [ 119.091797, 5.003394 ], [ 118.432617, 4.959615 ], [ 118.608398, 4.477856 ], [ 117.905273, 4.127285 ], [ 117.026367, 4.302591 ], [ 115.883789, 4.302591 ], [ 115.532227, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.609375, 1.406109 ], [ 113.818359, 1.230374 ], [ 112.851562, 1.493971 ], [ 112.368164, 1.406109 ], [ 111.796875, 0.922812 ], [ 111.181641, 0.966751 ], [ 110.522461, 0.790990 ], [ 109.819336, 1.318243 ], [ 109.687500, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.679687 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 114.213867, 4.521666 ], [ 114.653320, 3.995781 ], [ 114.873047, 4.346411 ], [ 115.356445, 4.302591 ], [ 115.444336, 5.441022 ], [ 116.235352, 6.140555 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.926427 ] ] ], [ [ [ 100.283203, 6.620957 ], [ 101.074219, 6.184246 ], [ 101.162109, 5.703448 ], [ 101.821289, 5.790897 ], [ 102.128906, 6.227934 ], [ 102.392578, 6.140555 ], [ 102.963867, 5.528511 ], [ 103.403320, 4.872048 ], [ 103.447266, 4.171115 ], [ 103.315430, 3.732708 ], [ 103.491211, 2.767478 ], [ 103.842773, 2.504085 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.274309 ], [ 103.535156, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.293945, 3.250209 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.309766 ], [ 100.327148, 6.053161 ], [ 100.107422, 6.446318 ], [ 100.283203, 6.620957 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.020508, -2.591889 ], [ 143.481445, -3.513421 ], [ 141.020508, -3.513421 ], [ 141.020508, -2.591889 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 152.226562, -3.250209 ], [ 152.490234, -3.513421 ], [ 152.006836, -3.513421 ], [ 151.391602, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.952148, -2.504085 ] ] ] ] } } ] } ] } , @@ -95,13 +95,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.852051, 20.262197 ], [ -155.214844, 19.993998 ], [ -155.061035, 19.849394 ], [ -154.797363, 19.497664 ], [ -154.819336, 19.456234 ], [ -155.544434, 19.082884 ], [ -155.676270, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.895996, 19.331878 ], [ -156.071777, 19.704658 ], [ -156.027832, 19.808054 ], [ -155.852051, 19.973349 ], [ -155.917969, 20.179724 ], [ -155.852051, 20.262197 ] ] ], [ [ [ -156.599121, 21.002471 ], [ -156.247559, 20.920397 ], [ -155.983887, 20.756114 ], [ -156.071777, 20.632784 ], [ -156.401367, 20.571082 ], [ -156.577148, 20.776659 ], [ -156.708984, 20.858812 ], [ -156.708984, 20.920397 ], [ -156.599121, 21.002471 ] ] ], [ [ [ -157.258301, 21.207459 ], [ -156.752930, 21.166484 ], [ -156.796875, 21.063997 ], [ -157.324219, 21.105000 ], [ -157.258301, 21.207459 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.309846 ], [ -157.697754, 21.268900 ], [ -158.115234, 21.309846 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.587402, 22.228090 ], [ -159.367676, 22.207749 ], [ -159.345703, 21.983801 ], [ -159.455566, 21.881890 ], [ -159.807129, 22.065278 ], [ -159.587402, 22.228090 ] ] ], [ [ [ -94.812012, 49.382373 ], [ -94.636230, 48.835797 ], [ -94.328613, 48.661943 ], [ -93.625488, 48.603858 ], [ -92.614746, 48.443778 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.372875 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.582520, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.477861 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.783449 ], [ -93.845215, 29.707139 ], [ -94.680176, 29.477861 ], [ -95.603027, 28.729130 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.819645 ], [ -97.360840, 27.371767 ], [ -97.382812, 26.686730 ], [ -97.316895, 26.214591 ], [ -97.141113, 25.859224 ], [ -97.536621, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.008789, 26.372185 ], [ -99.294434, 26.843677 ], [ -99.514160, 27.547242 ], [ -100.107422, 28.110749 ], [ -100.458984, 28.690588 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.960089 ], [ -103.930664, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.699707, 30.126124 ], [ -105.029297, 30.637912 ], [ -105.622559, 31.090574 ], [ -106.149902, 31.391158 ], [ -106.501465, 31.746854 ], [ -108.237305, 31.746854 ], [ -108.237305, 31.334871 ], [ -111.027832, 31.334871 ], [ -114.807129, 32.528289 ], [ -114.719238, 32.713355 ], [ -117.114258, 32.528289 ], [ -117.290039, 33.045508 ], [ -117.949219, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.069824, 34.070862 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.739746, 35.155846 ], [ -121.706543, 36.155618 ], [ -122.541504, 37.544577 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.942321 ], [ -123.859863, 39.757880 ], [ -124.387207, 40.313043 ], [ -124.167480, 41.145570 ], [ -124.211426, 42.000325 ], [ -124.541016, 42.763146 ], [ -124.145508, 43.707594 ], [ -123.903809, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.387207, 47.724545 ], [ -124.694824, 48.180739 ], [ -124.562988, 48.370848 ], [ -123.112793, 48.034019 ], [ -122.585449, 47.100045 ], [ -122.343750, 47.353711 ], [ -122.497559, 48.180739 ], [ -122.827148, 48.994636 ], [ -95.163574, 48.994636 ], [ -95.163574, 49.382373 ], [ -94.812012, 49.382373 ] ] ], [ [ [ -140.998535, 67.204032 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.272515 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.556592 ], [ -137.438965, 58.904646 ], [ -136.472168, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.934082, 59.265881 ], [ -134.274902, 58.859224 ], [ -133.352051, 58.413223 ], [ -131.704102, 56.547372 ], [ -130.012207, 55.912273 ], [ -129.968262, 55.279115 ], [ -130.539551, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.491304 ], [ -132.253418, 56.365250 ], [ -133.527832, 57.171992 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.182289 ], [ -136.625977, 58.205450 ], [ -137.790527, 58.493694 ], [ -139.855957, 59.534318 ], [ -142.580566, 60.086763 ], [ -143.964844, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.007812, 59.977005 ], [ -148.557129, 59.910976 ], [ -149.721680, 59.701014 ], [ -150.600586, 59.366794 ], [ -151.721191, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.336914, 61.037012 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.064840 ], [ -154.006348, 59.344395 ], [ -153.281250, 58.859224 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.422852, 55.998381 ], [ -159.609375, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.213379, 55.366625 ], [ -162.224121, 55.028022 ], [ -163.059082, 54.686534 ], [ -164.772949, 54.406143 ], [ -164.948730, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.861328, 55.341642 ], [ -161.806641, 55.887635 ], [ -160.554199, 56.010666 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.719727, 57.562995 ], [ -157.543945, 58.332567 ], [ -157.038574, 58.915992 ], [ -158.181152, 58.619777 ], [ -158.510742, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.927334 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.345215, 58.665513 ], [ -161.960449, 58.665513 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.509766, 59.987998 ], [ -163.806152, 59.800634 ], [ -164.663086, 60.261617 ], [ -165.344238, 60.511343 ], [ -165.344238, 61.068917 ], [ -166.113281, 61.501734 ], [ -165.739746, 62.073026 ], [ -164.926758, 62.633770 ], [ -164.553223, 63.144431 ], [ -163.740234, 63.213830 ], [ -163.059082, 63.054959 ], [ -162.268066, 63.538763 ], [ -161.520996, 63.450509 ], [ -160.773926, 63.763065 ], [ -160.949707, 64.225493 ], [ -161.520996, 64.396938 ], [ -160.773926, 64.783488 ], [ -161.389160, 64.774125 ], [ -162.443848, 64.557881 ], [ -162.751465, 64.339908 ], [ -163.542480, 64.557881 ], [ -164.948730, 64.444372 ], [ -166.420898, 64.689713 ], [ -166.838379, 65.090646 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.465332, 66.574483 ], [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.080457 ], [ -161.674805, 66.116068 ], [ -162.202148, 66.513260 ], [ -162.487793, 66.739902 ], [ -163.718262, 67.118748 ], [ -163.850098, 67.204032 ], [ -140.998535, 67.204032 ] ] ], [ [ [ -153.215332, 57.973157 ], [ -152.556152, 57.903174 ], [ -152.138672, 57.586559 ], [ -152.995605, 57.112385 ], [ -154.006348, 56.728622 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.809651 ], [ -153.215332, 57.973157 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.101074, 63.587675 ], [ -170.485840, 63.694987 ], [ -169.672852, 63.430860 ], [ -168.684082, 63.292939 ], [ -168.771973, 63.184108 ], [ -169.519043, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.661621, 63.371832 ], [ -171.540527, 63.312683 ], [ -171.782227, 63.401361 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.179199, 59.756395 ], [ -166.838379, 59.944007 ], [ -167.453613, 60.207075 ], [ -166.464844, 60.381290 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.143066, 17.811456 ], [ -89.143066, 17.014768 ], [ -89.230957, 15.876809 ], [ -88.923340, 15.876809 ], [ -88.593750, 15.707663 ], [ -88.505859, 15.855674 ], [ -88.242188, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.143066, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.143066, 14.668626 ], [ -89.340820, 14.413400 ], [ -89.582520, 14.349548 ], [ -89.538574, 14.243087 ], [ -90.000000, 13.923404 ], [ -90.065918, 13.880746 ], [ -90.087891, 13.731381 ], [ -90.615234, 13.902076 ], [ -91.230469, 13.923404 ], [ -91.691895, 14.115267 ], [ -92.219238, 14.541050 ], [ -92.197266, 14.817371 ], [ -92.087402, 15.072124 ], [ -92.219238, 15.241790 ], [ -91.735840, 16.066929 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.404470 ], [ -90.593262, 16.467695 ], [ -90.703125, 16.678293 ], [ -91.076660, 16.909684 ], [ -91.450195, 17.245744 ], [ -90.988770, 17.245744 ], [ -90.988770, 17.811456 ], [ -89.143066, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.286133, 18.354526 ], [ -88.242188, 18.354526 ], [ -88.242188, 17.769612 ], [ -88.286133, 17.644022 ], [ -88.242188, 17.560247 ], [ -88.242188, 17.329664 ], [ -88.308105, 17.119793 ], [ -88.242188, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.256867 ], [ -88.725586, 16.235772 ], [ -88.923340, 15.876809 ], [ -89.230957, 15.876809 ], [ -89.143066, 17.014768 ], [ -89.143066, 17.957832 ], [ -89.033203, 17.999632 ], [ -88.835449, 17.874203 ], [ -88.483887, 18.479609 ], [ -88.308105, 18.500447 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 67.204032 ], [ -174.924316, 67.204032 ], [ -175.012207, 66.583217 ], [ -174.814453, 66.513260 ], [ -174.331055, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.848145, 66.912834 ], [ -171.013184, 66.513260 ], [ -169.892578, 65.973325 ], [ -170.881348, 65.540270 ], [ -172.529297, 65.440002 ], [ -172.551270, 64.463323 ], [ -172.946777, 64.254141 ], [ -173.891602, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.979004, 64.923542 ], [ -176.198730, 65.357677 ], [ -177.209473, 65.522068 ], [ -178.352051, 65.385147 ], [ -178.901367, 65.739656 ], [ -178.681641, 66.107170 ], [ -179.890137, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -181.296387, 64.529548 ], [ -181.757812, 64.557881 ], [ -181.757812, 67.204032 ], [ -180.000000, 67.204032 ] ] ], [ [ [ -181.757812, 64.120195 ], [ -181.691895, 64.072200 ], [ -181.098633, 63.253412 ], [ -180.637207, 62.985180 ], [ -180.527344, 62.562983 ], [ -180.769043, 62.298581 ], [ -181.757812, 62.420903 ], [ -181.757812, 64.120195 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.577148, 71.357067 ], [ -155.061035, 71.145195 ], [ -154.335938, 70.692688 ], [ -153.896484, 70.887885 ], [ -152.204590, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.429440 ], [ -149.721680, 70.532222 ], [ -147.612305, 70.214875 ], [ -145.678711, 70.117959 ], [ -144.909668, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.976562, 69.710489 ], [ -140.998535, 66.513260 ], [ -140.998535, 65.802776 ], [ -167.673340, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.465332, 66.574483 ], [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.080457 ], [ -161.674805, 66.116068 ], [ -162.202148, 66.513260 ], [ -162.487793, 66.731223 ], [ -163.718262, 67.118748 ], [ -164.421387, 67.617589 ], [ -165.388184, 68.040461 ], [ -166.772461, 68.358699 ], [ -166.201172, 68.879358 ], [ -164.421387, 68.911005 ], [ -163.168945, 69.372573 ], [ -162.927246, 69.854762 ], [ -161.916504, 70.333533 ], [ -160.927734, 70.444155 ], [ -159.038086, 70.887885 ], [ -158.115234, 70.823031 ], [ -156.577148, 71.357067 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.757812, 69.457554 ], [ -181.406250, 69.395783 ], [ -180.000000, 68.966279 ], [ -177.539062, 68.196052 ], [ -174.924316, 67.204032 ], [ -175.012207, 66.583217 ], [ -174.814453, 66.513260 ], [ -174.331055, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.058870 ], [ -171.848145, 66.912834 ], [ -171.013184, 66.513260 ], [ -169.892578, 65.973325 ], [ -170.288086, 65.802776 ], [ -178.857422, 65.802776 ], [ -178.681641, 66.107170 ], [ -179.890137, 65.874725 ], [ -179.824219, 65.802776 ], [ -180.000000, 65.802776 ], [ -181.757812, 65.802776 ], [ -181.757812, 69.457554 ] ] ], [ [ [ -180.000000, 71.517945 ], [ -179.868164, 71.559692 ], [ -179.011230, 71.552741 ], [ -177.583008, 71.265539 ], [ -177.670898, 71.130988 ], [ -178.681641, 70.895078 ], [ -180.000000, 70.830248 ], [ -181.098633, 70.779678 ], [ -181.274414, 71.095425 ], [ -180.000000, 71.517945 ] ] ] ] } } ] } ] } , @@ -114,8 +118,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.053711, 1.757537 ], [ -49.965820, 1.735574 ], [ -49.943848, 1.054628 ], [ -50.690918, 0.219726 ], [ -50.383301, -0.087891 ], [ -48.625488, -0.241699 ], [ -48.581543, -1.230374 ], [ -47.812500, -0.593251 ], [ -46.560059, -0.944781 ], [ -44.912109, -1.559866 ], [ -44.406738, -2.130856 ], [ -44.582520, -2.701635 ], [ -43.417969, -2.394322 ], [ -41.462402, -2.921097 ], [ -39.968262, -2.877208 ], [ -38.496094, -3.710782 ], [ -37.221680, -4.828260 ], [ -36.452637, -5.112830 ], [ -35.595703, -5.156599 ], [ -35.222168, -5.462896 ], [ -34.716797, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.045898, -11.049038 ], [ -37.683105, -12.168226 ], [ -38.430176, -13.047372 ], [ -38.671875, -13.068777 ], [ -38.957520, -13.795406 ], [ -38.869629, -15.665354 ], [ -39.265137, -17.874203 ], [ -39.572754, -18.271086 ], [ -39.748535, -19.601194 ], [ -40.781250, -20.899871 ], [ -40.935059, -21.943046 ], [ -41.748047, -22.370396 ], [ -41.989746, -22.978624 ], [ -43.066406, -22.978624 ], [ -44.648438, -23.362429 ], [ -45.351562, -23.805450 ], [ -46.472168, -24.086589 ], [ -47.636719, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.647461, -26.627818 ], [ -48.471680, -27.176469 ], [ -48.669434, -28.188244 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.228890 ], [ -50.690918, -30.977609 ], [ -51.569824, -31.784217 ], [ -52.250977, -32.249974 ], [ -52.712402, -33.192731 ], [ -53.371582, -33.779147 ], [ -53.657227, -33.211116 ], [ -53.217773, -32.731841 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.503629 ], [ -55.590820, -30.864510 ], [ -55.964355, -30.883369 ], [ -56.975098, -30.107118 ], [ -57.612305, -30.221102 ], [ -56.293945, -28.863918 ], [ -55.151367, -27.877928 ], [ -53.635254, -26.922070 ], [ -53.635254, -26.135714 ], [ -54.118652, -25.542441 ], [ -54.624023, -25.740529 ], [ -54.426270, -25.165173 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.026397 ], [ -54.645996, -23.845650 ], [ -55.019531, -24.006326 ], [ -55.393066, -23.966176 ], [ -55.524902, -23.584126 ], [ -55.612793, -22.654572 ], [ -55.788574, -22.350076 ], [ -56.469727, -22.085640 ], [ -56.887207, -22.289096 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.735566 ], [ -58.161621, -20.179724 ], [ -57.854004, -19.973349 ], [ -57.941895, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.722168, -17.560247 ], [ -58.271484, -17.266728 ], [ -58.381348, -16.888660 ], [ -58.227539, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.534668, -15.093339 ], [ -60.249023, -15.072124 ], [ -60.270996, -14.647368 ], [ -60.446777, -14.349548 ], [ -60.490723, -13.774066 ], [ -61.083984, -13.475106 ], [ -61.721191, -13.496473 ], [ -62.116699, -13.197165 ], [ -62.797852, -13.004558 ], [ -63.193359, -12.640338 ], [ -64.313965, -12.468760 ], [ -65.390625, -11.566144 ], [ -65.324707, -10.898042 ], [ -65.434570, -10.509417 ], [ -65.324707, -9.774025 ], [ -66.643066, -9.925566 ], [ -67.170410, -10.314919 ], [ -68.049316, -10.725381 ], [ -68.269043, -11.027472 ], [ -68.774414, -11.049038 ], [ -69.521484, -10.962764 ], [ -70.092773, -11.135287 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.492408 ], [ -71.301270, -10.077037 ], [ -72.180176, -10.055403 ], [ -72.553711, -9.514079 ], [ -73.234863, -9.470736 ], [ -73.015137, -9.037003 ], [ -73.564453, -8.428904 ], [ -73.981934, -7.536764 ], [ -73.718262, -7.340675 ], [ -73.718262, -6.926427 ], [ -73.125000, -6.642783 ], [ -73.212891, -6.096860 ], [ -72.971191, -5.747174 ], [ -72.883301, -5.287887 ], [ -71.740723, -4.587376 ], [ -70.927734, -4.412137 ], [ -70.795898, -4.258768 ], [ -69.895020, -4.302591 ], [ -69.433594, -1.559866 ], [ -69.411621, -1.120534 ], [ -69.565430, -0.549308 ], [ -70.026855, -0.197754 ], [ -70.026855, 0.000000 ], [ -70.004883, 0.549308 ], [ -69.455566, 0.703107 ], [ -69.257812, 0.615223 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.807129, 1.713612 ], [ -67.873535, 1.691649 ], [ -67.807617, 1.757537 ], [ -67.302246, 1.757537 ], [ -67.060547, 1.142502 ], [ -66.862793, 1.252342 ], [ -66.313477, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.346680, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.757537 ], [ -59.611816, 1.757537 ], [ -59.018555, 1.318243 ], [ -58.535156, 1.274309 ], [ -58.425293, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.656250, 1.691649 ], [ -57.568359, 1.757537 ], [ -50.053711, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.620605, -52.643063 ], [ -68.247070, -53.107217 ], [ -67.741699, -53.852527 ], [ -66.445312, -54.457267 ], [ -65.039062, -54.699234 ], [ -65.500488, -55.203953 ], [ -66.445312, -55.254077 ], [ -66.950684, -54.901882 ], [ -67.565918, -54.876607 ], [ -68.620605, -54.876607 ], [ -68.620605, -52.643063 ] ] ], [ [ [ -66.269531, -21.841105 ], [ -64.951172, -22.085640 ], [ -64.379883, -22.796439 ], [ -63.984375, -22.004175 ], [ -62.841797, -22.044913 ], [ -62.687988, -22.248429 ], [ -60.842285, -23.885838 ], [ -60.029297, -24.026397 ], [ -58.798828, -24.766785 ], [ -57.766113, -25.165173 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.391278 ], [ -54.777832, -26.627818 ], [ -54.624023, -25.740529 ], [ -54.118652, -25.542441 ], [ -53.635254, -26.135714 ], [ -53.635254, -26.922070 ], [ -55.151367, -27.877928 ], [ -56.293945, -28.863918 ], [ -57.612305, -30.221102 ], [ -57.875977, -31.015279 ], [ -58.139648, -32.045333 ], [ -58.139648, -33.045508 ], [ -58.337402, -33.266250 ], [ -58.491211, -34.434098 ], [ -57.216797, -35.281501 ], [ -57.348633, -35.978006 ], [ -56.733398, -36.421282 ], [ -56.777344, -36.897194 ], [ -57.744141, -38.186387 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.116699, -39.419221 ], [ -62.336426, -40.178873 ], [ -62.138672, -40.680638 ], [ -62.753906, -41.029643 ], [ -63.764648, -41.162114 ], [ -64.731445, -40.797177 ], [ -65.104980, -41.062786 ], [ -64.973145, -42.065607 ], [ -64.291992, -42.358544 ], [ -63.742676, -42.049293 ], [ -63.457031, -42.569264 ], [ -64.379883, -42.875964 ], [ -65.170898, -43.500752 ], [ -65.324707, -44.496505 ], [ -65.566406, -45.042478 ], [ -66.511230, -45.042478 ], [ -67.280273, -45.552525 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.040182 ], [ -65.632324, -47.234490 ], [ -65.983887, -48.136767 ], [ -67.170410, -48.705463 ], [ -67.807617, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.125977, -50.736455 ], [ -68.818359, -51.767840 ], [ -68.137207, -52.348763 ], [ -69.499512, -52.146973 ], [ -71.916504, -52.011937 ], [ -72.333984, -51.426614 ], [ -72.312012, -50.680797 ], [ -72.971191, -50.736455 ], [ -73.322754, -50.387508 ], [ -73.410645, -49.325122 ], [ -72.641602, -48.879167 ], [ -72.333984, -48.239309 ], [ -72.443848, -47.739323 ], [ -71.916504, -46.890232 ], [ -71.542969, -45.567910 ], [ -71.652832, -44.980342 ], [ -71.213379, -44.793531 ], [ -71.323242, -44.402392 ], [ -71.784668, -44.213710 ], [ -71.455078, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.136230, -42.261049 ], [ -71.740723, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.674805, -39.808536 ], [ -71.411133, -38.925229 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.579413 ], [ -71.125488, -36.668419 ], [ -70.356445, -36.013561 ], [ -70.378418, -35.173808 ], [ -69.807129, -34.198173 ], [ -69.807129, -33.284620 ], [ -70.070801, -33.100745 ], [ -70.532227, -31.372399 ], [ -69.916992, -30.334954 ], [ -70.004883, -29.363027 ], [ -69.653320, -28.459033 ], [ -68.994141, -27.527758 ], [ -68.291016, -26.902477 ], [ -68.598633, -26.509905 ], [ -68.378906, -26.194877 ], [ -68.422852, -24.527135 ], [ -67.324219, -24.026397 ], [ -66.972656, -22.998852 ], [ -67.104492, -22.735657 ], [ -66.269531, -21.841105 ] ] ] ] } } ] } ] } , @@ -123,18 +125,20 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.374023, 48.297812 ], [ -84.880371, 46.905246 ], [ -84.770508, 46.634351 ], [ -84.550781, 46.543750 ], [ -84.594727, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.133301, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.118942 ], [ -83.605957, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.583984, 45.813486 ], [ -82.551270, 45.352145 ], [ -82.133789, 43.564472 ], [ -82.419434, 42.972502 ], [ -82.902832, 42.423457 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.967659 ], [ -83.034668, 41.836828 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.212245 ], [ -80.244141, 42.358544 ], [ -78.925781, 42.859860 ], [ -78.925781, 42.956423 ], [ -79.013672, 43.261206 ], [ -79.167480, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.816406, 43.628123 ], [ -76.486816, 44.008620 ], [ -75.322266, 44.809122 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.081543, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.189712 ], [ -68.225098, 47.353711 ], [ -67.785645, 47.070122 ], [ -67.785645, 45.706179 ], [ -67.126465, 45.135555 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.675818 ], [ -70.817871, 42.859860 ], [ -70.817871, 42.326062 ], [ -70.488281, 41.804078 ], [ -70.070801, 41.771312 ], [ -70.180664, 42.147114 ], [ -69.873047, 41.918629 ], [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.850586, 41.310824 ], [ -72.883301, 41.211722 ], [ -73.696289, 40.930115 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.959961, 40.747257 ], [ -74.245605, 40.463666 ], [ -73.959961, 40.430224 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.942321 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.249271 ], [ -75.520020, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.366211, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.247821 ], [ -75.717773, 37.926868 ], [ -76.223145, 38.324420 ], [ -76.354980, 39.147103 ], [ -76.530762, 38.719805 ], [ -76.333008, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.289062, 37.909534 ], [ -76.245117, 36.967449 ], [ -75.959473, 36.897194 ], [ -75.871582, 36.544949 ], [ -75.717773, 35.550105 ], [ -76.354980, 34.813803 ], [ -77.387695, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.852170 ], [ -79.057617, 33.486435 ], [ -79.211426, 33.155948 ], [ -80.288086, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.031055 ], [ -80.969238, 29.171349 ], [ -80.529785, 28.478349 ], [ -80.529785, 28.033198 ], [ -80.046387, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.320801, 25.641526 ], [ -81.716309, 25.859224 ], [ -82.705078, 27.488781 ], [ -82.858887, 27.877928 ], [ -82.639160, 28.555576 ], [ -82.924805, 29.094577 ], [ -83.715820, 29.935895 ], [ -84.089355, 30.088108 ], [ -85.100098, 29.630771 ], [ -85.275879, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.391830 ], [ -87.517090, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.582520, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.477861 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -91.757812, 29.668963 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.143066, 17.811456 ], [ -89.143066, 17.014768 ], [ -89.230957, 15.876809 ], [ -88.923340, 15.876809 ], [ -88.593750, 15.707663 ], [ -88.505859, 15.855674 ], [ -88.220215, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.143066, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.143066, 14.668626 ], [ -89.340820, 14.413400 ], [ -89.582520, 14.349548 ], [ -89.538574, 14.243087 ], [ -90.000000, 13.923404 ], [ -90.065918, 13.880746 ], [ -90.087891, 13.731381 ], [ -90.615234, 13.902076 ], [ -91.230469, 13.923404 ], [ -91.691895, 14.115267 ], [ -91.757812, 14.179186 ], [ -91.757812, 16.045813 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.404470 ], [ -90.593262, 16.467695 ], [ -90.725098, 16.678293 ], [ -91.076660, 16.909684 ], [ -91.450195, 17.245744 ], [ -91.010742, 17.245744 ], [ -91.010742, 17.811456 ], [ -89.143066, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.286133, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.110352, 18.083201 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.476432 ], [ -88.308105, 17.119793 ], [ -88.242188, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.256867 ], [ -88.725586, 16.235772 ], [ -88.923340, 15.876809 ], [ -89.230957, 15.876809 ], [ -89.143066, 17.014768 ], [ -89.143066, 17.957832 ], [ -89.033203, 17.999632 ], [ -88.835449, 17.874203 ], [ -88.483887, 18.479609 ], [ -88.308105, 18.500447 ] ] ] } } , { "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.562988, 9.600750 ], [ -79.013672, 9.557417 ], [ -79.057617, 9.449062 ], [ -78.508301, 9.427387 ], [ -78.046875, 9.253936 ], [ -77.717285, 8.950193 ], [ -77.343750, 8.667918 ], [ -77.475586, 8.515836 ], [ -77.233887, 7.928675 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.871094, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.420410, 8.059230 ], [ -78.178711, 8.320212 ], [ -78.442383, 8.385431 ], [ -78.618164, 8.711359 ], [ -79.123535, 8.993600 ], [ -79.562988, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.156250, 8.320212 ], [ -80.375977, 8.298470 ], [ -80.485840, 8.080985 ], [ -80.002441, 7.536764 ], [ -80.266113, 7.427837 ], [ -80.419922, 7.275292 ], [ -80.881348, 7.209900 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.710992 ], [ -81.716309, 8.102739 ], [ -82.133789, 8.167993 ], [ -82.397461, 8.298470 ], [ -82.814941, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.211490 ], [ -82.836914, 8.624472 ], [ -82.858887, 8.798225 ], [ -82.727051, 8.928487 ], [ -82.924805, 9.080400 ], [ -82.924805, 9.470736 ], [ -82.551270, 9.557417 ], [ -82.177734, 9.210560 ], [ -82.199707, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.037003 ], [ -81.430664, 8.776511 ], [ -80.947266, 8.863362 ], [ -80.529785, 9.102097 ], [ -79.914551, 9.318990 ], [ -79.562988, 9.600750 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.898042 ], [ -60.886230, 10.854886 ], [ -60.930176, 10.098670 ], [ -61.765137, 9.990491 ], [ -61.940918, 10.077037 ], [ -61.655273, 10.358151 ], [ -61.677246, 10.746969 ], [ -61.105957, 10.898042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.586914, 19.890723 ], [ -70.795898, 19.870060 ], [ -70.202637, 19.621892 ], [ -69.938965, 19.642588 ], [ -69.763184, 19.290406 ], [ -69.213867, 19.311143 ], [ -69.257812, 19.020577 ], [ -68.796387, 18.979026 ], [ -68.312988, 18.604601 ], [ -68.686523, 18.208480 ], [ -69.169922, 18.417079 ], [ -69.631348, 18.375379 ], [ -69.960938, 18.417079 ], [ -70.136719, 18.250220 ], [ -70.510254, 18.187607 ], [ -70.664062, 18.417079 ], [ -70.993652, 18.271086 ], [ -71.389160, 17.602139 ], [ -71.652832, 17.748687 ], [ -71.696777, 18.041421 ], [ -71.674805, 18.312811 ], [ -71.938477, 18.604601 ], [ -71.696777, 18.791918 ], [ -71.630859, 19.165924 ], [ -71.718750, 19.704658 ], [ -71.586914, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.739352 ], [ -6.745605, 43.564472 ], [ -5.405273, 43.564472 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.452919 ], [ -1.889648, 43.421009 ], [ -1.494141, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.351562, 42.585444 ], [ 0.703125, 42.795401 ], [ 1.757812, 42.374778 ], [ 1.757812, 41.162114 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.300299 ], [ 0.000000, 38.891033 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.631635 ], [ -1.428223, 37.439974 ], [ -2.153320, 36.668419 ], [ -4.372559, 36.668419 ], [ -4.987793, 36.315125 ], [ -5.383301, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.932330 ], [ -7.448730, 37.090240 ], [ -7.536621, 37.422526 ], [ -7.163086, 37.805444 ], [ -7.031250, 38.065392 ], [ -7.360840, 38.376115 ], [ -7.097168, 39.027719 ], [ -7.492676, 39.622615 ], [ -7.053223, 39.707187 ], [ -7.031250, 40.178873 ], [ -6.855469, 40.329796 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.376809 ], [ -6.657715, 41.885921 ], [ -7.250977, 41.918629 ], [ -7.426758, 41.787697 ], [ -8.020020, 41.787697 ], [ -8.261719, 42.277309 ], [ -8.679199, 42.130821 ], [ -9.030762, 41.885921 ], [ -8.986816, 42.585444 ], [ -9.382324, 43.020714 ], [ -7.976074, 43.739352 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.631217 ], [ -4.064941, 57.551208 ], [ -3.054199, 57.692406 ], [ -1.955566, 57.680660 ], [ -2.219238, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.622978 ], [ -0.417480, 54.457267 ], [ 0.000000, 53.670680 ], [ 0.197754, 53.317749 ], [ 0.483398, 52.922151 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.093008 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -2.482910, 50.499452 ], [ -2.944336, 50.694718 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.951220 ], [ -5.778809, 50.162824 ], [ -4.306641, 51.206883 ], [ -3.405762, 51.426614 ], [ -4.987793, 51.590723 ], [ -5.273438, 51.984880 ], [ -4.218750, 52.295042 ], [ -4.768066, 52.842595 ], [ -4.570312, 53.488046 ], [ -3.098145, 53.396432 ], [ -2.944336, 53.981935 ], [ -3.625488, 54.610255 ], [ -4.833984, 54.788017 ], [ -5.075684, 55.065787 ], [ -4.724121, 55.503750 ], [ -5.053711, 55.776573 ], [ -5.581055, 55.304138 ], [ -5.646973, 56.267761 ], [ -6.152344, 56.788845 ], [ -5.778809, 57.821355 ], [ -5.009766, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.631217 ] ] ], [ [ [ -6.723633, 55.166319 ], [ -5.668945, 54.559323 ], [ -6.196289, 53.865486 ], [ -6.943359, 54.072283 ], [ -7.558594, 54.059388 ], [ -7.360840, 54.597528 ], [ -7.558594, 55.128649 ], [ -6.723633, 55.166319 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.618897 ], [ -13.688965, 12.576010 ], [ -13.710938, 12.254128 ], [ -13.820801, 12.146746 ], [ -13.732910, 11.802834 ], [ -13.908691, 11.673755 ], [ -14.128418, 11.673755 ], [ -14.370117, 11.501557 ], [ -14.677734, 11.523088 ], [ -15.117188, 11.027472 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.303711, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.511665 ], [ -15.556641, 12.618897 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.391278 ], [ -4.921875, 24.966140 ], [ -6.459961, 24.946219 ], [ -5.493164, 16.320139 ], [ -5.317383, 16.193575 ], [ -5.537109, 15.496032 ], [ -9.558105, 15.474857 ], [ -9.689941, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.656738, 15.135764 ], [ -11.337891, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.821289, 14.796128 ], [ -12.172852, 14.604847 ], [ -12.832031, 15.305380 ], [ -13.425293, 16.045813 ], [ -14.106445, 16.299051 ], [ -14.567871, 16.594081 ], [ -15.139160, 16.594081 ], [ -15.622559, 16.362310 ], [ -16.127930, 16.446622 ], [ -16.457520, 16.130262 ], [ -16.545410, 16.678293 ], [ -16.259766, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.103648 ], [ -16.369629, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.523438, 20.571082 ], [ -17.050781, 21.002471 ], [ -16.853027, 21.330315 ], [ -12.919922, 21.330315 ], [ -13.117676, 22.776182 ], [ -12.875977, 23.281719 ], [ -11.931152, 23.362429 ], [ -11.975098, 25.938287 ], [ -8.679199, 25.878994 ], [ -8.679199, 27.391278 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.966140 ], [ 0.000000, 21.800308 ], [ 1.757812, 20.653346 ], [ 1.757812, 15.347762 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.966013 ], [ 0.000000, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.505371, 15.114553 ], [ -1.054688, 14.966013 ], [ -1.999512, 14.562318 ], [ -2.197266, 14.243087 ], [ -2.966309, 13.795406 ], [ -3.098145, 13.539201 ], [ -3.515625, 13.325485 ], [ -3.999023, 13.475106 ], [ -4.284668, 13.218556 ], [ -4.416504, 12.533115 ], [ -5.207520, 11.716788 ], [ -5.185547, 11.372339 ], [ -5.471191, 10.941192 ], [ -5.405273, 10.358151 ], [ -5.822754, 10.228437 ], [ -6.042480, 10.098670 ], [ -6.196289, 10.531020 ], [ -6.481934, 10.401378 ], [ -6.657715, 10.422988 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.141932 ], [ -7.888184, 10.293301 ], [ -8.020020, 10.206813 ], [ -8.327637, 10.487812 ], [ -8.283691, 10.790141 ], [ -8.415527, 10.898042 ], [ -8.613281, 10.811724 ], [ -8.569336, 11.135287 ], [ -8.371582, 11.393879 ], [ -8.789062, 11.802834 ], [ -8.898926, 12.082296 ], [ -9.118652, 12.297068 ], [ -9.316406, 12.340002 ], [ -9.887695, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.590820, 11.931852 ], [ -10.876465, 12.168226 ], [ -11.030273, 12.211180 ], [ -11.293945, 12.082296 ], [ -11.447754, 12.082296 ], [ -11.513672, 12.447305 ], [ -11.469727, 12.747516 ], [ -11.557617, 13.132979 ], [ -11.931152, 13.410994 ], [ -12.128906, 13.987376 ], [ -12.172852, 14.604847 ], [ -11.821289, 14.796128 ], [ -11.667480, 15.390136 ], [ -11.337891, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.085449, 15.326572 ], [ -9.689941, 15.262989 ], [ -9.558105, 15.474857 ], [ -5.537109, 15.496032 ], [ -5.317383, 16.193575 ], [ -5.493164, 16.320139 ], [ -6.459961, 24.946219 ], [ -4.921875, 24.966140 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.005904 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.639014 ], [ 0.373535, 10.185187 ], [ 0.373535, 9.470736 ], [ 0.461426, 8.667918 ], [ 0.725098, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.904614 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.331644 ], [ -1.054688, 5.003394 ], [ -1.955566, 4.696879 ], [ -2.856445, 4.981505 ], [ -2.812500, 5.375398 ], [ -3.251953, 6.249776 ], [ -2.988281, 7.384258 ], [ -2.548828, 8.211490 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.005904 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.092166 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.005904 ], [ 0.900879, 10.984335 ], [ 0.769043, 10.466206 ], [ 1.428223, 9.817329 ], [ 1.472168, 9.340672 ], [ 1.669922, 9.123792 ], [ 1.625977, 6.839170 ], [ 1.757812, 6.446318 ], [ 1.757812, 6.118708 ], [ 1.054688, 5.922045 ], [ 0.834961, 6.271618 ], [ 0.571289, 6.904614 ], [ 0.483398, 7.406048 ], [ 0.725098, 8.320212 ], [ 0.461426, 8.667918 ], [ 0.373535, 9.470736 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.639014 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.005904 ] ] ] } } ] } ] } @@ -155,13 +159,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.536133, -65.820782 ], [ 55.415039, -65.874725 ], [ 56.359863, -65.973325 ], [ 57.150879, -66.249163 ], [ 57.216797, -66.513260 ], [ 57.260742, -66.679087 ], [ 58.139648, -67.016009 ], [ 58.557129, -67.204032 ], [ 48.713379, -67.204032 ], [ 48.999023, -67.093105 ], [ 49.943848, -67.110204 ], [ 50.756836, -66.878345 ], [ 50.954590, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.249163 ], [ 52.624512, -66.053716 ], [ 53.613281, -65.901653 ], [ 54.536133, -65.820782 ] ] ], [ [ [ 84.704590, -67.204032 ], [ 85.649414, -67.093105 ], [ 86.748047, -67.152898 ], [ 87.473145, -66.878345 ], [ 87.758789, -66.513260 ], [ 87.978516, -66.213739 ], [ 88.395996, -66.513260 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 84.704590, -67.204032 ] ] ], [ [ [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.127290 ], [ 91.757812, -67.204032 ], [ 90.834961, -67.204032 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.958496, 1.757537 ], [ 34.672852, 1.186439 ], [ 33.903809, 0.109863 ], [ 33.903809, -0.944781 ], [ 31.860352, -1.032659 ], [ 30.761719, -1.010690 ], [ 30.432129, -1.142502 ], [ 29.816895, -1.450040 ], [ 29.575195, -1.340210 ], [ 29.597168, -0.593251 ], [ 29.816895, -0.197754 ], [ 29.838867, 0.000000 ], [ 29.882812, 0.593251 ], [ 30.080566, 1.054628 ], [ 30.476074, 1.581830 ], [ 30.717773, 1.757537 ], [ 34.958496, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.131836, 1.757537 ], [ 44.077148, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.594238, -1.691649 ], [ 41.000977, -0.856902 ], [ 41.000977, 0.000000 ], [ 40.979004, 1.757537 ], [ 45.131836, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.717773, 1.757537 ], [ 30.476074, 1.581830 ], [ 30.080566, 1.054628 ], [ 29.882812, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.597168, -0.593251 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.625758 ], [ 29.267578, -2.218684 ], [ 29.113770, -2.284551 ], [ 29.025879, -2.833317 ], [ 29.289551, -3.294082 ], [ 29.333496, -4.499762 ], [ 29.531250, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.533645 ], [ 30.212402, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.537565 ], [ 28.454590, -9.167179 ], [ 28.674316, -9.600750 ], [ 28.366699, -11.802834 ], [ 29.333496, -12.361466 ], [ 29.619141, -12.189704 ], [ 29.707031, -13.261333 ], [ 28.937988, -13.261333 ], [ 28.520508, -12.704651 ], [ 28.146973, -12.275599 ], [ 27.399902, -12.125264 ], [ 27.158203, -11.609193 ], [ 26.564941, -11.931852 ], [ 25.751953, -11.781325 ], [ 25.422363, -11.329253 ], [ 24.785156, -11.243062 ], [ 24.323730, -11.264612 ], [ 24.257812, -10.962764 ], [ 23.466797, -10.876465 ], [ 22.829590, -11.027472 ], [ 22.412109, -11.005904 ], [ 22.148438, -11.092166 ], [ 22.214355, -9.903921 ], [ 21.884766, -9.535749 ], [ 21.796875, -8.906780 ], [ 21.950684, -8.298470 ], [ 21.752930, -7.928675 ], [ 21.730957, -7.297088 ], [ 20.522461, -7.297088 ], [ 20.610352, -6.948239 ], [ 20.104980, -6.948239 ], [ 20.039062, -7.122696 ], [ 19.423828, -7.166300 ], [ 19.160156, -7.732765 ], [ 19.028320, -7.993957 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.993957 ], [ 17.468262, -8.080985 ], [ 16.853027, -7.231699 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.381348, -5.856475 ], [ 13.029785, -5.987607 ], [ 12.744141, -5.965754 ], [ 12.326660, -6.096860 ], [ 12.194824, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.480469, -5.244128 ], [ 12.634277, -5.003394 ], [ 13.007812, -4.784469 ], [ 13.271484, -4.893941 ], [ 13.601074, -4.499762 ], [ 14.150391, -4.521666 ], [ 14.216309, -4.806365 ], [ 14.589844, -4.981505 ], [ 15.183105, -4.346411 ], [ 15.754395, -3.864255 ], [ 16.018066, -3.535352 ], [ 15.974121, -2.723583 ], [ 16.413574, -1.735574 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.644043, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.907715, 1.757537 ], [ 30.717773, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.951724 ], [ 13.469238, -16.972741 ], [ 14.062500, -17.434511 ], [ 14.216309, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.962402, -17.790535 ], [ 21.379395, -17.936929 ], [ 23.225098, -17.518344 ], [ 24.038086, -17.308688 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.581194 ], [ 25.092773, -17.664960 ], [ 24.521484, -17.895114 ], [ 24.213867, -17.895114 ], [ 23.576660, -18.291950 ], [ 23.203125, -17.874203 ], [ 21.665039, -18.229351 ], [ 20.917969, -18.250220 ], [ 20.874023, -21.820708 ], [ 19.907227, -21.861499 ], [ 19.907227, -28.459033 ], [ 19.006348, -28.979312 ], [ 18.457031, -29.056170 ], [ 17.841797, -28.863918 ], [ 17.380371, -28.786918 ], [ 17.226562, -28.362402 ], [ 16.831055, -28.091366 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.098254 ], [ 14.985352, -26.115986 ], [ 14.743652, -25.403585 ], [ 14.414062, -23.845650 ], [ 14.392090, -22.654572 ], [ 14.260254, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.359375, -20.879343 ], [ 12.832031, -19.683970 ], [ 12.612305, -19.041349 ], [ 11.799316, -18.062312 ], [ 11.733398, -17.308688 ], [ 12.216797, -17.119793 ], [ 12.810059, -16.951724 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.602747 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.761230, -9.232249 ], [ 33.244629, -9.687398 ], [ 33.486328, -10.531020 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.609193 ], [ 33.310547, -12.447305 ], [ 33.002930, -12.790375 ], [ 32.695312, -13.710035 ], [ 33.222656, -13.966054 ], [ 30.190430, -14.796128 ], [ 30.278320, -15.517205 ], [ 29.509277, -15.644197 ], [ 28.959961, -16.045813 ], [ 28.828125, -16.383391 ], [ 28.476562, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.048340, -17.936929 ], [ 26.718750, -17.957832 ], [ 26.389160, -17.853290 ], [ 25.268555, -17.748687 ], [ 25.092773, -17.664960 ], [ 25.070801, -17.581194 ], [ 24.675293, -17.350638 ], [ 24.038086, -17.308688 ], [ 23.225098, -17.518344 ], [ 22.565918, -16.909684 ], [ 21.884766, -16.088042 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.918907 ], [ 23.928223, -12.576010 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.716788 ], [ 24.016113, -11.243062 ], [ 23.906250, -10.919618 ], [ 24.257812, -10.962764 ], [ 24.323730, -11.264612 ], [ 24.785156, -11.243062 ], [ 25.422363, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.564941, -11.931852 ], [ 27.158203, -11.609193 ], [ 27.399902, -12.125264 ], [ 28.146973, -12.275599 ], [ 28.520508, -12.704651 ], [ 28.937988, -13.261333 ], [ 29.707031, -13.261333 ], [ 29.619141, -12.189704 ], [ 29.333496, -12.361466 ], [ 28.366699, -11.802834 ], [ 28.674316, -9.600750 ], [ 28.454590, -9.167179 ], [ 28.740234, -8.537565 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.233237 ] ] ] } } , { "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.443359, -22.085640 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.201172, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.839449 ], [ 31.333008, -25.661333 ], [ 31.047363, -25.740529 ], [ 30.959473, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.695801, -26.745610 ], [ 31.289062, -27.293689 ], [ 31.860352, -27.176469 ], [ 32.080078, -26.745610 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.475586, -28.304381 ], [ 32.211914, -28.748397 ], [ 31.333008, -29.401320 ], [ 30.893555, -29.916852 ], [ 30.629883, -30.429730 ], [ 30.058594, -31.147006 ], [ 28.212891, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.433105, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.773926, -33.943360 ], [ 25.180664, -33.797409 ], [ 24.675293, -33.998027 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.925130 ], [ 22.565918, -33.870416 ], [ 21.555176, -34.252676 ], [ 20.698242, -34.415973 ], [ 20.083008, -34.795762 ], [ 19.621582, -34.813803 ], [ 19.204102, -34.470335 ], [ 18.852539, -34.452218 ], [ 18.435059, -33.998027 ], [ 18.391113, -34.143635 ], [ 18.237305, -33.870416 ], [ 18.259277, -33.284620 ], [ 17.929688, -32.620870 ], [ 18.259277, -32.435613 ], [ 18.215332, -31.672083 ], [ 17.578125, -30.732393 ], [ 16.347656, -28.574874 ], [ 16.831055, -28.091366 ], [ 17.226562, -28.362402 ], [ 17.380371, -28.786918 ], [ 17.841797, -28.863918 ], [ 18.457031, -29.056170 ], [ 19.006348, -28.979312 ], [ 19.907227, -28.459033 ], [ 19.907227, -24.766785 ], [ 20.170898, -24.926295 ], [ 20.764160, -25.878994 ], [ 20.676270, -26.470573 ], [ 20.895996, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.587891, -25.977799 ], [ 22.829590, -25.502785 ], [ 23.312988, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.213867, -25.681137 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.482951 ], [ 25.949707, -24.706915 ], [ 26.499023, -24.627045 ], [ 26.784668, -24.246965 ], [ 27.114258, -23.584126 ], [ 28.015137, -22.836946 ], [ 29.443359, -22.085640 ] ], [ [ 28.542480, -28.652031 ], [ 28.081055, -28.844674 ], [ 27.531738, -29.248063 ], [ 27.004395, -29.878755 ], [ 27.751465, -30.656816 ], [ 28.103027, -30.543339 ], [ 28.300781, -30.221102 ], [ 28.850098, -30.069094 ], [ 29.333496, -29.267233 ], [ 28.981934, -28.960089 ], [ 28.542480, -28.652031 ] ] ] } } ] } @@ -171,47 +169,51 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.382324, 43.004647 ], [ 9.558105, 42.147114 ], [ 9.228516, 41.376809 ], [ 8.789062, 41.574361 ], [ 8.547363, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.004647 ] ] ], [ [ [ 2.526855, 51.151786 ], [ 2.658691, 50.792047 ], [ 3.120117, 50.778155 ], [ 3.581543, 50.373496 ], [ 4.284668, 49.908787 ], [ 4.812012, 49.979488 ], [ 5.668945, 49.525208 ], [ 5.910645, 49.439557 ], [ 6.196289, 49.468124 ], [ 6.657715, 49.196064 ], [ 8.107910, 49.009051 ], [ 7.602539, 48.327039 ], [ 7.470703, 47.620975 ], [ 7.185059, 47.442950 ], [ 6.745605, 47.546872 ], [ 6.767578, 47.279229 ], [ 6.042480, 46.724800 ], [ 6.020508, 46.271037 ], [ 6.503906, 46.422713 ], [ 6.855469, 45.981695 ], [ 6.811523, 45.706179 ], [ 7.097168, 45.336702 ], [ 6.745605, 45.026950 ], [ 7.009277, 44.245199 ], [ 7.558594, 44.119142 ], [ 7.448730, 43.691708 ], [ 6.525879, 43.133061 ], [ 4.570312, 43.405047 ], [ 3.098145, 43.068888 ], [ 2.988281, 42.472097 ], [ 1.823730, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.351562, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.516113, 43.036776 ], [ -1.757812, 43.277205 ], [ -1.757812, 43.596306 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -1.757812, 46.589069 ], [ -1.757812, 48.661943 ], [ -1.625977, 48.647428 ], [ -1.757812, 49.152970 ], [ -1.757812, 49.696062 ], [ -0.988770, 49.339441 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.120578 ], [ 1.647949, 50.944584 ], [ 2.526855, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 43.277205 ], [ -1.516113, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.351562, 42.585444 ], [ 0.703125, 42.795401 ], [ 1.823730, 42.342305 ], [ 2.988281, 42.472097 ], [ 3.032227, 41.885921 ], [ 2.087402, 41.228249 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.300299 ], [ 0.000000, 38.891033 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.631635 ], [ -1.450195, 37.439974 ], [ -1.757812, 37.090240 ], [ -1.757812, 43.277205 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 55.478853 ], [ -1.120605, 54.622978 ], [ -0.439453, 54.457267 ], [ 0.000000, 53.670680 ], [ 0.197754, 53.317749 ], [ 0.483398, 52.922151 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.093008 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.611132 ], [ -1.757812, 55.478853 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 22.917923 ], [ 0.000000, 21.800308 ], [ 1.823730, 20.612220 ], [ 2.065430, 20.138470 ], [ 2.680664, 19.849394 ], [ 3.142090, 19.683970 ], [ 3.164062, 19.062118 ], [ 4.262695, 19.145168 ], [ 4.262695, 16.846605 ], [ 3.735352, 16.172473 ], [ 3.647461, 15.559544 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.966013 ], [ 0.000000, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.527344, 15.114553 ], [ -1.076660, 14.966013 ], [ -1.757812, 14.668626 ], [ -1.757812, 22.917923 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.467697 ], [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.120578 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.525208 ], [ 4.812012, 49.979488 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.373496 ], [ 3.120117, 50.778155 ], [ 2.658691, 50.792047 ], [ 2.526855, 51.151786 ], [ 3.317871, 51.344339 ], [ 4.042969, 51.261915 ], [ 4.965820, 51.467697 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.005904 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.639014 ], [ 0.373535, 10.185187 ], [ 0.373535, 9.470736 ], [ 0.461426, 8.667918 ], [ 0.725098, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.904614 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.331644 ], [ -1.076660, 5.003394 ], [ -1.757812, 4.784469 ], [ -1.757812, 11.005904 ], [ -1.208496, 11.005904 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.092166 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.018066, 67.204032 ], [ 15.380859, 66.513260 ], [ 15.117188, 66.196009 ], [ 13.557129, 64.783488 ], [ 13.930664, 64.444372 ], [ 13.579102, 64.043363 ], [ 12.590332, 64.062591 ], [ 11.931152, 63.124572 ], [ 11.997070, 61.793900 ], [ 12.634277, 61.291349 ], [ 12.304688, 60.119619 ], [ 11.469727, 59.433903 ], [ 11.030273, 58.859224 ], [ 10.349121, 59.467408 ], [ 8.393555, 58.309489 ], [ 7.053223, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.317383, 59.656642 ], [ 4.987793, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.547363, 63.450509 ], [ 10.524902, 64.482261 ], [ 12.370605, 65.874725 ], [ 13.117676, 66.513260 ], [ 13.974609, 67.204032 ], [ 16.018066, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.525391, 47.827908 ], [ 9.602051, 47.517201 ], [ 9.645996, 47.338823 ], [ 9.492188, 47.100045 ], [ 9.931641, 46.920255 ], [ 10.437012, 46.890232 ], [ 10.371094, 46.483265 ], [ 9.931641, 46.316584 ], [ 9.184570, 46.437857 ], [ 8.964844, 46.027482 ], [ 8.503418, 45.996962 ], [ 8.327637, 46.164614 ], [ 7.756348, 45.828799 ], [ 7.272949, 45.767523 ], [ 6.855469, 45.981695 ], [ 6.503906, 46.422713 ], [ 6.020508, 46.271037 ], [ 6.042480, 46.724800 ], [ 6.767578, 47.279229 ], [ 6.745605, 47.546872 ], [ 7.185059, 47.442950 ], [ 7.470703, 47.620975 ], [ 8.327637, 47.606163 ], [ 8.525391, 47.827908 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.120578 ], [ 6.240234, 49.894634 ], [ 6.196289, 49.468124 ], [ 5.910645, 49.439557 ], [ 5.668945, 49.525208 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.120578 ] ] ] } } , { "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.498392 ], [ 16.875000, 46.377254 ], [ 17.622070, 45.951150 ], [ 18.457031, 45.752193 ], [ 18.830566, 45.905300 ], [ 19.072266, 45.521744 ], [ 19.401855, 45.228481 ], [ 19.006348, 44.855869 ], [ 18.566895, 45.073521 ], [ 17.863770, 45.073521 ], [ 17.006836, 45.228481 ], [ 16.545410, 45.213004 ], [ 16.325684, 44.995883 ], [ 15.952148, 45.228481 ], [ 15.754395, 44.809122 ], [ 16.237793, 44.355278 ], [ 16.457520, 44.040219 ], [ 16.918945, 43.659924 ], [ 17.292480, 43.436966 ], [ 17.687988, 43.020714 ], [ 18.566895, 42.650122 ], [ 18.457031, 42.472097 ], [ 17.512207, 42.843751 ], [ 16.940918, 43.213183 ], [ 16.018066, 43.500752 ], [ 15.183105, 44.245199 ], [ 15.380859, 44.308127 ], [ 14.919434, 44.731126 ], [ 14.897461, 45.073521 ], [ 14.260254, 45.228481 ], [ 13.952637, 44.793531 ], [ 13.666992, 45.135555 ], [ 13.688965, 45.475540 ], [ 13.710938, 45.490946 ], [ 14.414062, 45.460131 ], [ 14.589844, 45.629405 ], [ 14.941406, 45.475540 ], [ 15.336914, 45.444717 ], [ 15.336914, 45.736860 ], [ 15.666504, 45.828799 ], [ 15.776367, 46.240652 ], [ 16.567383, 46.498392 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 46.164614 ], [ 20.214844, 46.118942 ], [ 20.764160, 45.736860 ], [ 20.874023, 45.413876 ], [ 21.489258, 45.182037 ], [ 21.555176, 44.762337 ], [ 22.148438, 44.480830 ], [ 22.456055, 44.699898 ], [ 22.697754, 44.574817 ], [ 22.478027, 44.402392 ], [ 22.653809, 44.229457 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.609863, 42.892064 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.455888 ], [ 22.390137, 42.326062 ], [ 21.928711, 42.293564 ], [ 21.577148, 42.244785 ], [ 21.555176, 42.326062 ], [ 21.665039, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.643066, 42.682435 ], [ 21.445312, 42.859860 ], [ 21.269531, 42.908160 ], [ 21.137695, 43.068888 ], [ 20.961914, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.213183 ], [ 20.500488, 42.875964 ], [ 20.258789, 42.811522 ], [ 20.346680, 42.892064 ], [ 19.951172, 43.100983 ], [ 19.643555, 43.213183 ], [ 19.489746, 43.357138 ], [ 19.226074, 43.516689 ], [ 19.445801, 43.564472 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.418088 ], [ 19.379883, 44.855869 ], [ 19.006348, 44.855869 ], [ 19.401855, 45.228481 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.905300 ], [ 19.599609, 46.164614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.390137, 42.326062 ], [ 22.873535, 42.000325 ], [ 22.961426, 41.343825 ], [ 22.763672, 41.310824 ], [ 22.609863, 41.129021 ], [ 22.060547, 41.145570 ], [ 21.687012, 40.930115 ], [ 21.027832, 40.847060 ], [ 20.610352, 41.079351 ], [ 20.456543, 41.508577 ], [ 20.588379, 41.853196 ], [ 20.720215, 41.853196 ], [ 20.764160, 42.049293 ], [ 21.357422, 42.212245 ], [ 21.928711, 42.293564 ], [ 22.390137, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.229457 ], [ 22.939453, 43.818675 ], [ 23.334961, 43.897892 ], [ 24.104004, 43.739352 ], [ 25.576172, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.246094, 44.166445 ], [ 27.971191, 43.802819 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.685547, 42.569264 ], [ 27.993164, 42.000325 ], [ 27.136230, 42.147114 ], [ 26.125488, 41.820455 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.228249 ], [ 24.499512, 41.574361 ], [ 23.686523, 41.310824 ], [ 22.961426, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.390137, 42.326062 ], [ 22.543945, 42.455888 ], [ 22.434082, 42.585444 ], [ 22.609863, 42.892064 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.653809, 44.229457 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.912273 ], [ 29.377441, 55.665193 ], [ 29.904785, 55.788929 ], [ 30.871582, 55.553495 ], [ 30.981445, 55.078367 ], [ 30.761719, 54.813348 ], [ 31.376953, 54.149567 ], [ 31.794434, 53.969012 ], [ 31.728516, 53.787672 ], [ 32.409668, 53.618579 ], [ 32.695312, 53.343993 ], [ 32.299805, 53.133590 ], [ 31.508789, 53.159947 ], [ 31.311035, 53.067627 ], [ 31.552734, 52.736292 ], [ 31.794434, 52.106505 ], [ 30.937500, 52.038977 ], [ 30.629883, 51.822198 ], [ 30.563965, 51.316881 ], [ 30.168457, 51.412912 ], [ 29.267578, 51.371780 ], [ 29.003906, 51.604372 ], [ 28.630371, 51.426614 ], [ 28.234863, 51.577070 ], [ 27.465820, 51.590723 ], [ 26.345215, 51.835778 ], [ 25.334473, 51.903613 ], [ 24.565430, 51.890054 ], [ 24.016113, 51.618017 ], [ 23.532715, 51.577070 ], [ 23.510742, 52.025459 ], [ 23.203125, 52.482780 ], [ 23.796387, 52.683043 ], [ 23.818359, 53.094024 ], [ 23.532715, 53.474970 ], [ 23.488770, 53.917281 ], [ 24.455566, 53.904338 ], [ 25.532227, 54.278055 ], [ 25.773926, 54.851315 ], [ 26.586914, 55.166319 ], [ 26.499023, 55.615589 ], [ 27.114258, 55.776573 ], [ 28.168945, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.514160, 37.352693 ], [ 10.217285, 37.230328 ], [ 10.173340, 36.721274 ], [ 11.030273, 37.090240 ], [ 11.096191, 36.897194 ], [ 10.612793, 36.403600 ], [ 10.590820, 35.942436 ], [ 10.942383, 35.692995 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.325292 ], [ 10.349121, 33.779147 ], [ 10.854492, 33.760882 ], [ 11.118164, 33.284620 ], [ 11.491699, 33.137551 ], [ 11.425781, 32.361403 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.953613, 31.372399 ], [ 10.063477, 30.958769 ], [ 9.975586, 30.543339 ], [ 9.492188, 30.297018 ], [ 9.052734, 32.101190 ], [ 8.437500, 32.509762 ], [ 8.437500, 32.750323 ], [ 7.624512, 33.339707 ], [ 7.536621, 34.089061 ], [ 8.151855, 34.651285 ], [ 8.371582, 35.478565 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.514160, 37.352693 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.767840 ], [ 34.145508, 51.563412 ], [ 34.233398, 51.248163 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.569283 ], [ 36.628418, 50.219095 ], [ 37.397461, 50.387508 ], [ 38.012695, 49.908787 ], [ 38.605957, 49.922935 ], [ 40.078125, 49.596470 ], [ 40.078125, 49.310799 ], [ 39.682617, 48.777913 ], [ 39.902344, 48.224673 ], [ 39.748535, 47.901614 ], [ 38.781738, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.232422, 47.100045 ], [ 37.419434, 47.025206 ], [ 36.760254, 46.694667 ], [ 35.837402, 46.649436 ], [ 34.958496, 46.271037 ], [ 35.024414, 45.644768 ], [ 35.507812, 45.413876 ], [ 36.540527, 45.475540 ], [ 36.342773, 45.104546 ], [ 35.244141, 44.933696 ], [ 33.881836, 44.355278 ], [ 33.332520, 44.559163 ], [ 33.552246, 45.026950 ], [ 32.453613, 45.321254 ], [ 32.629395, 45.521744 ], [ 33.596191, 45.844108 ], [ 33.310547, 46.073231 ], [ 31.750488, 46.331758 ], [ 31.684570, 46.709736 ], [ 30.761719, 46.573967 ], [ 30.388184, 46.027482 ], [ 29.597168, 45.290347 ], [ 29.157715, 45.460131 ], [ 28.674316, 45.305803 ], [ 28.234863, 45.490946 ], [ 28.498535, 45.598666 ], [ 28.652344, 45.935871 ], [ 28.937988, 46.255847 ], [ 28.872070, 46.437857 ], [ 29.069824, 46.513516 ], [ 29.179688, 46.377254 ], [ 29.772949, 46.346928 ], [ 30.036621, 46.422713 ], [ 29.838867, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.920255 ], [ 29.421387, 47.338823 ], [ 29.047852, 47.502359 ], [ 29.135742, 47.842658 ], [ 28.674316, 48.122101 ], [ 28.256836, 48.151428 ], [ 27.531738, 48.458352 ], [ 26.850586, 48.370848 ], [ 26.630859, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.949707, 47.989922 ], [ 25.202637, 47.886881 ], [ 24.873047, 47.739323 ], [ 24.411621, 47.975214 ], [ 23.774414, 47.989922 ], [ 23.137207, 48.092757 ], [ 22.719727, 47.886881 ], [ 22.653809, 48.151428 ], [ 22.082520, 48.414619 ], [ 22.280273, 48.821333 ], [ 22.565918, 49.081062 ], [ 22.785645, 49.023461 ], [ 22.521973, 49.468124 ], [ 23.422852, 50.303376 ], [ 23.928223, 50.429518 ], [ 24.038086, 50.708634 ], [ 23.532715, 51.577070 ], [ 24.016113, 51.618017 ], [ 24.565430, 51.890054 ], [ 25.334473, 51.903613 ], [ 26.345215, 51.835778 ], [ 27.465820, 51.590723 ], [ 28.234863, 51.577070 ], [ 28.630371, 51.426614 ], [ 29.003906, 51.604372 ], [ 29.267578, 51.371780 ], [ 30.168457, 51.412912 ], [ 30.563965, 51.316881 ], [ 30.629883, 51.822198 ], [ 30.937500, 52.038977 ], [ 31.794434, 52.106505 ], [ 32.167969, 52.066000 ], [ 32.409668, 52.281602 ], [ 32.717285, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , { "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.005904 ], [ 0.900879, 10.984335 ], [ 0.769043, 10.466206 ], [ 1.428223, 9.817329 ], [ 1.472168, 9.340672 ], [ 1.669922, 9.123792 ], [ 1.625977, 6.839170 ], [ 1.867676, 6.140555 ], [ 1.054688, 5.922045 ], [ 0.834961, 6.271618 ], [ 0.571289, 6.904614 ], [ 0.483398, 7.406048 ], [ 0.725098, 8.320212 ], [ 0.461426, 8.667918 ], [ 0.373535, 9.470736 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.639014 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.005904 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.402765 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.601875 ], [ 23.027344, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.521973, 14.093957 ], [ 22.192383, 13.774066 ], [ 22.302246, 13.368243 ], [ 22.038574, 12.961736 ], [ 21.928711, 12.576010 ], [ 22.280273, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.521973, 11.673755 ], [ 22.873535, 11.372339 ], [ 22.873535, 11.135287 ], [ 22.236328, 10.962764 ], [ 21.730957, 10.574222 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.080400 ], [ 18.808594, 8.971897 ], [ 18.918457, 8.624472 ], [ 18.391113, 8.276727 ], [ 17.973633, 7.885147 ], [ 16.699219, 7.514981 ], [ 16.457520, 7.732765 ], [ 16.303711, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.292969, 7.427837 ], [ 15.446777, 7.689217 ], [ 15.117188, 8.385431 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.172363, 10.012130 ], [ 14.633789, 9.925566 ], [ 14.919434, 9.990491 ], [ 15.468750, 9.968851 ], [ 14.919434, 10.898042 ], [ 14.963379, 11.544616 ], [ 14.897461, 12.211180 ], [ 14.501953, 12.854649 ], [ 14.589844, 13.325485 ], [ 13.952637, 13.346865 ], [ 13.952637, 13.987376 ], [ 13.535156, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.615138 ], [ 15.292969, 17.916023 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.735566 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.857195 ], [ 15.864258, 23.402765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.501953, 12.854649 ], [ 14.897461, 12.211180 ], [ 14.963379, 11.544616 ], [ 14.919434, 10.898042 ], [ 15.468750, 9.968851 ], [ 14.919434, 9.990491 ], [ 14.633789, 9.925566 ], [ 14.172363, 10.012130 ], [ 13.952637, 9.557417 ], [ 14.545898, 8.971897 ], [ 14.985352, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.446777, 7.689217 ], [ 14.787598, 6.402648 ], [ 14.545898, 6.227934 ], [ 14.458008, 5.441022 ], [ 14.567871, 5.025283 ], [ 14.479980, 4.740675 ], [ 14.963379, 4.214943 ], [ 15.029297, 3.842332 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.008870 ], [ 15.908203, 2.547988 ], [ 16.018066, 2.262595 ], [ 15.952148, 1.735574 ], [ 14.348145, 2.218684 ], [ 13.073730, 2.262595 ], [ 12.963867, 2.328460 ], [ 12.370605, 2.196727 ], [ 11.755371, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.942871, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.481445, 4.499762 ], [ 8.503418, 4.762573 ], [ 8.767090, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.536133, 6.446318 ], [ 10.129395, 7.035476 ], [ 10.502930, 7.057282 ], [ 11.052246, 6.642783 ], [ 11.755371, 6.970049 ], [ 11.843262, 7.384258 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.298470 ], [ 12.766113, 8.711359 ], [ 12.963867, 9.405710 ], [ 13.161621, 9.644077 ], [ 13.315430, 10.163560 ], [ 13.579102, 10.790141 ], [ 14.414062, 11.566144 ], [ 14.479980, 11.910354 ], [ 14.589844, 12.082296 ], [ 14.194336, 12.490214 ], [ 14.216309, 12.790375 ], [ 14.501953, 12.854649 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.178223, 32.528289 ], [ 35.551758, 32.398516 ], [ 35.551758, 31.784217 ], [ 35.397949, 31.484893 ], [ 34.936523, 31.353637 ], [ 34.980469, 31.615966 ], [ 35.222168, 31.746854 ], [ 34.980469, 31.858897 ], [ 35.178223, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.651285 ], [ 36.452637, 34.597042 ], [ 36.606445, 34.198173 ], [ 36.079102, 33.815666 ], [ 35.815430, 33.266250 ], [ 35.551758, 33.266250 ], [ 35.463867, 33.082337 ], [ 35.134277, 33.082337 ], [ 35.485840, 33.906896 ], [ 35.991211, 34.651285 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.013672, 4.236856 ], [ 34.475098, 3.557283 ], [ 34.606934, 3.052754 ], [ 35.046387, 1.911267 ], [ 34.672852, 1.164471 ], [ 33.903809, 0.109863 ], [ 33.903809, -0.944781 ], [ 31.860352, -1.032659 ], [ 30.761719, -1.010690 ], [ 30.432129, -1.142502 ], [ 29.816895, -1.450040 ], [ 29.575195, -1.340210 ], [ 29.597168, -0.593251 ], [ 29.816895, -0.197754 ], [ 29.838867, 0.000000 ], [ 29.882812, 0.593251 ], [ 30.080566, 1.054628 ], [ 30.476074, 1.581830 ], [ 30.849609, 1.845384 ], [ 31.179199, 2.196727 ], [ 30.783691, 2.328460 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.776559 ], [ 31.882324, 3.557283 ], [ 32.695312, 3.798484 ], [ 33.398438, 3.776559 ], [ 34.013672, 4.236856 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.157012 ], [ 40.407715, 31.896214 ], [ 41.901855, 31.184609 ], [ 44.714355, 29.171349 ], [ 46.582031, 29.094577 ], [ 47.460938, 28.998532 ], [ 47.702637, 28.516969 ], [ 48.427734, 28.555576 ], [ 48.801270, 27.683528 ], [ 49.306641, 27.449790 ], [ 49.482422, 27.098254 ], [ 50.163574, 26.686730 ], [ 50.207520, 26.273714 ], [ 50.119629, 25.938287 ], [ 50.251465, 25.601902 ], [ 50.537109, 25.324167 ], [ 50.668945, 25.005973 ], [ 50.822754, 24.746831 ], [ 51.108398, 24.547123 ], [ 51.394043, 24.627045 ], [ 51.591797, 24.246965 ], [ 51.613770, 24.006326 ], [ 52.009277, 22.998852 ], [ 55.019531, 22.492257 ], [ 55.217285, 22.715390 ], [ 55.678711, 22.004175 ], [ 54.997559, 19.993998 ], [ 52.009277, 18.999803 ], [ 49.108887, 18.604601 ], [ 48.186035, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.757812, 17.287709 ], [ 46.362305, 17.224758 ], [ 45.395508, 17.329664 ], [ 45.219727, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.308688 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.077790 ], [ 43.220215, 16.657244 ], [ 42.780762, 16.341226 ], [ 42.648926, 16.762468 ], [ 42.341309, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.748047, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.935059, 19.476950 ], [ 40.253906, 20.179724 ], [ 39.814453, 20.344627 ], [ 39.133301, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.573438 ], [ 38.496094, 23.684774 ], [ 38.034668, 24.066528 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.846565 ], [ 37.221680, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.650391, 25.819672 ], [ 36.254883, 26.568877 ], [ 35.134277, 28.052591 ], [ 34.628906, 28.052591 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.958496, 29.363027 ], [ 36.079102, 29.190533 ], [ 36.496582, 29.496988 ], [ 36.738281, 29.859701 ], [ 37.507324, 29.993002 ], [ 37.661133, 30.334954 ], [ 37.990723, 30.505484 ], [ 37.001953, 31.503629 ], [ 39.001465, 32.008076 ], [ 39.199219, 32.157012 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.966013 ], [ 38.518066, 14.498508 ], [ 39.111328, 14.732386 ], [ 39.353027, 14.519780 ], [ 40.034180, 14.519780 ], [ 40.891113, 14.115267 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.011719, 12.854649 ], [ 42.363281, 12.533115 ], [ 41.660156, 11.630716 ], [ 41.748047, 11.350797 ], [ 41.748047, 11.049038 ], [ 42.319336, 11.027472 ], [ 42.561035, 11.092166 ], [ 42.780762, 10.919618 ], [ 42.561035, 10.574222 ], [ 43.308105, 9.535749 ], [ 43.681641, 9.188870 ], [ 46.955566, 7.993957 ], [ 47.790527, 7.993957 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.780762, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.857910, 3.908099 ], [ 41.176758, 3.908099 ], [ 40.781250, 4.258768 ], [ 39.858398, 3.842332 ], [ 39.572754, 3.425692 ], [ 38.891602, 3.491489 ], [ 38.671875, 3.623071 ], [ 38.122559, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.166992, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.331644 ], [ 35.310059, 5.506640 ], [ 34.716797, 6.599131 ], [ 34.255371, 6.817353 ], [ 34.079590, 7.231699 ], [ 33.574219, 7.710992 ], [ 32.958984, 7.776309 ], [ 33.288574, 8.341953 ], [ 33.837891, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.969727, 9.579084 ], [ 34.255371, 10.617418 ], [ 34.738770, 10.898042 ], [ 34.826660, 11.307708 ], [ 35.266113, 12.082296 ], [ 35.859375, 12.576010 ], [ 36.276855, 13.560562 ], [ 36.430664, 14.413400 ], [ 37.595215, 14.200488 ], [ 37.902832, 14.966013 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 39.001465, 16.846605 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.088379, 12.704651 ], [ 42.780762, 12.447305 ], [ 42.363281, 12.533115 ], [ 42.011719, 12.854649 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.115267 ], [ 40.034180, 14.519780 ], [ 39.353027, 14.519780 ], [ 39.111328, 14.732386 ], [ 38.518066, 14.498508 ], [ 37.902832, 14.966013 ], [ 37.595215, 14.200488 ], [ 36.430664, 14.413400 ], [ 36.320801, 14.817371 ], [ 36.760254, 16.299051 ], [ 36.848145, 16.951724 ], [ 37.177734, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.307129, 30.050077 ], [ 47.966309, 29.973970 ], [ 48.186035, 29.535230 ], [ 48.098145, 29.305561 ], [ 48.427734, 28.555576 ], [ 47.702637, 28.516969 ], [ 47.460938, 28.998532 ], [ 46.582031, 29.094577 ], [ 47.307129, 30.050077 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.379110 ], [ 70.861816, 55.166319 ], [ 71.191406, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.520508, 54.033586 ], [ 73.432617, 53.488046 ], [ 74.377441, 53.540307 ], [ 76.904297, 54.482805 ], [ 76.530762, 54.175297 ], [ 77.805176, 53.396432 ], [ 80.046387, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.958008, 50.805935 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.303376 ], [ 85.122070, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.835938, 49.823809 ], [ 87.363281, 49.210420 ], [ 86.594238, 48.545705 ], [ 85.781250, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.166016, 46.995241 ], [ 83.188477, 47.323931 ], [ 82.463379, 45.537137 ], [ 81.958008, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.266113, 42.342305 ], [ 79.650879, 42.488302 ], [ 79.145508, 42.859860 ], [ 77.651367, 42.956423 ], [ 76.003418, 42.988576 ], [ 75.629883, 42.875964 ], [ 74.223633, 43.293200 ], [ 73.652344, 43.084937 ], [ 73.498535, 42.504503 ], [ 71.850586, 42.843751 ], [ 71.191406, 42.698586 ], [ 70.971680, 42.261049 ], [ 70.400391, 42.081917 ], [ 69.082031, 41.376809 ], [ 68.642578, 40.663973 ], [ 68.269043, 40.663973 ], [ 67.983398, 41.129021 ], [ 66.708984, 41.162114 ], [ 66.511230, 41.983994 ], [ 66.027832, 42.000325 ], [ 66.093750, 42.988576 ], [ 64.907227, 43.723475 ], [ 63.193359, 43.644026 ], [ 62.006836, 43.500752 ], [ 61.062012, 44.402392 ], [ 58.513184, 45.583290 ], [ 55.942383, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 54.755859, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.954102, 42.114524 ], [ 52.514648, 41.787697 ], [ 52.448730, 42.032974 ], [ 52.690430, 42.439674 ], [ 52.514648, 42.795401 ], [ 51.350098, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.339355, 44.276671 ], [ 50.317383, 44.606113 ], [ 51.284180, 44.512176 ], [ 51.328125, 45.243953 ], [ 52.163086, 45.413876 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.225453 ], [ 53.041992, 46.845164 ], [ 52.053223, 46.800059 ], [ 51.196289, 47.040182 ], [ 50.031738, 46.604167 ], [ 49.108887, 46.392411 ], [ 48.603516, 46.558860 ], [ 48.691406, 47.070122 ], [ 48.054199, 47.739323 ], [ 47.307129, 47.709762 ], [ 46.472168, 48.385442 ], [ 47.043457, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.581543, 49.866317 ], [ 48.713379, 50.597186 ], [ 50.778809, 51.686180 ], [ 52.338867, 51.713416 ], [ 54.536133, 51.027576 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.055207 ], [ 59.655762, 50.541363 ], [ 59.941406, 50.833698 ], [ 61.347656, 50.792047 ], [ 61.589355, 51.275662 ], [ 59.963379, 51.957807 ], [ 60.930176, 52.442618 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.975108 ], [ 60.974121, 53.657661 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.676270, 54.597528 ], [ 68.181152, 54.965002 ], [ 69.060059, 55.379110 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.017830 ], [ 51.130371, 11.738302 ], [ 51.042480, 11.156845 ], [ 51.042480, 10.639014 ], [ 50.844727, 10.271681 ], [ 50.559082, 9.188870 ], [ 50.075684, 8.080985 ], [ 49.460449, 6.795535 ], [ 48.603516, 5.331644 ], [ 47.746582, 4.214943 ], [ 46.560059, 2.855263 ], [ 45.571289, 2.043024 ], [ 44.077148, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.594238, -1.691649 ], [ 41.000977, -0.856902 ], [ 41.000977, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.857910, 3.908099 ], [ 42.121582, 4.236856 ], [ 42.780762, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.790527, 7.993957 ], [ 48.493652, 8.841651 ], [ 48.933105, 9.449062 ], [ 48.955078, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.566144 ], [ 50.251465, 11.673755 ], [ 50.734863, 12.017830 ], [ 51.108398, 12.017830 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.747012 ], [ 59.985352, 42.228517 ], [ 60.095215, 41.426253 ], [ 60.468750, 41.211722 ], [ 61.545410, 41.261291 ], [ 61.875000, 41.079351 ], [ 62.380371, 40.044438 ], [ 63.522949, 39.368279 ], [ 64.182129, 38.891033 ], [ 65.214844, 38.393339 ], [ 66.555176, 37.978845 ], [ 66.511230, 37.352693 ], [ 66.225586, 37.387617 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.300275 ], [ 64.753418, 37.107765 ], [ 64.555664, 36.315125 ], [ 63.984375, 36.013561 ], [ 63.193359, 35.853440 ], [ 62.995605, 35.406961 ], [ 62.226562, 35.263562 ], [ 61.215820, 35.639441 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.405074 ], [ 58.447266, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.623535, 38.117272 ], [ 56.184082, 37.926868 ], [ 55.524902, 37.961523 ], [ 54.799805, 37.387617 ], [ 53.920898, 37.195331 ], [ 53.745117, 37.909534 ], [ 53.876953, 38.942321 ], [ 53.107910, 39.283294 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.027614 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.946714 ], [ 54.008789, 41.541478 ], [ 53.723145, 42.114524 ], [ 52.910156, 41.869561 ], [ 52.822266, 41.129021 ], [ 52.514648, 41.787697 ], [ 52.954102, 42.114524 ], [ 54.074707, 42.326062 ], [ 54.755859, 42.049293 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.106934, 41.327326 ], [ 56.931152, 41.820455 ], [ 57.788086, 42.163403 ], [ 58.623047, 42.747012 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.429730 ], [ 82.331543, 30.107118 ], [ 83.342285, 29.458731 ], [ 83.891602, 29.324720 ], [ 84.243164, 28.844674 ], [ 85.012207, 28.632747 ], [ 85.825195, 28.207609 ], [ 86.967773, 27.974998 ], [ 88.132324, 27.877928 ], [ 88.044434, 27.449790 ], [ 88.176270, 26.804461 ], [ 88.066406, 26.411551 ], [ 87.231445, 26.391870 ], [ 86.022949, 26.627818 ], [ 85.253906, 26.725987 ], [ 84.682617, 27.235095 ], [ 83.298340, 27.371767 ], [ 82.001953, 27.916767 ], [ 81.057129, 28.420391 ], [ 80.090332, 28.786918 ], [ 80.485840, 29.726222 ], [ 81.123047, 30.183122 ], [ 81.518555, 30.429730 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.168457, 37.125286 ], [ 75.893555, 36.668419 ], [ 76.201172, 35.889050 ], [ 77.849121, 35.496456 ], [ 76.882324, 34.651285 ], [ 75.761719, 34.506557 ], [ 74.245605, 34.741612 ], [ 73.762207, 34.307144 ], [ 74.113770, 33.431441 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.268555 ], [ 74.399414, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.454590, 29.973970 ], [ 72.817383, 28.960089 ], [ 71.784668, 27.916767 ], [ 70.620117, 27.994401 ], [ 69.521484, 26.941660 ], [ 70.180664, 26.490240 ], [ 70.290527, 25.720735 ], [ 70.839844, 25.204941 ], [ 71.037598, 24.347097 ], [ 68.840332, 24.347097 ], [ 68.181152, 23.684774 ], [ 67.456055, 23.946096 ], [ 67.148438, 24.666986 ], [ 66.379395, 25.423431 ], [ 64.533691, 25.224820 ], [ 62.907715, 25.224820 ], [ 61.501465, 25.085599 ], [ 61.875000, 26.234302 ], [ 63.325195, 26.745610 ], [ 63.237305, 27.215556 ], [ 62.753906, 27.371767 ], [ 62.731934, 28.265682 ], [ 61.765137, 28.690588 ], [ 61.369629, 29.305561 ], [ 60.886230, 29.821583 ], [ 62.556152, 29.324720 ], [ 63.544922, 29.458731 ], [ 64.160156, 29.343875 ], [ 64.357910, 29.554345 ], [ 65.039062, 29.477861 ], [ 66.357422, 29.878755 ], [ 66.379395, 30.732393 ], [ 66.950684, 31.297328 ], [ 67.675781, 31.297328 ], [ 67.785645, 31.578535 ], [ 68.554688, 31.709476 ], [ 68.928223, 31.615966 ], [ 69.323730, 31.896214 ], [ 69.257812, 32.491230 ], [ 69.697266, 33.100745 ], [ 70.334473, 33.358062 ], [ 69.938965, 34.016242 ], [ 70.883789, 33.979809 ], [ 71.169434, 34.343436 ], [ 71.125488, 34.723555 ], [ 71.608887, 35.155846 ], [ 71.499023, 35.639441 ], [ 71.257324, 36.066862 ], [ 71.850586, 36.509636 ], [ 72.927246, 36.721274 ], [ 74.069824, 36.826875 ], [ 74.575195, 37.020098 ], [ 75.168457, 37.125286 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.571777, 26.450902 ], [ 89.362793, 26.017298 ], [ 89.846191, 25.958045 ], [ 89.934082, 25.264568 ], [ 90.000000, 25.264568 ], [ 90.878906, 25.125393 ], [ 91.757812, 25.145285 ], [ 91.757812, 24.106647 ], [ 91.472168, 24.066528 ], [ 91.164551, 23.503552 ], [ 91.713867, 22.978624 ], [ 91.757812, 23.180764 ], [ 91.757812, 22.289096 ], [ 91.428223, 22.755921 ], [ 90.505371, 22.796439 ], [ 90.593262, 22.390714 ], [ 90.285645, 21.841105 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.044913 ], [ 89.714355, 21.861499 ], [ 89.428711, 21.963425 ], [ 89.033203, 22.044913 ], [ 88.879395, 22.877440 ], [ 88.527832, 23.624395 ], [ 88.703613, 24.226929 ], [ 88.088379, 24.507143 ], [ 88.308105, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.220215, 25.760320 ], [ 88.571777, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.664062, 5.244128 ], [ 26.411133, 5.156599 ], [ 27.048340, 5.134715 ], [ 27.377930, 5.222247 ], [ 27.993164, 4.412137 ], [ 28.432617, 4.280680 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.729004, 4.587376 ], [ 29.948730, 4.171115 ], [ 30.827637, 3.513421 ], [ 30.783691, 2.328460 ], [ 31.179199, 2.196727 ], [ 30.849609, 1.845384 ], [ 30.476074, 1.581830 ], [ 30.080566, 1.054628 ], [ 29.882812, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.597168, -0.593251 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.625758 ], [ 29.289551, -1.757537 ], [ 16.391602, -1.757537 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.644043, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.907715, 1.735574 ], [ 18.105469, 2.372369 ], [ 18.391113, 2.899153 ], [ 18.544922, 4.193030 ], [ 18.940430, 4.696879 ], [ 19.467773, 5.025283 ], [ 20.302734, 4.696879 ], [ 20.939941, 4.324501 ], [ 21.665039, 4.214943 ], [ 22.412109, 4.017699 ], [ 22.697754, 4.631179 ], [ 22.851562, 4.696879 ], [ 23.291016, 4.609278 ], [ 24.411621, 5.112830 ], [ 24.807129, 4.893941 ], [ 25.136719, 4.915833 ], [ 25.290527, 5.178482 ], [ 25.664062, 5.244128 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.652943 ], [ 90.725098, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.813477, 49.468124 ], [ 87.363281, 49.210420 ], [ 86.835938, 49.823809 ], [ 85.539551, 49.696062 ], [ 85.122070, 50.120578 ], [ 84.418945, 50.303376 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.958008, 50.805935 ], [ 80.573730, 51.385495 ], [ 80.046387, 50.861444 ], [ 77.805176, 53.396432 ], [ 76.530762, 54.175297 ], [ 76.904297, 54.482805 ], [ 74.377441, 53.540307 ], [ 73.432617, 53.488046 ], [ 73.520508, 54.033586 ], [ 72.224121, 54.380557 ], [ 71.191406, 54.136696 ], [ 70.861816, 55.166319 ], [ 69.060059, 55.379110 ], [ 68.181152, 54.965002 ], [ 65.676270, 54.597528 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.657661 ], [ 61.699219, 52.975108 ], [ 60.732422, 52.722986 ], [ 60.930176, 52.442618 ], [ 59.963379, 51.957807 ], [ 61.589355, 51.275662 ], [ 61.347656, 50.792047 ], [ 59.941406, 50.833698 ], [ 59.655762, 50.541363 ], [ 58.359375, 51.055207 ], [ 56.777344, 51.041394 ], [ 55.722656, 50.625073 ], [ 54.536133, 51.027576 ], [ 52.338867, 51.713416 ], [ 50.778809, 51.686180 ], [ 48.713379, 50.597186 ], [ 48.581543, 49.866317 ], [ 47.548828, 50.457504 ], [ 46.757812, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.472168, 48.385442 ], [ 47.307129, 47.709762 ], [ 48.054199, 47.739323 ], [ 48.691406, 47.070122 ], [ 48.603516, 46.558860 ], [ 49.108887, 46.392411 ], [ 48.647461, 45.798170 ], [ 47.680664, 45.644768 ], [ 46.691895, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.504883, 42.988576 ], [ 48.581543, 41.804078 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.145570 ], [ 47.373047, 41.211722 ], [ 46.691895, 41.820455 ], [ 46.406250, 41.853196 ], [ 45.769043, 42.098222 ], [ 45.483398, 42.504503 ], [ 44.538574, 42.714732 ], [ 43.923340, 42.553080 ], [ 43.769531, 42.730874 ], [ 42.407227, 43.213183 ], [ 40.935059, 43.373112 ], [ 40.078125, 43.548548 ], [ 39.968262, 43.436966 ], [ 38.671875, 44.276671 ], [ 37.551270, 44.653024 ], [ 36.672363, 45.243953 ], [ 37.397461, 45.398450 ], [ 38.232422, 46.240652 ], [ 37.683105, 46.634351 ], [ 39.155273, 47.040182 ], [ 39.133301, 47.264320 ], [ 38.232422, 47.100045 ], [ 38.254395, 47.546872 ], [ 38.781738, 47.827908 ], [ 39.748535, 47.901614 ], [ 39.902344, 48.224673 ], [ 39.682617, 48.777913 ], [ 40.078125, 49.310799 ], [ 40.078125, 49.596470 ], [ 38.605957, 49.922935 ], [ 38.012695, 49.908787 ], [ 37.397461, 50.387508 ], [ 36.628418, 50.219095 ], [ 35.354004, 50.569283 ], [ 35.375977, 50.778155 ], [ 35.024414, 51.206883 ], [ 34.233398, 51.248163 ], [ 34.145508, 51.563412 ], [ 34.387207, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.241256 ], [ 32.409668, 52.281602 ], [ 32.167969, 52.066000 ], [ 31.794434, 52.106505 ], [ 31.552734, 52.736292 ], [ 31.311035, 53.067627 ], [ 31.508789, 53.159947 ], [ 32.299805, 53.133590 ], [ 32.695312, 53.343993 ], [ 32.409668, 53.618579 ], [ 31.728516, 53.787672 ], [ 31.794434, 53.969012 ], [ 31.376953, 54.149567 ], [ 30.761719, 54.813348 ], [ 30.981445, 55.078367 ], [ 30.871582, 55.553495 ], [ 29.904785, 55.788929 ], [ 29.377441, 55.665193 ], [ 29.223633, 55.912273 ], [ 28.168945, 56.170023 ], [ 27.861328, 56.752723 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.468589 ], [ 27.729492, 57.786233 ], [ 27.421875, 58.722599 ], [ 28.125000, 59.299552 ], [ 27.993164, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.081055, 60.500525 ], [ 30.212402, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.865169 ], [ 30.036621, 63.548552 ], [ 30.454102, 64.206377 ], [ 29.553223, 64.951465 ], [ 30.212402, 65.802776 ], [ 29.509277, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.377441, 67.204032 ], [ 41.088867, 67.204032 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 33.464355, 66.513260 ], [ 34.826660, 65.901653 ], [ 34.936523, 64.415921 ], [ 36.232910, 64.110602 ], [ 37.023926, 63.850354 ], [ 37.133789, 64.330391 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.146115 ], [ 39.594727, 64.520097 ], [ 40.429688, 64.764759 ], [ 39.770508, 65.494741 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.416748 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.538574, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.571289, 67.007428 ], [ 46.362305, 66.670387 ], [ 47.900391, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.487793, 67.204032 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.169390 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ 21.269531, 55.191412 ], [ 22.324219, 55.015426 ], [ 22.763672, 54.851315 ], [ 22.653809, 54.584797 ], [ 22.741699, 54.329338 ], [ 20.895996, 54.316523 ], [ 19.665527, 54.418930 ], [ 19.885254, 54.863963 ], [ 21.269531, 55.191412 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.168945, 71.187754 ], [ 31.289062, 70.451508 ], [ 30.014648, 70.185103 ], [ 31.113281, 69.557553 ], [ 29.399414, 69.154740 ], [ 28.586426, 69.060712 ], [ 29.025879, 69.763757 ], [ 27.729492, 70.162746 ], [ 26.191406, 69.824471 ], [ 25.686035, 69.092100 ], [ 24.741211, 68.648556 ], [ 23.664551, 68.887274 ], [ 22.368164, 68.839735 ], [ 21.247559, 69.372573 ], [ 20.654297, 69.107777 ], [ 20.017090, 69.060712 ], [ 19.885254, 68.407268 ], [ 17.995605, 68.568414 ], [ 17.731934, 68.007571 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.117188, 66.196009 ], [ 14.677734, 65.802776 ], [ 12.260742, 65.802776 ], [ 13.117676, 66.513260 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.560384 ], [ 19.182129, 69.816891 ], [ 21.379395, 70.252029 ], [ 23.027344, 70.199994 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.168945, 71.187754 ] ] ], [ [ [ 16.984863, 80.050460 ], [ 18.259277, 79.702907 ], [ 21.555176, 78.954560 ], [ 19.028320, 78.560488 ], [ 18.479004, 77.827957 ], [ 17.600098, 77.636542 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.379906 ], [ 14.677734, 77.734951 ], [ 13.183594, 78.025574 ], [ 11.228027, 78.870048 ], [ 10.437012, 79.651722 ], [ 13.183594, 80.008612 ], [ 13.710938, 79.659613 ], [ 15.139160, 79.675377 ], [ 15.534668, 80.016233 ], [ 16.984863, 80.050460 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.054255 ], [ 25.927734, 79.516660 ], [ 23.027344, 79.400085 ], [ 20.083008, 79.564527 ], [ 19.907227, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.380371, 80.320120 ], [ 20.456543, 80.596909 ], [ 21.906738, 80.356995 ], [ 22.917480, 80.657741 ] ] ], [ [ [ 22.895508, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.719238, 77.851100 ], [ 22.500000, 77.442164 ], [ 20.720215, 77.674122 ], [ 21.423340, 77.934055 ], [ 20.808105, 78.255861 ], [ 22.895508, 78.455425 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.145996, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.518555, 69.060712 ], [ 40.297852, 67.933397 ], [ 41.066895, 67.458082 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 33.464355, 66.513260 ], [ 34.826660, 65.901653 ], [ 34.826660, 65.802776 ], [ 30.212402, 65.802776 ], [ 29.509277, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.454590, 68.366801 ], [ 28.586426, 69.060712 ], [ 29.399414, 69.154740 ], [ 31.113281, 69.557553 ], [ 32.145996, 69.907667 ] ] ], [ [ [ 40.473633, 65.802776 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.416748 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.538574, 66.757250 ], [ 43.703613, 67.348325 ], [ 44.187012, 67.949900 ], [ 43.461914, 68.568414 ], [ 46.252441, 68.244968 ], [ 46.823730, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.571289, 67.007428 ], [ 46.362305, 66.670387 ], [ 47.900391, 66.886972 ], [ 48.142090, 67.525373 ], [ 50.229492, 67.999341 ], [ 53.723145, 68.855592 ], [ 54.470215, 68.807986 ], [ 53.481445, 68.204212 ], [ 54.733887, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.326660, 68.463800 ], [ 58.798828, 68.879358 ], [ 59.941406, 68.277521 ], [ 61.083984, 68.942607 ], [ 60.029297, 69.519147 ], [ 60.556641, 69.847193 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.232789 ], [ 68.510742, 68.089709 ], [ 69.191895, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.137207, 69.357086 ], [ 66.928711, 69.449842 ], [ 67.258301, 69.930300 ], [ 66.730957, 70.707212 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.931344 ], [ 69.191895, 72.842021 ], [ 69.938965, 73.041829 ], [ 72.597656, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.850586, 71.406172 ], [ 72.465820, 71.088305 ], [ 72.795410, 70.392606 ], [ 72.575684, 69.021414 ], [ 73.674316, 68.407268 ], [ 73.234863, 67.742759 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.169390 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.280530 ], [ 75.058594, 67.759398 ], [ 74.465332, 68.326262 ], [ 74.948730, 68.989925 ], [ 73.850098, 69.068563 ], [ 73.608398, 69.626510 ], [ 74.399414, 70.627197 ], [ 73.103027, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.663086, 72.829052 ], [ 75.168457, 72.854981 ], [ 75.695801, 72.302431 ], [ 75.300293, 71.335983 ], [ 76.354980, 71.152294 ], [ 75.915527, 71.869909 ], [ 77.585449, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.746432 ], [ 80.617676, 72.580829 ], [ 80.507812, 73.646359 ], [ 82.243652, 73.849286 ], [ 84.660645, 73.806447 ], [ 86.835938, 73.934634 ], [ 86.022949, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.140778 ], [ 90.000000, 75.573993 ], [ 90.263672, 75.639536 ], [ 91.757812, 75.715633 ], [ 91.757812, 65.802776 ], [ 40.473633, 65.802776 ] ] ], [ [ [ 68.159180, 76.940488 ], [ 68.862305, 76.542411 ], [ 68.181152, 76.232138 ], [ 64.643555, 75.737303 ], [ 61.589355, 75.258649 ], [ 58.469238, 74.307353 ], [ 56.997070, 73.334161 ], [ 55.415039, 72.369105 ], [ 55.634766, 71.538830 ], [ 57.546387, 70.721726 ], [ 56.953125, 70.634484 ], [ 53.679199, 70.765206 ], [ 53.415527, 71.208999 ], [ 51.613770, 71.476106 ], [ 51.459961, 72.012945 ], [ 52.470703, 72.228809 ], [ 52.448730, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.625101 ], [ 55.634766, 75.078669 ], [ 57.875977, 75.606801 ], [ 61.171875, 76.253039 ], [ 64.511719, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.159180, 76.940488 ] ] ], [ [ [ 50.031738, 80.918027 ], [ 51.525879, 80.700447 ], [ 51.130371, 80.546518 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.338575 ], [ 48.757324, 80.174965 ], [ 47.592773, 80.008612 ], [ 46.516113, 80.245949 ], [ 47.065430, 80.557338 ], [ 44.846191, 80.589727 ], [ 46.801758, 80.771192 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.513982 ], [ 49.108887, 80.753556 ], [ 50.031738, 80.918027 ] ] ], [ [ [ 91.757812, 80.495859 ], [ 91.757812, 80.257110 ], [ 91.186523, 80.342262 ], [ 91.757812, 80.495859 ] ] ] ] } } ] } ] } , @@ -225,9 +227,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, -66.399160 ], [ 88.352051, -66.486976 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.399160 ] ] ], [ [ [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ], [ 92.614746, -67.187000 ], [ 93.339844, -67.204032 ], [ 90.834961, -67.204032 ] ] ], [ [ [ 93.581543, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.141602, -67.204032 ], [ 93.581543, -67.204032 ] ] ], [ [ [ 98.063965, -67.204032 ], [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ], [ 98.063965, -67.204032 ] ] ], [ [ [ 99.799805, -67.204032 ], [ 100.393066, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.579590, -66.311035 ], [ 102.832031, -65.567550 ], [ 103.491211, -65.703518 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.193848, -66.938669 ], [ 107.160645, -66.955877 ], [ 108.083496, -66.955877 ], [ 109.160156, -66.835165 ], [ 110.236816, -66.705169 ], [ 110.808105, -66.513260 ], [ 111.071777, -66.425537 ], [ 111.752930, -66.133854 ], [ 112.873535, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.895020, -66.390361 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.705169 ], [ 116.696777, -66.661684 ], [ 117.377930, -66.912834 ], [ 118.586426, -67.169955 ], [ 119.025879, -67.204032 ], [ 99.799805, -67.204032 ] ] ], [ [ [ 120.673828, -67.204032 ], [ 120.871582, -67.187000 ], [ 121.662598, -66.878345 ], [ 122.321777, -66.565747 ], [ 122.893066, -66.513260 ], [ 123.222656, -66.486976 ], [ 123.398438, -66.513260 ], [ 124.123535, -66.626840 ], [ 125.156250, -66.722541 ], [ 126.101074, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.704590, -66.583217 ], [ 130.187988, -66.513260 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 134.758301, -66.213739 ], [ 135.043945, -65.721594 ], [ 135.065918, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.208496, -66.443107 ], [ 136.296387, -66.513260 ], [ 136.625977, -66.783249 ], [ 137.460938, -66.955877 ], [ 138.603516, -66.895596 ], [ 139.921875, -66.878345 ], [ 140.822754, -66.817872 ], [ 142.119141, -66.817872 ], [ 143.063965, -66.800567 ], [ 144.382324, -66.835165 ], [ 145.502930, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.673828, -67.204032 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.741211, 1.757537 ], [ 114.631348, 1.428075 ], [ 113.818359, 1.230374 ], [ 112.873535, 1.493971 ], [ 112.390137, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.988720 ], [ 110.522461, 0.769020 ], [ 109.841309, 1.340210 ], [ 109.731445, 1.757537 ], [ 110.192871, 1.757537 ], [ 110.390625, 1.669686 ], [ 110.786133, 1.757537 ], [ 114.741211, 1.757537 ] ] ], [ [ [ 104.194336, 1.757537 ], [ 104.260254, 1.625758 ], [ 104.238281, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.832031, 1.757537 ], [ 104.194336, 1.757537 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.980469, -8.885072 ], [ 125.068359, -9.102097 ], [ 125.090332, -9.405710 ], [ 124.431152, -10.141932 ], [ 123.574219, -10.358151 ], [ 123.464355, -10.250060 ], [ 123.552246, -9.903921 ], [ 123.991699, -9.297307 ], [ 124.980469, -8.885072 ] ] ], [ [ [ 119.904785, -9.362353 ], [ 120.432129, -9.665738 ], [ 120.783691, -9.968851 ], [ 120.717773, -10.250060 ], [ 120.300293, -10.271681 ], [ 118.959961, -9.557417 ], [ 119.904785, -9.362353 ] ] ], [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.790990 ], [ 134.143066, -1.164471 ], [ 134.428711, -2.767478 ], [ 135.461426, -3.359889 ], [ 136.296387, -2.306506 ], [ 137.438965, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.196777, -2.064982 ], [ 139.921875, -2.416276 ], [ 140.998535, -2.613839 ], [ 141.042480, -9.123792 ], [ 140.141602, -8.298470 ], [ 139.130859, -8.102739 ], [ 138.889160, -8.385431 ], [ 137.614746, -8.407168 ], [ 138.032227, -7.602108 ], [ 138.669434, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.397273 ], [ 135.988770, -4.543570 ], [ 135.175781, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.374023, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.758789, -3.754634 ], [ 132.758789, -3.316018 ], [ 131.989746, -2.833317 ], [ 133.066406, -2.460181 ], [ 133.791504, -2.482133 ], [ 133.703613, -2.218684 ], [ 132.231445, -2.218684 ], [ 131.835938, -1.625758 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.944781 ], [ 131.879883, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.256836, -8.363693 ], [ 118.872070, -8.276727 ], [ 119.135742, -8.711359 ], [ 117.290039, -9.037003 ], [ 116.740723, -9.037003 ], [ 117.092285, -8.450639 ], [ 117.641602, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 122.915039, -8.102739 ], [ 122.761230, -8.646196 ], [ 121.267090, -8.928487 ], [ 119.926758, -8.819939 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.233237 ], [ 121.354980, -8.537565 ], [ 122.014160, -8.472372 ], [ 122.915039, -8.102739 ] ] ], [ [ [ 106.062012, -5.900189 ], [ 107.270508, -5.965754 ], [ 108.083496, -6.358975 ], [ 108.479004, -6.424484 ], [ 108.632812, -6.773716 ], [ 110.544434, -6.882800 ], [ 110.764160, -6.468151 ], [ 112.609863, -6.948239 ], [ 112.983398, -7.602108 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.363693 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.341953 ], [ 112.565918, -8.385431 ], [ 111.533203, -8.298470 ], [ 110.588379, -8.124491 ], [ 109.423828, -7.732765 ], [ 108.698730, -7.645665 ], [ 108.281250, -7.776309 ], [ 106.457520, -7.362467 ], [ 106.281738, -6.926427 ], [ 105.358887, -6.860985 ], [ 106.062012, -5.900189 ] ] ], [ [ [ 117.971191, 1.757537 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.790990 ], [ 117.487793, 0.109863 ], [ 117.487793, 0.000000 ], [ 117.531738, -0.812961 ], [ 116.564941, -1.493971 ], [ 116.542969, -2.482133 ], [ 116.147461, -4.017699 ], [ 115.993652, -3.666928 ], [ 114.873047, -4.105369 ], [ 114.477539, -3.491489 ], [ 113.752441, -3.447625 ], [ 113.269043, -3.118576 ], [ 112.060547, -3.491489 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.052754 ], [ 110.236816, -2.943041 ], [ 110.083008, -1.603794 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.028320, 0.000000 ], [ 108.962402, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.445801, 1.757537 ], [ 109.731445, 1.757537 ], [ 109.841309, 1.340210 ], [ 110.522461, 0.769020 ], [ 111.159668, 0.988720 ], [ 111.796875, 0.900842 ], [ 112.390137, 1.406109 ], [ 112.873535, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.631348, 1.428075 ], [ 114.741211, 1.757537 ], [ 117.971191, 1.757537 ] ] ], [ [ [ 102.062988, 1.757537 ], [ 102.502441, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.842773, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.447266, -0.725078 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.779499 ], [ 104.897461, -2.350415 ], [ 105.622559, -2.438229 ], [ 106.105957, -3.074695 ], [ 105.864258, -4.302591 ], [ 105.820312, -5.856475 ], [ 104.721680, -5.878332 ], [ 103.864746, -5.047171 ], [ 102.590332, -4.214943 ], [ 102.150879, -3.623071 ], [ 101.403809, -2.811371 ], [ 100.898438, -2.043024 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.635254, 1.757537 ], [ 102.062988, 1.757537 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.069336, 0.373533 ], [ 120.190430, 0.241699 ], [ 120.146484, 0.000000 ], [ 120.036621, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.486816, -0.966751 ], [ 123.332520, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.911267 ], [ 122.453613, -3.184394 ], [ 122.277832, -3.535352 ], [ 123.178711, -4.696879 ], [ 123.156738, -5.353521 ], [ 122.629395, -5.637853 ], [ 122.233887, -5.287887 ], [ 122.717285, -4.477856 ], [ 121.750488, -4.850154 ], [ 121.486816, -4.587376 ], [ 121.618652, -4.193030 ], [ 120.893555, -3.601142 ], [ 120.981445, -2.635789 ], [ 120.300293, -2.943041 ], [ 120.388184, -4.105369 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.681584 ], [ 119.377441, -5.375398 ], [ 119.663086, -4.455951 ], [ 119.509277, -3.491489 ], [ 119.091797, -3.491489 ], [ 118.762207, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.333496, -1.362176 ], [ 119.772949, 0.000000 ], [ 120.036621, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.662598, 1.010690 ], [ 122.937012, 0.878872 ], [ 124.079590, 0.922812 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.736328, -5.747174 ], [ 134.736328, -6.227934 ], [ 134.208984, -6.904614 ], [ 134.121094, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 127.990723, 1.757537 ], [ 128.012695, 1.625758 ], [ 128.605957, 1.537901 ], [ 128.693848, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.122559, 0.351560 ], [ 127.968750, -0.263671 ], [ 128.386230, -0.790990 ], [ 128.100586, -0.900842 ], [ 127.705078, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.757537 ], [ 127.990723, 1.757537 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.096636 ], [ 130.847168, -3.864255 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.902832, -3.403758 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 127.001953, -3.140516 ], [ 127.243652, -3.469557 ], [ 126.870117, -3.798484 ], [ 126.188965, -3.601142 ], [ 125.991211, -3.184394 ], [ 127.001953, -3.140516 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.276727 ], [ 127.331543, -8.407168 ], [ 126.979980, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.090332, -9.405710 ], [ 125.068359, -9.102097 ], [ 124.980469, -8.885072 ], [ 125.090332, -8.667918 ], [ 125.947266, -8.428904 ], [ 126.650391, -8.407168 ], [ 126.958008, -8.276727 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.613839 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.283203, -4.368320 ], [ 145.832520, -4.872048 ], [ 145.986328, -5.462896 ], [ 147.656250, -6.096860 ], [ 147.897949, -6.620957 ], [ 146.975098, -6.730076 ], [ 147.194824, -7.384258 ], [ 148.095703, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.080400 ], [ 149.260254, -9.514079 ], [ 150.051270, -9.687398 ], [ 149.743652, -9.882275 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.595821 ], [ 150.029297, -10.660608 ], [ 149.787598, -10.401378 ], [ 147.919922, -10.141932 ], [ 147.128906, -9.492408 ], [ 146.579590, -8.950193 ], [ 146.052246, -8.080985 ], [ 144.755859, -7.623887 ], [ 143.898926, -7.928675 ], [ 143.283691, -8.254983 ], [ 143.415527, -8.993600 ], [ 142.624512, -9.318990 ], [ 142.075195, -9.167179 ], [ 141.042480, -9.123792 ], [ 140.998535, -2.613839 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.336426, -4.324501 ], [ 152.314453, -4.872048 ], [ 151.984863, -5.484768 ], [ 151.457520, -5.572250 ], [ 151.303711, -5.834616 ], [ 150.249023, -6.315299 ], [ 149.721680, -6.315299 ], [ 148.886719, -6.031311 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.304199, -5.594118 ], [ 149.853516, -5.506640 ], [ 150.007324, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.249023, -5.528511 ], [ 150.820312, -5.462896 ], [ 151.083984, -5.112830 ], [ 151.655273, -4.762573 ], [ 151.545410, -4.171115 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 154.665527, -5.047171 ], [ 154.753418, -5.353521 ], [ 155.061035, -5.572250 ], [ 155.544434, -6.206090 ], [ 156.027832, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.610352, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.665527, -5.047171 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 151.479492, -2.789425 ], [ 152.248535, -3.250209 ], [ 152.644043, -3.666928 ], [ 153.017578, -3.973861 ], [ 153.149414, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.644043, -4.171115 ], [ 152.402344, -3.798484 ], [ 151.391602, -3.030812 ], [ 150.666504, -2.745531 ], [ 150.952148, -2.504085 ] ] ] ] } } ] } ] } , @@ -237,7 +239,11 @@ , { "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.549805, 26.450902 ], [ 89.362793, 26.017298 ], [ 89.824219, 25.958045 ], [ 89.912109, 25.264568 ], [ 90.000000, 25.264568 ], [ 90.878906, 25.125393 ], [ 91.801758, 25.145285 ], [ 92.373047, 24.966140 ], [ 91.911621, 24.126702 ], [ 91.472168, 24.066528 ], [ 91.164551, 23.503552 ], [ 91.713867, 22.978624 ], [ 91.867676, 23.624395 ], [ 92.153320, 23.624395 ], [ 92.680664, 22.044913 ], [ 92.658691, 21.330315 ], [ 92.307129, 21.473518 ], [ 92.373047, 20.673905 ], [ 92.087402, 21.186973 ], [ 92.021484, 21.698265 ], [ 91.845703, 22.187405 ], [ 91.428223, 22.755921 ], [ 90.505371, 22.796439 ], [ 90.593262, 22.390714 ], [ 90.285645, 21.841105 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.963425 ], [ 89.033203, 22.044913 ], [ 88.879395, 22.877440 ], [ 88.527832, 23.624395 ], [ 88.703613, 24.226929 ], [ 88.242188, 24.427145 ], [ 88.242188, 24.766785 ], [ 88.308105, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.242188, 25.740529 ], [ 88.242188, 25.839449 ], [ 88.549805, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.136230, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.397273 ], [ 119.113770, 5.003394 ], [ 118.432617, 4.959615 ], [ 118.630371, 4.477856 ], [ 117.883301, 4.127285 ], [ 117.026367, 4.302591 ], [ 115.861816, 4.302591 ], [ 115.532227, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.631348, 1.428075 ], [ 113.818359, 1.208406 ], [ 112.873535, 1.493971 ], [ 112.390137, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.966751 ], [ 110.522461, 0.769020 ], [ 109.841309, 1.340210 ], [ 109.665527, 1.999106 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.379395, 2.701635 ], [ 111.796875, 2.877208 ], [ 113.005371, 3.096636 ], [ 113.708496, 3.886177 ], [ 114.213867, 4.521666 ], [ 114.653320, 3.995781 ], [ 114.873047, 4.346411 ], [ 115.356445, 4.324501 ], [ 115.444336, 5.441022 ], [ 116.213379, 6.140555 ], [ 116.718750, 6.926427 ], [ 117.136230, 6.926427 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.162109, 5.681584 ], [ 101.821289, 5.812757 ], [ 102.150879, 6.227934 ], [ 102.370605, 6.118708 ], [ 102.963867, 5.528511 ], [ 103.381348, 4.850154 ], [ 103.447266, 4.171115 ], [ 103.337402, 3.732708 ], [ 103.425293, 3.381824 ], [ 103.513184, 2.789425 ], [ 103.864746, 2.504085 ], [ 104.260254, 1.625758 ], [ 104.238281, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.955187 ], [ 101.403809, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.930020 ], [ 100.568848, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.031311 ], [ 100.085449, 6.468151 ], [ 100.261230, 6.642783 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.471955 ], [ 102.766113, 21.677848 ], [ 103.205566, 20.756114 ], [ 104.436035, 20.756114 ], [ 104.831543, 19.890723 ], [ 104.194336, 19.621892 ], [ 103.908691, 19.269665 ], [ 105.095215, 18.667063 ], [ 106.567383, 16.594081 ], [ 107.314453, 15.897942 ], [ 107.578125, 15.199386 ], [ 107.380371, 14.200488 ], [ 106.501465, 14.562318 ], [ 106.040039, 13.880746 ], [ 105.227051, 14.264383 ], [ 105.556641, 14.711135 ], [ 105.600586, 15.559544 ], [ 104.787598, 16.446622 ], [ 104.721680, 17.434511 ], [ 103.952637, 18.229351 ], [ 103.205566, 18.312811 ], [ 103.007812, 17.957832 ], [ 102.414551, 17.936929 ], [ 102.106934, 18.104087 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.396230 ], [ 101.293945, 19.456234 ], [ 100.612793, 19.497664 ], [ 100.546875, 20.097206 ], [ 100.129395, 20.406420 ], [ 100.327148, 20.776659 ], [ 101.184082, 21.432617 ], [ 101.271973, 21.207459 ], [ 101.799316, 21.166484 ], [ 101.645508, 22.309426 ], [ 102.172852, 22.471955 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 64.979359 ], [ 180.000000, 64.970064 ], [ 178.703613, 64.529548 ], [ 177.407227, 64.605038 ], [ 178.308105, 64.072200 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.494629, 62.562983 ], [ 179.230957, 62.298581 ], [ 177.363281, 62.522458 ], [ 174.572754, 61.762729 ], [ 173.693848, 61.648162 ], [ 172.155762, 60.951777 ], [ 170.705566, 60.337823 ], [ 170.332031, 59.877912 ], [ 168.903809, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.849609, 60.163376 ], [ 164.882812, 59.734253 ], [ 163.542480, 59.866883 ], [ 163.212891, 59.209688 ], [ 162.026367, 58.240164 ], [ 162.048340, 57.833055 ], [ 163.190918, 57.610107 ], [ 163.059082, 56.157788 ], [ 162.136230, 56.121060 ], [ 161.696777, 55.279115 ], [ 162.114258, 54.851315 ], [ 160.378418, 54.342149 ], [ 160.026855, 53.199452 ], [ 158.532715, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.796875, 51.013755 ], [ 156.423340, 51.699800 ], [ 155.983887, 53.159947 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.764768 ], [ 156.752930, 57.362090 ], [ 156.818848, 57.833055 ], [ 158.356934, 58.054632 ], [ 160.158691, 59.310768 ], [ 161.872559, 60.337823 ], [ 163.674316, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.461567 ], [ 162.663574, 61.637726 ], [ 160.114746, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.730957, 61.428261 ], [ 154.226074, 59.756395 ], [ 155.039062, 59.142135 ], [ 152.819824, 58.881942 ], [ 151.259766, 58.779591 ], [ 151.347656, 59.500880 ], [ 149.787598, 59.656642 ], [ 148.557129, 59.164668 ], [ 145.480957, 59.333189 ], [ 142.207031, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.724620 ], [ 136.713867, 54.597528 ], [ 137.197266, 53.981935 ], [ 138.164062, 53.748711 ], [ 138.801270, 54.252389 ], [ 139.899902, 54.188155 ], [ 141.350098, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.603027, 51.234407 ], [ 140.515137, 50.050085 ], [ 140.053711, 48.443778 ], [ 138.559570, 46.995241 ], [ 138.229980, 46.301406 ], [ 134.868164, 43.389082 ], [ 133.549805, 42.811522 ], [ 132.912598, 42.795401 ], [ 132.275391, 43.277205 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.212245 ], [ 130.649414, 42.391009 ], [ 130.627441, 42.908160 ], [ 131.154785, 42.924252 ], [ 131.286621, 44.103365 ], [ 131.022949, 44.964798 ], [ 131.879883, 45.321254 ], [ 133.110352, 45.135555 ], [ 133.769531, 46.118942 ], [ 134.121094, 47.204642 ], [ 134.494629, 47.576526 ], [ 135.021973, 48.472921 ], [ 133.374023, 48.180739 ], [ 132.517090, 47.783635 ], [ 131.000977, 47.783635 ], [ 130.583496, 48.734455 ], [ 129.396973, 49.439557 ], [ 127.661133, 49.752880 ], [ 127.287598, 50.736455 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.781436 ], [ 125.947266, 52.789476 ], [ 125.068359, 53.159947 ], [ 123.574219, 53.461890 ], [ 122.255859, 53.435719 ], [ 121.003418, 53.252069 ], [ 120.190430, 52.749594 ], [ 120.717773, 52.509535 ], [ 120.739746, 51.957807 ], [ 120.190430, 51.645294 ], [ 119.289551, 50.583237 ], [ 119.289551, 50.134664 ], [ 117.883301, 49.510944 ], [ 116.674805, 49.880478 ], [ 115.488281, 49.809632 ], [ 114.960938, 50.134664 ], [ 114.367676, 50.247205 ], [ 112.895508, 49.539469 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.124219 ], [ 109.401855, 49.296472 ], [ 108.479004, 49.282140 ], [ 107.863770, 49.795450 ], [ 106.896973, 50.275299 ], [ 105.886230, 50.401515 ], [ 104.633789, 50.275299 ], [ 103.688965, 50.092393 ], [ 102.260742, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.898438, 51.508742 ], [ 99.975586, 51.631657 ], [ 98.854980, 52.038977 ], [ 97.822266, 51.013755 ], [ 98.239746, 50.415519 ], [ 97.272949, 49.724479 ], [ 95.822754, 49.979488 ], [ 94.812012, 50.007739 ], [ 94.152832, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.241211, 50.805935 ], [ 90.725098, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.813477, 49.468124 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ], [ 181.757812, 67.204032 ], [ 181.757812, 65.403445 ], [ 181.647949, 65.385147 ], [ 181.098633, 65.739656 ], [ 181.318359, 66.107170 ], [ 180.109863, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ] ] ], [ [ [ 142.668457, 54.367759 ], [ 143.261719, 52.736292 ], [ 143.239746, 51.754240 ], [ 143.657227, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.857403 ], [ 143.525391, 46.830134 ], [ 143.503418, 46.134170 ], [ 142.756348, 46.739861 ], [ 142.097168, 45.966425 ], [ 141.899414, 46.800059 ], [ 142.031250, 47.783635 ], [ 141.899414, 48.850258 ], [ 142.141113, 49.610710 ], [ 142.185059, 50.944584 ], [ 141.591797, 51.930718 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.668457, 54.367759 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.790990 ], [ 134.143066, -1.164471 ], [ 134.252930, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.625758 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.944781 ], [ 131.879883, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.406109 ], [ 124.431152, 0.417477 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.417477 ], [ 121.069336, 0.373533 ], [ 120.190430, 0.241699 ], [ 120.146484, 0.000000 ], [ 120.036621, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.486816, -0.966751 ], [ 123.332520, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.838379, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.333496, -1.362176 ], [ 119.772949, 0.000000 ], [ 120.036621, 0.571280 ], [ 120.893555, 1.296276 ], [ 121.662598, 1.010690 ], [ 122.937012, 0.878872 ], [ 124.079590, 0.922812 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 117.026367, 4.302591 ], [ 117.883301, 4.127285 ], [ 117.312012, 3.228271 ], [ 118.059082, 2.284551 ], [ 117.883301, 1.823423 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.790990 ], [ 117.487793, 0.109863 ], [ 117.487793, 0.000000 ], [ 117.531738, -0.812961 ], [ 116.564941, -1.493971 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.083008, -1.603794 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.028320, 0.000000 ], [ 108.962402, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 1.999106 ], [ 109.841309, 1.340210 ], [ 110.522461, 0.769020 ], [ 111.159668, 0.966751 ], [ 111.796875, 0.900842 ], [ 112.390137, 1.406109 ], [ 112.873535, 1.493971 ], [ 113.818359, 1.208406 ], [ 114.631348, 1.428075 ], [ 115.136719, 2.811371 ], [ 115.532227, 3.162456 ], [ 115.861816, 4.302591 ], [ 117.026367, 4.302591 ] ] ], [ [ [ 95.295410, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.492676, 5.244128 ], [ 98.371582, 4.258768 ], [ 99.140625, 3.579213 ], [ 99.689941, 3.162456 ], [ 100.634766, 2.086941 ], [ 101.667480, 2.086941 ], [ 102.502441, 1.406109 ], [ 103.073730, 0.549308 ], [ 103.842773, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.447266, -0.725078 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.523926, -1.757537 ], [ 100.744629, -1.757537 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.032659 ], [ 98.613281, 1.823423 ], [ 97.712402, 2.460181 ], [ 97.185059, 3.316018 ], [ 96.416016, 3.864255 ], [ 95.383301, 4.959615 ], [ 95.295410, 5.484768 ] ] ], [ [ [ 137.329102, -1.757537 ], [ 137.438965, -1.713612 ], [ 138.339844, -1.713612 ], [ 138.471680, -1.757537 ], [ 137.329102, -1.757537 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.012695, 1.625758 ], [ 128.605957, 1.537901 ], [ 128.693848, 1.120534 ], [ 128.627930, 0.263671 ], [ 128.122559, 0.351560 ], [ 127.968750, -0.263671 ], [ 128.386230, -0.790990 ], [ 128.100586, -0.900842 ], [ 127.705078, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.801461 ], [ 127.924805, 2.174771 ] ] ] ] } } ] } ] } , @@ -276,6 +282,8 @@ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.987549, 66.861082 ], [ -140.987549, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.031982, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.472168, 59.461826 ], [ -135.472412, 59.784051 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.263916, 58.859224 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.569580, 60.081284 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.882354 ], [ -148.216553, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.721680, 59.706556 ], [ -150.600586, 59.366794 ], [ -151.710205, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.402588, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.281250, 58.864905 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.302490, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.360381 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.213660 ], [ -157.719727, 57.568888 ], [ -157.543945, 58.326799 ], [ -157.038574, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.510742, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.927334 ], [ -159.982910, 58.568252 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.344238, 61.074231 ], [ -166.113281, 61.496492 ], [ -165.728760, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.059082, 63.059937 ], [ -162.257080, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.510010, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.751465, 64.335150 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.420898, 64.685016 ], [ -166.838379, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -162.894287, 66.861082 ], [ -140.987549, 66.861082 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.381290 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ], [ -134.263916, 58.859224 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.472412, 59.784051 ], [ -136.472168, 59.461826 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.031982, 59.998986 ], [ -140.009766, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 66.513260 ], [ -140.987549, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 66.861082 ], [ -174.979248, 66.861082 ], [ -175.012207, 66.587583 ], [ -174.814453, 66.513260 ], [ -174.342041, 66.333095 ], [ -174.396973, 66.513260 ], [ -174.506836, 66.861082 ], [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.892578, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.435435 ], [ -172.551270, 64.458587 ], [ -172.957764, 64.249368 ], [ -173.891602, 64.282760 ], [ -174.649658, 64.628585 ], [ -175.979004, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.517516 ], [ -178.352051, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.681641, 66.111619 ], [ -179.879150, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.878906, 64.675619 ], [ -180.878906, 66.861082 ], [ -180.000000, 66.861082 ] ] ], [ [ [ -180.878906, 63.124572 ], [ -180.637207, 62.980189 ], [ -180.516357, 62.568045 ], [ -180.769043, 62.303688 ], [ -180.878906, 62.319003 ], [ -180.878906, 63.124572 ] ] ] ] } } ] } ] } , @@ -284,6 +292,8 @@ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.762207, 66.160511 ], [ -166.387939, 66.160511 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.574483 ], [ -163.652344, 66.574483 ] ] ], [ [ [ -161.740723, 66.160511 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.114476 ], [ -164.432373, 67.613405 ], [ -165.388184, 68.040461 ], [ -166.761475, 68.358699 ], [ -166.201172, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.368703 ], [ -162.927246, 69.858546 ], [ -161.905518, 70.333533 ], [ -160.927734, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.115234, 70.823031 ], [ -156.577148, 71.357067 ], [ -155.061035, 71.145195 ], [ -154.335938, 70.696320 ], [ -153.896484, 70.887885 ], [ -152.204590, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.429440 ], [ -149.721680, 70.528560 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.117959 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.151558 ], [ -142.075195, 69.850978 ], [ -140.987549, 69.710489 ], [ -140.987549, 66.160511 ], [ -161.740723, 66.160511 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.710489 ], [ -139.119873, 69.469116 ], [ -137.548828, 68.989925 ], [ -136.505127, 68.895187 ], [ -135.626221, 69.314440 ], [ -135.000000, 69.476821 ], [ -134.406738, 69.626510 ], [ -134.121094, 69.603549 ], [ -134.121094, 66.160511 ], [ -140.987549, 66.160511 ], [ -140.987549, 69.710489 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.878906, 69.236684 ], [ -180.000000, 68.962335 ], [ -177.550049, 68.200133 ], [ -174.924316, 67.204032 ], [ -175.012207, 66.583217 ], [ -174.814453, 66.513260 ], [ -174.342041, 66.333095 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.912834 ], [ -171.013184, 66.513260 ], [ -170.277100, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.878906, 66.160511 ], [ -180.878906, 69.236684 ] ] ], [ [ [ -180.000000, 71.514462 ], [ -179.868164, 71.556217 ], [ -179.022217, 71.556217 ], [ -177.572021, 71.269067 ], [ -177.659912, 71.130988 ], [ -178.692627, 70.891482 ], [ -180.000000, 70.830248 ], [ -180.878906, 70.790525 ], [ -180.878906, 71.230221 ], [ -180.000000, 71.514462 ] ] ] ] } } ] } ] } , @@ -303,9 +313,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.154627 ], [ -89.406738, 29.888281 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.200123 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.142566 ], [ -91.625977, 29.678508 ], [ -92.493896, 29.554345 ], [ -93.218994, 29.783449 ], [ -93.845215, 29.707139 ], [ -94.691162, 29.477861 ], [ -95.592041, 28.738764 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.371826, 26.686730 ], [ -97.327881, 26.204734 ], [ -97.141113, 25.869109 ], [ -97.525635, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.019775, 26.372185 ], [ -99.294434, 26.833875 ], [ -99.514160, 27.537500 ], [ -100.107422, 28.110749 ], [ -100.447998, 28.690588 ], [ -100.953369, 29.382175 ], [ -101.656494, 29.773914 ], [ -102.480469, 29.754840 ], [ -103.106689, 28.969701 ], [ -103.941650, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.699707, 30.116622 ], [ -105.029297, 30.637912 ], [ -105.633545, 31.081165 ], [ -106.138916, 31.400535 ], [ -106.501465, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.237305, 31.344254 ], [ -111.016846, 31.334871 ], [ -113.302002, 32.036020 ], [ -114.807129, 32.519026 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.290039, 33.045508 ], [ -117.938232, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.025348 ], [ -119.080811, 34.079962 ], [ -119.432373, 34.343436 ], [ -120.366211, 34.443159 ], [ -120.618896, 34.606085 ], [ -120.739746, 35.155846 ], [ -121.706543, 36.155618 ], [ -122.541504, 37.553288 ], [ -122.508545, 37.779399 ], [ -122.947998, 38.108628 ], [ -123.728027, 38.950865 ], [ -123.859863, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.145570 ], [ -124.200439, 41.640078 ], [ -89.121094, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.143066, 17.800996 ], [ -89.143066, 17.014768 ], [ -89.230957, 15.887376 ], [ -89.121094, 15.887376 ], [ -89.121094, 15.082732 ], [ -89.154053, 15.061515 ], [ -89.219971, 14.870469 ], [ -89.143066, 14.679254 ], [ -89.351807, 14.424040 ], [ -89.582520, 14.360191 ], [ -89.527588, 14.243087 ], [ -89.714355, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.880746 ], [ -90.087891, 13.731381 ], [ -90.604248, 13.902076 ], [ -91.230469, 13.923404 ], [ -91.691895, 14.125922 ], [ -92.230225, 14.541050 ], [ -92.197266, 14.827991 ], [ -92.087402, 15.061515 ], [ -92.230225, 15.252389 ], [ -91.746826, 16.066929 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.404470 ], [ -90.593262, 16.467695 ], [ -90.714111, 16.688817 ], [ -91.076660, 16.920195 ], [ -91.450195, 17.245744 ], [ -90.999756, 17.256236 ], [ -90.999756, 17.811456 ], [ -90.000000, 17.821916 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 15.082732 ], [ -89.121094, 14.360191 ], [ -89.351807, 14.424040 ], [ -89.143066, 14.679254 ], [ -89.219971, 14.870469 ], [ -89.154053, 15.061515 ], [ -89.121094, 15.082732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 17.968283 ], [ -89.121094, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.143066, 17.014768 ], [ -89.143066, 17.957832 ], [ -89.121094, 17.968283 ] ] ] } } ] } ] } , @@ -346,8 +354,6 @@ { "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.631592, -52.636397 ], [ -68.247070, -53.100621 ], [ -67.752686, -53.852527 ], [ -66.445312, -54.450880 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.203953 ], [ -66.445312, -55.254077 ], [ -66.961670, -54.895565 ], [ -67.554932, -54.870285 ], [ -68.631592, -54.870285 ], [ -68.631592, -52.636397 ] ] ], [ [ [ -62.281494, -40.313043 ], [ -62.138672, -40.672306 ], [ -62.666016, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.764648, -41.170384 ], [ -64.259033, -40.979898 ], [ -64.731445, -40.797177 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -64.973145, -42.057450 ], [ -64.302979, -42.358544 ], [ -63.753662, -42.049293 ], [ -63.457031, -42.561173 ], [ -64.379883, -42.875964 ], [ -65.181885, -43.500752 ], [ -65.324707, -44.504341 ], [ -65.566406, -45.042478 ], [ -66.511230, -45.042478 ], [ -67.291260, -45.552525 ], [ -67.576904, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.983887, -48.136767 ], [ -67.159424, -48.698212 ], [ -67.818604, -49.873398 ], [ -68.730469, -50.268277 ], [ -69.136963, -50.736455 ], [ -68.807373, -51.774638 ], [ -68.148193, -52.348763 ], [ -68.565674, -52.301761 ], [ -69.499512, -52.146973 ], [ -71.916504, -52.011937 ], [ -72.322998, -51.426614 ], [ -72.312012, -50.680797 ], [ -72.971191, -50.743408 ], [ -73.322754, -50.380502 ], [ -73.410645, -49.317961 ], [ -72.641602, -48.879167 ], [ -72.322998, -48.246626 ], [ -72.443848, -47.739323 ], [ -71.916504, -46.890232 ], [ -71.553955, -45.560218 ], [ -71.652832, -44.972571 ], [ -71.224365, -44.785734 ], [ -71.323242, -44.410240 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.413029 ], [ -72.147217, -42.252918 ], [ -71.740723, -42.057450 ], [ -71.894531, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.795654, -40.313043 ], [ -62.281494, -40.313043 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.522906 ], [ -68.631592, -52.636397 ], [ -68.631592, -54.870285 ], [ -67.554932, -54.870285 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.304138 ], [ -68.148193, -55.615589 ], [ -68.642578, -55.584555 ], [ -69.224854, -55.497527 ], [ -69.949951, -55.197683 ], [ -71.004639, -55.053203 ], [ -72.257080, -54.495568 ], [ -73.278809, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.047818 ], [ -72.432861, -53.716216 ], [ -71.103516, -54.078729 ], [ -70.587158, -53.618579 ], [ -70.268555, -52.935397 ], [ -69.345703, -52.522906 ] ] ], [ [ [ -71.795654, -40.313043 ], [ -71.916504, -40.830437 ], [ -71.894531, -40.979898 ], [ -71.740723, -42.057450 ], [ -72.147217, -42.252918 ], [ -71.916504, -43.413029 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.323242, -44.410240 ], [ -71.224365, -44.785734 ], [ -71.652832, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.916504, -46.890232 ], [ -72.443848, -47.739323 ], [ -72.322998, -48.246626 ], [ -72.641602, -48.879167 ], [ -73.410645, -49.317961 ], [ -73.322754, -50.380502 ], [ -72.971191, -50.743408 ], [ -72.312012, -50.680797 ], [ -72.322998, -51.426614 ], [ -71.916504, -52.011937 ], [ -69.499512, -52.146973 ], [ -68.565674, -52.301761 ], [ -69.455566, -52.295042 ], [ -69.938965, -52.536273 ], [ -70.839844, -52.902276 ], [ -71.004639, -53.833081 ], [ -71.422119, -53.859007 ], [ -72.553711, -53.533778 ], [ -73.696289, -52.835958 ], [ -74.948730, -52.261434 ], [ -75.256348, -51.631657 ], [ -74.970703, -51.048301 ], [ -75.476074, -50.380502 ], [ -75.607910, -48.676454 ], [ -75.179443, -47.717154 ], [ -74.124756, -46.942762 ], [ -75.640869, -46.649436 ], [ -74.685059, -45.767523 ], [ -74.344482, -44.103365 ], [ -73.234863, -44.457310 ], [ -72.718506, -42.382894 ], [ -73.388672, -42.122673 ], [ -73.696289, -43.365126 ], [ -74.333496, -43.229195 ], [ -74.014893, -41.795888 ], [ -73.872070, -40.979898 ], [ -73.751221, -40.313043 ], [ -71.795654, -40.313043 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.810059, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.590332, -63.860036 ], [ -58.612061, -64.153742 ], [ -59.040527, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.311349 ], [ -62.017822, -64.802204 ], [ -62.512207, -65.095272 ], [ -62.644043, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.116699, -66.191574 ], [ -62.797852, -66.425537 ], [ -63.742676, -66.504502 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.839487 ], [ -64.335938, -66.861082 ], [ -67.225342, -66.861082 ], [ -66.577148, -66.513260 ], [ -66.049805, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.603878 ], [ -64.171143, -65.173806 ], [ -63.621826, -64.900250 ], [ -62.995605, -64.642704 ], [ -62.039795, -64.586185 ], [ -61.413574, -64.273223 ], [ -60.710449, -64.077003 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.704722 ], [ -58.590088, -63.391522 ], [ -57.810059, -63.273182 ] ] ] } } ] } ] } , @@ -357,7 +363,7 @@ , { "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.102539, -0.054932 ], [ -74.443359, -0.538322 ], [ -74.124756, -1.010690 ], [ -73.652344, -1.263325 ], [ -73.070068, -2.306506 ], [ -72.322998, -2.438229 ], [ -71.773682, -2.174771 ], [ -71.411133, -2.350415 ], [ -70.806885, -2.262595 ], [ -70.048828, -2.723583 ], [ -70.686035, -3.743671 ], [ -70.389404, -3.765597 ], [ -69.895020, -4.302591 ], [ -70.795898, -4.258768 ], [ -70.927734, -4.401183 ], [ -71.740723, -4.598327 ], [ -72.894287, -5.276948 ], [ -72.960205, -5.747174 ], [ -73.212891, -6.096860 ], [ -73.114014, -6.631870 ], [ -73.718262, -6.926427 ], [ -73.718262, -7.340675 ], [ -73.981934, -7.525873 ], [ -73.564453, -8.428904 ], [ -73.015137, -9.037003 ], [ -73.223877, -9.459899 ], [ -72.564697, -9.524914 ], [ -72.180176, -10.055403 ], [ -71.301270, -10.077037 ], [ -70.477295, -9.492408 ], [ -70.543213, -11.016689 ], [ -70.092773, -11.124507 ], [ -69.521484, -10.951978 ], [ -68.664551, -12.565287 ], [ -68.873291, -12.897489 ], [ -68.928223, -13.603278 ], [ -68.950195, -14.455958 ], [ -69.334717, -14.955399 ], [ -69.158936, -15.326572 ], [ -69.389648, -15.665354 ], [ -68.961182, -16.499299 ], [ -69.587402, -17.581194 ], [ -69.851074, -18.093644 ], [ -70.367432, -18.354526 ], [ -71.367188, -17.780074 ], [ -71.455078, -17.361125 ], [ -73.443604, -16.362310 ], [ -75.234375, -15.273587 ], [ -76.003418, -14.647368 ], [ -76.420898, -13.827412 ], [ -76.256104, -13.539201 ], [ -77.102051, -12.221918 ], [ -78.090820, -10.379765 ], [ -79.035645, -8.385431 ], [ -79.442139, -7.928675 ], [ -79.760742, -7.199001 ], [ -80.529785, -6.544560 ], [ -81.243896, -6.140555 ], [ -80.925293, -5.692516 ], [ -81.408691, -4.740675 ], [ -81.101074, -4.039618 ], [ -80.299072, -3.403758 ], [ -80.178223, -3.820408 ], [ -80.463867, -4.061536 ], [ -80.441895, -4.423090 ], [ -80.024414, -4.346411 ], [ -79.617920, -4.455951 ], [ -79.200439, -4.959615 ], [ -78.640137, -4.554522 ], [ -78.453369, -3.875216 ], [ -77.838135, -3.008870 ], [ -76.629639, -2.613839 ], [ -75.541992, -1.559866 ], [ -75.234375, -0.911827 ], [ -75.366211, -0.153808 ], [ -75.102539, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.269531, -21.830907 ], [ -64.962158, -22.075459 ], [ -64.368896, -22.796439 ], [ -63.984375, -21.993989 ], [ -62.841797, -22.034730 ], [ -62.677002, -22.248429 ], [ -60.842285, -23.885838 ], [ -60.029297, -24.036431 ], [ -58.809814, -24.776760 ], [ -57.777100, -25.165173 ], [ -57.634277, -25.601902 ], [ -58.612061, -27.127591 ], [ -57.612305, -27.401032 ], [ -56.480713, -27.547242 ], [ -55.689697, -27.391278 ], [ -54.788818, -26.627818 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.552354 ], [ -53.624268, -26.125850 ], [ -53.646240, -26.922070 ], [ -54.492188, -27.479035 ], [ -55.162354, -27.887639 ], [ -56.282959, -28.854296 ], [ -57.623291, -30.221102 ], [ -57.875977, -31.015279 ], [ -58.139648, -32.045333 ], [ -58.128662, -33.045508 ], [ -58.348389, -33.266250 ], [ -58.491211, -34.434098 ], [ -57.227783, -35.290469 ], [ -57.359619, -35.978006 ], [ -56.733398, -36.412442 ], [ -56.788330, -36.905980 ], [ -57.744141, -38.186387 ], [ -59.227295, -38.719805 ], [ -61.237793, -38.933776 ], [ -62.336426, -38.831150 ], [ -62.127686, -39.427707 ], [ -62.325439, -40.178873 ], [ -62.138672, -40.680638 ], [ -62.666016, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.764648, -41.170384 ], [ -64.259033, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.039062, -41.640078 ], [ -71.806641, -41.640078 ], [ -71.894531, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.674805, -39.808536 ], [ -71.411133, -38.916682 ], [ -70.806885, -38.556757 ], [ -71.114502, -37.579413 ], [ -71.114502, -36.659606 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.173808 ], [ -69.818115, -34.198173 ], [ -69.807129, -33.275435 ], [ -70.070801, -33.091542 ], [ -70.532227, -31.363018 ], [ -69.916992, -30.334954 ], [ -70.015869, -29.372602 ], [ -69.653320, -28.459033 ], [ -68.994141, -27.527758 ], [ -68.291016, -26.902477 ], [ -68.587646, -26.509905 ], [ -68.378906, -26.185018 ], [ -68.411865, -24.517139 ], [ -67.324219, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.269531, -21.830907 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.040283, -19.342245 ], [ -59.117432, -19.362976 ], [ -58.183594, -19.870060 ], [ -58.161621, -20.179724 ], [ -57.864990, -20.735566 ], [ -57.930908, -22.095820 ], [ -56.876221, -22.289096 ], [ -56.469727, -22.085640 ], [ -55.799561, -22.360236 ], [ -55.612793, -22.654572 ], [ -55.513916, -23.574057 ], [ -55.393066, -23.956136 ], [ -55.030518, -24.006326 ], [ -54.645996, -23.845650 ], [ -54.294434, -24.026397 ], [ -54.294434, -24.577100 ], [ -54.426270, -25.165173 ], [ -54.624023, -25.740529 ], [ -54.788818, -26.627818 ], [ -55.689697, -27.391278 ], [ -56.480713, -27.547242 ], [ -57.612305, -27.401032 ], [ -58.612061, -27.127591 ], [ -57.634277, -25.601902 ], [ -57.777100, -25.165173 ], [ -58.809814, -24.776760 ], [ -60.029297, -24.036431 ], [ -60.842285, -23.885838 ], [ -62.677002, -22.248429 ], [ -62.292480, -21.053744 ], [ -62.259521, -20.519644 ], [ -61.787109, -19.632240 ], [ -60.040283, -19.342245 ] ] ] } } , { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, -17.581194 ], [ -69.093018, -18.260653 ], [ -68.961182, -18.989415 ], [ -68.444824, -19.404430 ], [ -68.752441, -20.375527 ], [ -68.214111, -21.493964 ], [ -67.829590, -22.877440 ], [ -67.104492, -22.735657 ], [ -66.983643, -22.988738 ], [ -67.324219, -24.026397 ], [ -68.411865, -24.517139 ], [ -68.378906, -26.185018 ], [ -68.587646, -26.509905 ], [ -68.291016, -26.902477 ], [ -68.994141, -27.527758 ], [ -69.653320, -28.459033 ], [ -70.015869, -29.372602 ], [ -69.916992, -30.334954 ], [ -70.532227, -31.363018 ], [ -70.070801, -33.091542 ], [ -69.807129, -33.275435 ], [ -69.818115, -34.198173 ], [ -70.389404, -35.173808 ], [ -70.367432, -36.004673 ], [ -71.114502, -36.659606 ], [ -71.114502, -37.579413 ], [ -70.806885, -38.556757 ], [ -71.411133, -38.916682 ], [ -71.674805, -39.808536 ], [ -71.916504, -40.830437 ], [ -71.894531, -40.979898 ], [ -71.806641, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.674316, -39.943436 ], [ -73.212891, -39.257778 ], [ -73.498535, -38.281313 ], [ -73.586426, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.514343 ], [ -71.861572, -33.906896 ], [ -71.433105, -32.417066 ], [ -71.663818, -30.921076 ], [ -71.367188, -30.097613 ], [ -71.488037, -28.863918 ], [ -70.905762, -27.644606 ], [ -70.718994, -25.710837 ], [ -70.400391, -23.634460 ], [ -70.092773, -21.391705 ], [ -70.158691, -19.756364 ], [ -70.367432, -18.354526 ], [ -69.851074, -18.093644 ], [ -69.587402, -17.581194 ] ] ] } } ] } @@ -367,19 +373,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.114502, 41.500350 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.322754, 40.979898 ], [ -72.235107, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.622292 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.421860 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.933776 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.520020, 39.495563 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.058594, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.256566 ], [ -75.717773, 37.935533 ], [ -76.234131, 38.315801 ], [ -76.343994, 39.147103 ], [ -76.541748, 38.711233 ], [ -76.322021, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.860596, 36.544949 ], [ -75.728760, 35.550105 ], [ -76.354980, 34.804783 ], [ -77.398682, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.495598 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.331787, 31.438037 ], [ -81.485596, 30.722949 ], [ -81.309814, 30.031055 ], [ -80.980225, 29.180941 ], [ -80.529785, 28.468691 ], [ -80.529785, 28.033198 ], [ -80.057373, 26.873081 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.809782 ], [ -80.375977, 25.204941 ], [ -80.672607, 25.075648 ], [ -81.166992, 25.195000 ], [ -81.331787, 25.641526 ], [ -81.705322, 25.869109 ], [ -82.705078, 27.488781 ], [ -82.847900, 27.887639 ], [ -82.650146, 28.545926 ], [ -82.924805, 29.094577 ], [ -83.704834, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.630771 ], [ -85.286865, 29.688053 ], [ -85.770264, 30.154627 ], [ -86.396484, 30.401307 ], [ -87.528076, 30.268556 ], [ -88.417969, 30.382353 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.154627 ], [ -89.406738, 29.888281 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.200123 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.142566 ], [ -90.878906, 41.640078 ], [ -69.960938, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.265625, 23.190863 ], [ -81.397705, 23.110049 ], [ -80.617676, 23.099944 ], [ -79.672852, 22.766051 ], [ -79.277344, 22.400872 ], [ -78.343506, 22.512557 ], [ -77.991943, 22.278931 ], [ -76.519775, 21.207459 ], [ -76.190186, 21.217701 ], [ -75.596924, 21.012727 ], [ -75.662842, 20.735566 ], [ -74.926758, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.289551, 20.045611 ], [ -74.959717, 19.921713 ], [ -75.629883, 19.870060 ], [ -76.322021, 19.952696 ], [ -77.750244, 19.849394 ], [ -77.080078, 20.406420 ], [ -77.486572, 20.673905 ], [ -78.134766, 20.735566 ], [ -78.475342, 21.022983 ], [ -78.717041, 21.596151 ], [ -79.277344, 21.555284 ], [ -80.211182, 21.820708 ], [ -80.518799, 22.034730 ], [ -81.815186, 22.187405 ], [ -82.166748, 22.380556 ], [ -81.793213, 22.634293 ], [ -82.770996, 22.684984 ], [ -83.496094, 22.167058 ], [ -83.902588, 22.156883 ], [ -84.045410, 21.912471 ], [ -84.539795, 21.800308 ], [ -84.968262, 21.892084 ], [ -84.440918, 22.197577 ], [ -84.232178, 22.563293 ], [ -83.770752, 22.786311 ], [ -83.265381, 22.978624 ], [ -82.507324, 23.079732 ], [ -82.265625, 23.190863 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.189697, 25.204941 ], [ -77.882080, 25.165173 ], [ -77.541504, 24.337087 ], [ -77.530518, 23.755182 ], [ -77.772217, 23.704895 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.189697, 25.204941 ] ] ], [ [ [ -77.783203, 27.039557 ], [ -76.992188, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.354736, 26.007424 ], [ -77.332764, 26.529565 ], [ -77.783203, 26.922070 ], [ -77.783203, 27.039557 ] ] ], [ [ [ -78.508301, 26.863281 ], [ -77.849121, 26.833875 ], [ -77.816162, 26.578702 ], [ -78.903809, 26.421390 ], [ -78.980713, 26.784847 ], [ -78.508301, 26.863281 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.143066, 17.800996 ], [ -89.143066, 17.014768 ], [ -89.230957, 15.887376 ], [ -88.923340, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.516846, 15.855674 ], [ -88.220215, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.154053, 15.061515 ], [ -89.219971, 14.870469 ], [ -89.143066, 14.679254 ], [ -89.351807, 14.424040 ], [ -89.582520, 14.360191 ], [ -89.527588, 14.243087 ], [ -89.714355, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.880746 ], [ -90.098877, 13.731381 ], [ -90.615234, 13.902076 ], [ -90.878906, 13.912740 ], [ -90.878906, 16.066929 ], [ -90.472412, 16.066929 ], [ -90.439453, 16.404470 ], [ -90.604248, 16.467695 ], [ -90.714111, 16.688817 ], [ -90.878906, 16.794024 ], [ -90.878906, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.099365, 18.344098 ], [ -88.121338, 18.072757 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.297119, 17.130292 ], [ -88.242188, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.267414 ], [ -88.725586, 16.235772 ], [ -88.923340, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.143066, 17.014768 ], [ -89.143066, 17.957832 ], [ -89.022217, 17.999632 ], [ -88.846436, 17.884659 ], [ -88.483887, 18.479609 ], [ -88.297119, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.000977, 16.003576 ], [ -85.682373, 15.950766 ], [ -85.440674, 15.887376 ], [ -85.177002, 15.908508 ], [ -84.979248, 15.993015 ], [ -84.528809, 15.855674 ], [ -84.364014, 15.834536 ], [ -84.056396, 15.644197 ], [ -83.770752, 15.421910 ], [ -83.408203, 15.262989 ], [ -83.144531, 14.997852 ], [ -83.485107, 15.008464 ], [ -83.627930, 14.881087 ], [ -83.968506, 14.743011 ], [ -84.221191, 14.743011 ], [ -84.451904, 14.615478 ], [ -84.649658, 14.668626 ], [ -84.814453, 14.817371 ], [ -84.924316, 14.785505 ], [ -85.045166, 14.551684 ], [ -85.144043, 14.562318 ], [ -85.166016, 14.349548 ], [ -85.506592, 14.072645 ], [ -85.693359, 13.955392 ], [ -85.803223, 13.838080 ], [ -86.088867, 14.040673 ], [ -86.308594, 13.763396 ], [ -86.517334, 13.774066 ], [ -86.748047, 13.752725 ], [ -86.726074, 13.261333 ], [ -86.879883, 13.250640 ], [ -87.000732, 13.025966 ], [ -87.319336, 12.983148 ], [ -87.484131, 13.293411 ], [ -87.791748, 13.378932 ], [ -87.725830, 13.784737 ], [ -87.857666, 13.891411 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.838080 ], [ -88.538818, 13.976715 ], [ -88.835449, 14.136576 ], [ -89.055176, 14.338904 ], [ -89.351807, 14.424040 ], [ -89.143066, 14.679254 ], [ -89.219971, 14.870469 ], [ -89.154053, 15.061515 ], [ -88.681641, 15.347762 ], [ -88.220215, 15.728814 ], [ -88.121338, 15.686510 ], [ -87.901611, 15.866242 ], [ -87.615967, 15.876809 ], [ -87.517090, 15.792254 ], [ -87.363281, 15.845105 ], [ -86.901855, 15.749963 ], [ -86.440430, 15.781682 ], [ -86.121826, 15.887376 ], [ -86.000977, 16.003576 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.485107, 15.008464 ], [ -83.144531, 14.997852 ], [ -83.232422, 14.902322 ], [ -83.276367, 14.679254 ], [ -83.177490, 14.306969 ], [ -83.408203, 13.966054 ], [ -83.518066, 13.560562 ], [ -83.551025, 13.122280 ], [ -83.496094, 12.865360 ], [ -83.474121, 12.415119 ], [ -83.627930, 12.318536 ], [ -83.715820, 11.888853 ], [ -83.649902, 11.630716 ], [ -83.847656, 11.372339 ], [ -83.803711, 11.102947 ], [ -83.649902, 10.941192 ], [ -83.891602, 10.725381 ], [ -84.188232, 10.790141 ], [ -84.353027, 10.995120 ], [ -84.671631, 11.081385 ], [ -84.902344, 10.951978 ], [ -85.561523, 11.210734 ], [ -85.704346, 11.081385 ], [ -86.528320, 11.802834 ], [ -86.748047, 12.136005 ], [ -87.165527, 12.458033 ], [ -87.670898, 12.908198 ], [ -87.550049, 13.058075 ], [ -87.385254, 12.908198 ], [ -87.319336, 12.983148 ], [ -87.000732, 13.025966 ], [ -86.879883, 13.250640 ], [ -86.726074, 13.261333 ], [ -86.748047, 13.752725 ], [ -86.517334, 13.774066 ], [ -86.308594, 13.763396 ], [ -86.088867, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.693359, 13.955392 ], [ -85.506592, 14.072645 ], [ -85.166016, 14.349548 ], [ -85.144043, 14.562318 ], [ -85.045166, 14.551684 ], [ -84.924316, 14.785505 ], [ -84.814453, 14.817371 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.615478 ], [ -84.221191, 14.743011 ], [ -83.968506, 14.743011 ], [ -83.627930, 14.881087 ], [ -83.485107, 15.008464 ] ] ] } } , { "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.611582 ], [ -79.013672, 9.546583 ], [ -79.057617, 9.449062 ], [ -78.497314, 9.416548 ], [ -78.057861, 9.243093 ], [ -77.728271, 8.939340 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.928675 ], [ -77.431641, 7.634776 ], [ -77.750244, 7.710992 ], [ -77.882080, 7.220800 ], [ -78.211670, 7.504089 ], [ -78.431396, 8.048352 ], [ -78.178711, 8.320212 ], [ -78.431396, 8.385431 ], [ -78.618164, 8.711359 ], [ -79.112549, 8.993600 ], [ -79.552002, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.156250, 8.331083 ], [ -80.375977, 8.298470 ], [ -80.474854, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.416942 ], [ -80.419922, 7.264394 ], [ -80.881348, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.700105 ], [ -81.716309, 8.102739 ], [ -82.133789, 8.167993 ], [ -82.386475, 8.287599 ], [ -82.814941, 8.287599 ], [ -82.847900, 8.070107 ], [ -82.957764, 8.222364 ], [ -82.913818, 8.418036 ], [ -82.825928, 8.624472 ], [ -82.869873, 8.809082 ], [ -82.716064, 8.917634 ], [ -82.924805, 9.069551 ], [ -82.924805, 9.470736 ], [ -82.540283, 9.568251 ], [ -82.188721, 9.199715 ], [ -82.199707, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.026153 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.852507 ], [ -80.518799, 9.112945 ], [ -79.914551, 9.308149 ], [ -79.573975, 9.611582 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.911384 ], [ -72.575684, 19.870060 ], [ -71.707764, 19.715000 ], [ -71.619873, 19.165924 ], [ -71.696777, 18.781517 ], [ -71.938477, 18.615013 ], [ -71.685791, 18.312811 ], [ -71.707764, 18.041421 ], [ -72.366943, 18.208480 ], [ -72.839355, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.916016, 18.030975 ], [ -74.454346, 18.344098 ], [ -74.366455, 18.667063 ], [ -73.443604, 18.521283 ], [ -72.696533, 18.448347 ], [ -72.333984, 18.667063 ], [ -72.784424, 19.103648 ], [ -72.784424, 19.476950 ], [ -73.410645, 19.632240 ], [ -73.190918, 19.911384 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.642588 ], [ -69.763184, 19.290406 ], [ -69.224854, 19.311143 ], [ -69.246826, 19.010190 ], [ -68.807373, 18.979026 ], [ -68.312988, 18.604601 ], [ -68.686523, 18.198044 ], [ -69.158936, 18.417079 ], [ -69.620361, 18.375379 ], [ -69.949951, 18.427502 ], [ -70.125732, 18.239786 ], [ -70.510254, 18.177169 ], [ -70.664062, 18.427502 ], [ -70.993652, 18.281518 ], [ -71.400146, 17.591667 ], [ -71.652832, 17.759150 ], [ -71.707764, 18.041421 ], [ -71.685791, 18.312811 ], [ -71.938477, 18.615013 ], [ -71.696777, 18.781517 ], [ -71.619873, 19.165924 ], [ -71.707764, 19.715000 ], [ -71.586914, 19.880392 ], [ -70.806885, 19.880392 ] ] ] } } , { "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.216064, 5.244128 ], [ -59.974365, 5.014339 ], [ -60.106201, 4.576425 ], [ -59.765625, 4.423090 ], [ -59.534912, 3.951941 ], [ -59.809570, 3.601142 ], [ -59.974365, 2.756504 ], [ -59.710693, 2.251617 ], [ -59.644775, 1.779499 ], [ -59.029541, 1.318243 ], [ -58.535156, 1.263325 ], [ -58.425293, 1.461023 ], [ -58.106689, 1.504954 ], [ -57.656250, 1.680667 ], [ -57.337646, 1.944207 ], [ -56.777344, 1.856365 ], [ -56.535645, 1.900286 ], [ -55.997314, 1.812442 ], [ -55.898438, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.975342, 2.504085 ], [ -55.568848, 2.416276 ], [ -55.096436, 2.526037 ], [ -54.525146, 2.306506 ], [ -54.085693, 2.097920 ], [ -53.778076, 2.372369 ], [ -53.547363, 2.328460 ], [ -53.415527, 2.054003 ], [ -52.932129, 2.119878 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.239240 ], [ -51.657715, 4.149201 ], [ -51.317139, 4.203986 ], [ -51.064453, 3.645000 ], [ -50.504150, 1.900286 ], [ -49.976807, 1.735574 ], [ -49.943848, 1.043643 ], [ -50.701904, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.383301, -0.076904 ], [ -48.614502, -0.241699 ], [ -48.603516, -0.878872 ], [ -69.488525, -0.878872 ], [ -69.576416, -0.549308 ], [ -70.015869, -0.186767 ], [ -70.015869, 0.538322 ], [ -69.444580, 0.703107 ], [ -69.246826, 0.604237 ], [ -69.213867, 0.977736 ], [ -69.807129, 1.087581 ], [ -69.818115, 1.713612 ], [ -67.862549, 1.691649 ], [ -67.532959, 2.032045 ], [ -67.258301, 1.713612 ], [ -67.060547, 1.131518 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.346680, 1.087581 ], [ -64.610596, 1.329226 ], [ -64.193115, 1.493971 ], [ -64.083252, 1.911267 ], [ -63.369141, 2.196727 ], [ -63.424072, 2.405299 ], [ -64.270020, 2.493109 ], [ -64.401855, 3.118576 ], [ -64.368896, 3.798484 ], [ -64.808350, 4.050577 ], [ -64.621582, 4.149201 ], [ -63.885498, 4.017699 ], [ -63.094482, 3.765597 ], [ -62.797852, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.963135, 4.532618 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.216064, 5.244128 ] ] ], [ [ [ -48.175049, -0.878872 ], [ -47.823486, -0.582265 ], [ -46.779785, -0.878872 ], [ -48.175049, -0.878872 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.887254 ], [ -60.897217, 10.854886 ], [ -60.930176, 10.109486 ], [ -61.765137, 10.001310 ], [ -61.951904, 10.087854 ], [ -61.655273, 10.358151 ], [ -61.677246, 10.757763 ], [ -61.105957, 10.887254 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.754639, 8.363693 ], [ -59.095459, 7.993957 ], [ -58.480225, 7.340675 ], [ -58.447266, 6.828261 ], [ -58.073730, 6.806444 ], [ -57.139893, 5.965754 ], [ -57.304688, 5.069058 ], [ -57.908936, 4.806365 ], [ -57.854004, 4.576425 ], [ -58.040771, 4.061536 ], [ -57.601318, 3.326986 ], [ -57.282715, 3.326986 ], [ -57.150879, 2.767478 ], [ -56.535645, 1.900286 ], [ -56.777344, 1.856365 ], [ -57.337646, 1.944207 ], [ -57.656250, 1.680667 ], [ -58.106689, 1.504954 ], [ -58.425293, 1.461023 ], [ -58.535156, 1.263325 ], [ -59.029541, 1.318243 ], [ -59.644775, 1.779499 ], [ -59.710693, 2.251617 ], [ -59.974365, 2.756504 ], [ -59.809570, 3.601142 ], [ -59.534912, 3.951941 ], [ -59.765625, 4.423090 ], [ -60.106201, 4.576425 ], [ -59.974365, 5.014339 ], [ -60.216064, 5.244128 ], [ -60.732422, 5.200365 ], [ -61.402588, 5.954827 ], [ -61.138916, 6.227934 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.850078 ], [ -60.292969, 7.046379 ], [ -60.633545, 7.416942 ], [ -60.545654, 7.776309 ], [ -59.754639, 8.363693 ] ] ] } } , { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.953857, 5.758105 ], [ -52.877197, 5.408211 ], [ -51.822510, 4.565474 ], [ -51.657715, 4.149201 ], [ -52.250977, 3.239240 ], [ -52.558594, 2.504085 ], [ -52.932129, 2.119878 ], [ -53.415527, 2.054003 ], [ -53.547363, 2.328460 ], [ -53.778076, 2.372369 ], [ -54.085693, 2.097920 ], [ -54.525146, 2.306506 ], [ -54.272461, 2.734557 ], [ -54.184570, 3.195364 ], [ -54.008789, 3.623071 ], [ -54.393311, 4.214943 ], [ -54.481201, 4.893941 ], [ -53.953857, 5.758105 ] ] ] } } , @@ -431,11 +437,11 @@ , { "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.640078 ], [ 0.878906, 41.021355 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.672306 ], [ 0.109863, 40.120090 ], [ 0.000000, 39.901309 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.899583 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.640335 ], [ -1.439209, 37.439974 ], [ -2.142334, 36.668419 ], [ -3.416748, 36.659606 ], [ -4.361572, 36.677231 ], [ -4.987793, 36.323977 ], [ -5.372314, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.229248, 36.368222 ], [ -6.514893, 36.941111 ], [ -7.448730, 37.099003 ], [ -7.536621, 37.422526 ], [ -7.163086, 37.805444 ], [ -7.031250, 38.074041 ], [ -7.371826, 38.367502 ], [ -7.097168, 39.027719 ], [ -7.492676, 39.631077 ], [ -7.064209, 39.707187 ], [ -7.020264, 40.178873 ], [ -6.866455, 40.329796 ], [ -6.855469, 40.979898 ], [ -6.844482, 41.112469 ], [ -6.383057, 41.385052 ], [ -6.536865, 41.640078 ], [ 0.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.594081 ], [ -14.095459, 16.299051 ], [ -13.436279, 16.035255 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.117920, 13.987376 ], [ -11.920166, 13.421681 ], [ -11.546631, 13.143678 ], [ -11.469727, 12.747516 ], [ -11.513672, 12.436577 ], [ -11.656494, 12.382928 ], [ -12.205811, 12.458033 ], [ -12.271729, 12.350734 ], [ -12.491455, 12.329269 ], [ -13.216553, 12.576010 ], [ -15.545654, 12.629618 ], [ -15.809326, 12.511665 ], [ -16.149902, 12.543840 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.143678 ], [ -15.930176, 13.122280 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.272026 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.293411 ], [ -14.271240, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.040527, 13.795406 ], [ -14.370117, 13.624633 ], [ -14.688721, 13.624633 ], [ -15.084229, 13.870080 ], [ -15.391846, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.710205, 13.592600 ], [ -17.127686, 14.370834 ], [ -17.622070, 14.721761 ], [ -17.182617, 14.912938 ], [ -16.699219, 15.623037 ], [ -16.457520, 16.130262 ], [ -16.116943, 16.457159 ], [ -15.622559, 16.362310 ], [ -15.128174, 16.583552 ], [ -14.578857, 16.594081 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.654338 ], [ -8.679199, 27.391278 ], [ -8.679199, 25.878994 ], [ -11.964111, 25.928407 ], [ -11.931152, 23.372514 ], [ -12.875977, 23.281719 ], [ -13.117676, 22.766051 ], [ -12.930908, 21.320081 ], [ -16.842041, 21.330315 ], [ -17.061768, 20.992214 ], [ -17.017822, 21.422390 ], [ -14.743652, 21.493964 ], [ -14.622803, 21.861499 ], [ -14.216309, 22.309426 ], [ -13.886719, 23.684774 ], [ -12.502441, 24.766785 ], [ -12.030029, 26.027170 ], [ -11.711426, 26.106121 ], [ -11.392822, 26.882880 ], [ -10.546875, 26.990619 ], [ -10.184326, 26.863281 ], [ -9.733887, 26.863281 ], [ -9.415283, 27.088473 ], [ -8.789062, 27.117813 ], [ -8.811035, 27.654338 ], [ -8.668213, 27.654338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.545654, 12.629618 ], [ -13.699951, 12.586732 ], [ -13.710938, 12.243392 ], [ -13.820801, 12.136005 ], [ -13.743896, 11.813588 ], [ -13.897705, 11.673755 ], [ -14.117432, 11.673755 ], [ -14.381104, 11.501557 ], [ -14.677734, 11.523088 ], [ -15.128174, 11.038255 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.149902, 12.543840 ], [ -15.809326, 12.511665 ], [ -15.545654, 12.629618 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.391278 ], [ -4.921875, 24.976099 ], [ -6.448975, 24.956180 ], [ -5.482178, 16.320139 ], [ -5.317383, 16.204125 ], [ -5.537109, 15.496032 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.645752, 15.125159 ], [ -11.348877, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.832275, 14.796128 ], [ -12.172852, 14.615478 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.035255 ], [ -14.095459, 16.299051 ], [ -14.578857, 16.594081 ], [ -15.128174, 16.583552 ], [ -15.622559, 16.362310 ], [ -16.116943, 16.457159 ], [ -16.457520, 16.130262 ], [ -16.545410, 16.667769 ], [ -16.270752, 17.161786 ], [ -16.138916, 18.104087 ], [ -16.248779, 19.093267 ], [ -16.369629, 19.590844 ], [ -16.270752, 20.086889 ], [ -16.534424, 20.560796 ], [ -17.061768, 20.992214 ], [ -16.842041, 21.330315 ], [ -12.930908, 21.320081 ], [ -13.117676, 22.766051 ], [ -12.875977, 23.281719 ], [ -11.931152, 23.372514 ], [ -11.964111, 25.928407 ], [ -8.679199, 25.878994 ], [ -8.679199, 27.391278 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.832520, 9.687398 ], [ -10.623779, 9.264779 ], [ -10.656738, 8.971897 ], [ -10.491943, 8.711359 ], [ -10.502930, 8.341953 ], [ -10.228271, 8.407168 ], [ -10.689697, 7.939556 ], [ -11.140137, 7.395153 ], [ -11.195068, 7.100893 ], [ -11.436768, 6.784626 ], [ -11.700439, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.941895, 7.798079 ], [ -13.117676, 8.157118 ], [ -13.238525, 8.895926 ], [ -12.711182, 9.340672 ], [ -12.590332, 9.622414 ], [ -12.425537, 9.828154 ], [ -12.150879, 9.860628 ], [ -11.909180, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.491455, 12.329269 ], [ -12.271729, 12.350734 ], [ -12.205811, 12.458033 ], [ -11.656494, 12.382928 ], [ -11.513672, 12.436577 ], [ -11.458740, 12.071553 ], [ -11.293945, 12.071553 ], [ -11.030273, 12.211180 ], [ -10.865479, 12.178965 ], [ -10.590820, 11.921103 ], [ -10.162354, 11.845847 ], [ -9.887695, 12.060809 ], [ -9.569092, 12.189704 ], [ -9.327393, 12.329269 ], [ -9.129639, 12.307802 ], [ -8.898926, 12.082296 ], [ -8.778076, 11.813588 ], [ -8.371582, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.613281, 10.811724 ], [ -8.404541, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.327637, 10.487812 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.131117 ], [ -8.305664, 9.784851 ], [ -8.074951, 9.373193 ], [ -7.833252, 8.570158 ], [ -8.195801, 8.450639 ], [ -8.294678, 8.309341 ], [ -8.217773, 8.124491 ], [ -8.272705, 7.689217 ], [ -8.437500, 7.678329 ], [ -8.723145, 7.710992 ], [ -8.920898, 7.307985 ], [ -9.206543, 7.307985 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.537565 ], [ -10.008545, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.341953 ], [ -10.491943, 8.711359 ], [ -10.656738, 8.971897 ], [ -10.623779, 9.264779 ], [ -10.832520, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.909180, 10.044585 ], [ -12.150879, 9.860628 ], [ -12.425537, 9.828154 ], [ -12.590332, 9.622414 ], [ -12.711182, 9.340672 ], [ -13.238525, 8.895926 ], [ -13.677979, 9.492408 ], [ -14.073486, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.578857, 10.206813 ], [ -14.688721, 10.649811 ], [ -14.831543, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.677734, 11.523088 ], [ -14.381104, 11.501557 ], [ -14.117432, 11.673755 ], [ -13.897705, 11.673755 ], [ -13.743896, 11.813588 ], [ -13.820801, 12.136005 ], [ -13.710938, 12.243392 ], [ -13.699951, 12.586732 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.976099 ], [ 0.000000, 21.790107 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.955399 ], [ 0.373535, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.966013 ], [ -1.999512, 14.551684 ], [ -2.186279, 14.243087 ], [ -2.966309, 13.795406 ], [ -3.098145, 13.539201 ], [ -3.515625, 13.336175 ], [ -3.999023, 13.475106 ], [ -4.273682, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.706031 ], [ -5.196533, 11.372339 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.811768, 10.217625 ], [ -6.042480, 10.098670 ], [ -6.207275, 10.520219 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.422988 ], [ -6.844482, 10.131117 ], [ -7.624512, 10.141932 ], [ -7.899170, 10.293301 ], [ -8.031006, 10.206813 ], [ -8.327637, 10.487812 ], [ -8.283691, 10.790141 ], [ -8.404541, 10.908830 ], [ -8.613281, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.371582, 11.393879 ], [ -8.778076, 11.813588 ], [ -8.898926, 12.082296 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.329269 ], [ -9.569092, 12.189704 ], [ -9.887695, 12.060809 ], [ -10.162354, 11.845847 ], [ -10.590820, 11.921103 ], [ -10.865479, 12.178965 ], [ -11.030273, 12.211180 ], [ -11.293945, 12.071553 ], [ -11.458740, 12.071553 ], [ -11.513672, 12.436577 ], [ -11.469727, 12.747516 ], [ -11.546631, 13.143678 ], [ -11.920166, 13.421681 ], [ -12.117920, 13.987376 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.796128 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.645752, 15.125159 ], [ -10.085449, 15.326572 ], [ -9.700928, 15.262989 ], [ -9.547119, 15.485445 ], [ -5.537109, 15.496032 ], [ -5.317383, 16.204125 ], [ -5.482178, 16.320139 ], [ -6.448975, 24.956180 ], [ -4.921875, 24.976099 ] ] ] } } , @@ -451,7 +457,7 @@ , { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.972422 ], [ 0.878906, 42.722804 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.028745 ], [ -1.900635, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.219238, 47.062638 ], [ -2.955322, 47.569114 ], [ -4.493408, 47.953145 ], [ -4.592285, 48.683708 ], [ -3.295898, 48.900838 ], [ -1.614990, 48.640169 ], [ -1.933594, 49.774170 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.681847 ], [ 0.878906, 49.972422 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.569580, 55.128649 ], [ -7.360840, 54.591163 ], [ -7.569580, 54.059388 ], [ -6.954346, 54.072283 ], [ -6.196289, 53.865486 ], [ -6.031494, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.558350, 51.665741 ], [ -9.975586, 51.815407 ], [ -9.162598, 52.862497 ], [ -9.689941, 53.878440 ], [ -8.327637, 54.661124 ], [ -7.569580, 55.128649 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.999268, 58.631217 ], [ -4.075928, 57.551208 ], [ -3.054199, 57.686533 ], [ -1.955566, 57.680660 ], [ -2.219238, 56.866991 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.906115 ], [ -1.109619, 54.622978 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 0.878906, 52.862497 ], [ 0.878906, 50.958427 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.780029, 50.771208 ], [ -2.482910, 50.499452 ], [ -2.955322, 50.694718 ], [ -3.614502, 50.226124 ], [ -4.537354, 50.338449 ], [ -5.240479, 49.958288 ], [ -5.778809, 50.155786 ], [ -4.306641, 51.206883 ], [ -3.416748, 51.426614 ], [ -4.976807, 51.590723 ], [ -5.262451, 51.991646 ], [ -4.218750, 52.301761 ], [ -4.768066, 52.835958 ], [ -4.581299, 53.494582 ], [ -3.087158, 53.402982 ], [ -2.944336, 53.981935 ], [ -3.625488, 54.610255 ], [ -4.844971, 54.788017 ], [ -5.075684, 55.059495 ], [ -4.713135, 55.509971 ], [ -5.042725, 55.782751 ], [ -5.581055, 55.310391 ], [ -5.646973, 56.273861 ], [ -6.152344, 56.782827 ], [ -5.778809, 57.815504 ], [ -5.009766, 58.631217 ], [ -4.207764, 58.551061 ], [ -2.999268, 58.631217 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.657959, 54.552952 ], [ -6.196289, 53.865486 ], [ -6.954346, 54.072283 ], [ -7.569580, 54.059388 ], [ -7.360840, 54.591163 ], [ -7.569580, 55.128649 ], [ -6.734619, 55.172594 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.747289 ], [ -6.756592, 43.564472 ], [ -5.405273, 43.572432 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.452919 ], [ -1.900635, 43.421009 ], [ -1.505127, 43.028745 ], [ 0.000000, 42.666281 ], [ 0.340576, 42.577355 ], [ 0.703125, 42.795401 ], [ 0.878906, 42.722804 ], [ 0.878906, 41.021355 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.672306 ], [ 0.318604, 40.313043 ], [ -6.888428, 40.313043 ], [ -6.866455, 40.329796 ], [ -6.855469, 40.979898 ], [ -6.844482, 41.112469 ], [ -6.383057, 41.376809 ], [ -6.668701, 41.877741 ], [ -7.250977, 41.918629 ], [ -7.415771, 41.787697 ], [ -8.009033, 41.787697 ], [ -8.261719, 42.277309 ], [ -8.668213, 42.130821 ], [ -9.030762, 41.877741 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.020714 ], [ -7.976074, 43.747289 ] ] ] } } ] } @@ -485,21 +491,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.161377, 0.878872 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.560294 ], [ 14.425049, -1.340210 ], [ 14.304199, -1.999106 ], [ 13.996582, -2.471157 ], [ 13.117676, -2.427252 ], [ 12.579346, -1.955187 ], [ 12.502441, -2.394322 ], [ 11.821289, -2.515061 ], [ 11.480713, -2.767478 ], [ 11.854248, -3.425692 ], [ 11.096191, -3.984821 ], [ 10.063477, -2.975956 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.195557, 0.000000 ], [ 9.294434, 0.274657 ], [ 9.459229, 0.878872 ], [ 14.161377, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 0.878872 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.955766 ], [ 31.871338, -1.032659 ], [ 30.772705, -1.021674 ], [ 30.421143, -1.142502 ], [ 29.827881, -1.450040 ], [ 29.586182, -1.340210 ], [ 29.586182, -0.593251 ], [ 29.816895, -0.208740 ], [ 29.827881, 0.000000 ], [ 29.882812, 0.604237 ], [ 30.003662, 0.878872 ], [ 34.453125, 0.878872 ] ] ] } } -, { "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.857422, 0.878872 ], [ 43.143311, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.044678, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.583252, -1.680667 ], [ 41.000977, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.989990, 0.878872 ], [ 43.857422, 0.878872 ] ] ] } } , { "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.003662, 0.878872 ], [ 29.882812, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.208740 ], [ 29.586182, -0.593251 ], [ 29.586182, -1.340210 ], [ 29.289551, -1.625758 ], [ 29.256592, -2.218684 ], [ 29.124756, -2.295528 ], [ 29.025879, -2.844290 ], [ 29.278564, -3.294082 ], [ 29.344482, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.244110 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.526701 ], [ 28.454590, -9.167179 ], [ 28.674316, -9.611582 ], [ 28.498535, -10.790141 ], [ 28.377686, -11.792080 ], [ 28.641357, -11.974845 ], [ 29.344482, -12.361466 ], [ 29.619141, -12.178965 ], [ 29.707031, -13.261333 ], [ 28.937988, -13.250640 ], [ 28.531494, -12.704651 ], [ 28.157959, -12.275599 ], [ 27.388916, -12.136005 ], [ 27.169189, -11.609193 ], [ 26.553955, -11.931852 ], [ 25.751953, -11.792080 ], [ 25.422363, -11.329253 ], [ 24.785156, -11.243062 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.455811, -10.865676 ], [ 22.840576, -11.016689 ], [ 22.401123, -10.995120 ], [ 22.159424, -11.092166 ], [ 22.214355, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.807861, -8.906780 ], [ 21.950684, -8.309341 ], [ 21.752930, -7.917793 ], [ 21.730957, -7.297088 ], [ 20.522461, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.948239 ], [ 20.039062, -7.122696 ], [ 19.423828, -7.155400 ], [ 19.171143, -7.743651 ], [ 19.017334, -7.993957 ], [ 18.468018, -7.852499 ], [ 18.138428, -7.993957 ], [ 17.479248, -8.070107 ], [ 16.864014, -7.220800 ], [ 16.578369, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.381348, -5.867403 ], [ 13.029785, -5.987607 ], [ 12.733154, -5.965754 ], [ 12.326660, -6.107784 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.255068 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.784469 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.150391, -4.510714 ], [ 14.216309, -4.795417 ], [ 14.589844, -4.970560 ], [ 15.172119, -4.346411 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.413574, -1.746556 ], [ 16.864014, -1.230374 ], [ 17.523193, -0.747049 ], [ 17.644043, -0.428463 ], [ 17.666016, -0.065918 ], [ 17.687988, 0.000000 ], [ 17.830811, 0.296630 ], [ 17.775879, 0.878872 ], [ 30.003662, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.350415 ], [ 30.476074, -2.416276 ], [ 30.531006, -2.811371 ], [ 30.750732, -3.041783 ], [ 30.750732, -3.359889 ], [ 30.509033, -3.568248 ], [ 30.124512, -4.094411 ], [ 29.750977, -4.455951 ], [ 29.344482, -4.499762 ], [ 29.278564, -3.294082 ], [ 29.025879, -2.844290 ], [ 29.630127, -2.921097 ], [ 29.937744, -2.350415 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.381348, -5.867403 ], [ 16.325684, -5.878332 ], [ 16.578369, -6.620957 ], [ 16.864014, -7.220800 ], [ 17.479248, -8.070107 ], [ 18.138428, -7.993957 ], [ 18.468018, -7.852499 ], [ 19.017334, -7.993957 ], [ 19.171143, -7.743651 ], [ 19.423828, -7.155400 ], [ 20.039062, -7.122696 ], [ 20.093994, -6.948239 ], [ 20.599365, -6.937333 ], [ 20.522461, -7.297088 ], [ 21.730957, -7.297088 ], [ 21.752930, -7.917793 ], [ 21.950684, -8.309341 ], [ 21.807861, -8.906780 ], [ 21.873779, -9.524914 ], [ 22.214355, -9.893099 ], [ 22.159424, -11.092166 ], [ 22.401123, -10.995120 ], [ 22.840576, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.917236, -10.930405 ], [ 24.016113, -11.243062 ], [ 23.906250, -11.727546 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.918907 ], [ 21.939697, -12.897489 ], [ 21.895752, -16.088042 ], [ 22.565918, -16.899172 ], [ 23.214111, -17.528821 ], [ 21.379395, -17.936929 ], [ 18.962402, -17.790535 ], [ 18.270264, -17.308688 ], [ 14.216309, -17.350638 ], [ 14.062500, -17.424029 ], [ 13.469238, -16.972741 ], [ 12.821045, -16.941215 ], [ 12.216797, -17.109293 ], [ 11.733398, -17.308688 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.881087 ], [ 12.183838, -14.455958 ], [ 12.502441, -13.549881 ], [ 12.744141, -13.143678 ], [ 13.315430, -12.490214 ], [ 13.634033, -12.039321 ], [ 13.743896, -11.296934 ], [ 13.688965, -10.736175 ], [ 13.392334, -10.379765 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.570158 ], [ 12.733154, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.326660, -6.107784 ], [ 12.733154, -5.965754 ], [ 13.029785, -5.987607 ], [ 13.381348, -5.867403 ] ] ], [ [ [ 12.623291, -4.444997 ], [ 12.996826, -4.784469 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.255068 ], [ 12.436523, -5.681584 ], [ 12.183838, -5.790897 ], [ 11.920166, -5.036227 ], [ 12.326660, -4.609278 ], [ 12.623291, -4.444997 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.821045, -16.941215 ], [ 13.469238, -16.972741 ], [ 14.062500, -17.424029 ], [ 14.216309, -17.350638 ], [ 18.270264, -17.308688 ], [ 18.962402, -17.790535 ], [ 21.379395, -17.936929 ], [ 23.214111, -17.528821 ], [ 24.038086, -17.298199 ], [ 24.686279, -17.361125 ], [ 25.081787, -17.581194 ], [ 25.081787, -17.664960 ], [ 24.521484, -17.884659 ], [ 24.224854, -17.895114 ], [ 23.576660, -18.281518 ], [ 23.203125, -17.874203 ], [ 21.654053, -18.218916 ], [ 20.917969, -18.250220 ], [ 20.885010, -21.820708 ], [ 19.896240, -21.851302 ], [ 19.896240, -28.459033 ], [ 19.006348, -28.979312 ], [ 18.468018, -29.046566 ], [ 17.841797, -28.854296 ], [ 17.391357, -28.786918 ], [ 17.226562, -28.362402 ], [ 16.831055, -28.081674 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.216064, -27.098254 ], [ 14.996338, -26.115986 ], [ 14.743652, -25.393661 ], [ 14.414062, -23.855698 ], [ 14.392090, -22.654572 ], [ 14.260254, -22.116177 ], [ 13.875732, -21.698265 ], [ 13.359375, -20.879343 ], [ 12.832031, -19.673626 ], [ 12.612305, -19.051734 ], [ 11.799316, -18.072757 ], [ 11.733398, -17.308688 ], [ 12.216797, -17.109293 ], [ 12.821045, -16.941215 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.244110 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.591884 ], [ 31.563721, -8.765653 ], [ 32.189941, -8.928487 ], [ 32.761230, -9.232249 ], [ 33.233643, -9.676569 ], [ 33.486328, -10.531020 ], [ 33.321533, -10.800933 ], [ 33.112793, -11.609193 ], [ 33.310547, -12.436577 ], [ 32.991943, -12.790375 ], [ 32.695312, -13.720708 ], [ 33.211670, -13.976715 ], [ 30.179443, -14.796128 ], [ 30.278320, -15.506619 ], [ 29.520264, -15.644197 ], [ 28.948975, -16.045813 ], [ 28.828125, -16.393931 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.298199 ], [ 27.048340, -17.936929 ], [ 26.707764, -17.968283 ], [ 26.389160, -17.853290 ], [ 25.268555, -17.738223 ], [ 25.081787, -17.664960 ], [ 25.081787, -17.581194 ], [ 24.686279, -17.361125 ], [ 24.038086, -17.298199 ], [ 23.214111, -17.528821 ], [ 22.565918, -16.899172 ], [ 21.895752, -16.088042 ], [ 21.939697, -12.897489 ], [ 24.016113, -12.918907 ], [ 23.928223, -12.565287 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.727546 ], [ 24.016113, -11.243062 ], [ 23.917236, -10.930405 ], [ 24.257812, -10.951978 ], [ 24.312744, -11.264612 ], [ 24.785156, -11.243062 ], [ 25.422363, -11.329253 ], [ 25.751953, -11.792080 ], [ 26.553955, -11.931852 ], [ 27.169189, -11.609193 ], [ 27.388916, -12.136005 ], [ 28.157959, -12.275599 ], [ 28.531494, -12.704651 ], [ 28.937988, -13.250640 ], [ 29.707031, -13.261333 ], [ 29.619141, -12.178965 ], [ 29.344482, -12.361466 ], [ 28.641357, -11.974845 ], [ 28.377686, -11.792080 ], [ 28.498535, -10.790141 ], [ 28.674316, -9.611582 ], [ 28.454590, -9.167179 ], [ 28.740234, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.244110 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.278320, -15.506619 ], [ 30.344238, -15.887376 ], [ 31.179199, -15.866242 ], [ 31.640625, -16.077486 ], [ 31.849365, -16.320139 ], [ 32.332764, -16.393931 ], [ 32.849121, -16.720385 ], [ 32.849121, -17.978733 ], [ 32.662354, -18.677471 ], [ 32.618408, -19.425154 ], [ 32.772217, -19.715000 ], [ 32.662354, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.258597 ], [ 30.662842, -22.156883 ], [ 30.322266, -22.278931 ], [ 29.838867, -22.105999 ], [ 29.432373, -22.095820 ], [ 28.795166, -21.637005 ], [ 28.026123, -21.483741 ], [ 27.729492, -20.858812 ], [ 27.729492, -20.499064 ], [ 27.301025, -20.396123 ], [ 26.169434, -19.300775 ], [ 25.850830, -18.719097 ], [ 25.653076, -18.542117 ], [ 25.268555, -17.738223 ], [ 26.389160, -17.853290 ], [ 26.707764, -17.968283 ], [ 27.048340, -17.936929 ], [ 27.597656, -17.298199 ], [ 28.465576, -16.467695 ], [ 28.828125, -16.393931 ], [ 28.948975, -16.045813 ], [ 29.520264, -15.644197 ], [ 30.278320, -15.506619 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903809, -0.955766 ], [ 34.079590, -1.065612 ], [ 37.705078, -3.096636 ], [ 37.770996, -3.677892 ], [ 39.210205, -4.674980 ], [ 38.748779, -5.911117 ], [ 38.803711, -6.479067 ], [ 39.440918, -6.839170 ], [ 39.473877, -7.100893 ], [ 39.199219, -7.710992 ], [ 39.254150, -8.015716 ], [ 39.188232, -8.483239 ], [ 39.539795, -9.112945 ], [ 39.957275, -10.098670 ], [ 40.319824, -10.314919 ], [ 39.528809, -10.898042 ], [ 38.430176, -11.286161 ], [ 37.825928, -11.275387 ], [ 37.474365, -11.566144 ], [ 36.782227, -11.598432 ], [ 36.518555, -11.727546 ], [ 35.310059, -11.436955 ], [ 34.562988, -11.523088 ], [ 34.277344, -10.163560 ], [ 33.739014, -9.416548 ], [ 32.761230, -9.232249 ], [ 32.189941, -8.928487 ], [ 31.563721, -8.765653 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.341953 ], [ 30.201416, -7.079088 ], [ 29.619141, -6.522730 ], [ 29.421387, -5.943900 ], [ 29.520264, -5.419148 ], [ 29.344482, -4.499762 ], [ 29.750977, -4.455951 ], [ 30.124512, -4.094411 ], [ 30.509033, -3.568248 ], [ 30.750732, -3.359889 ], [ 30.750732, -3.041783 ], [ 30.531006, -2.811371 ], [ 30.476074, -2.416276 ], [ 30.761719, -2.284551 ], [ 30.816650, -1.702630 ], [ 30.421143, -1.142502 ], [ 30.772705, -1.021674 ], [ 31.871338, -1.032659 ], [ 33.903809, -0.955766 ] ] ] } } , { "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.095820 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.278931 ], [ 30.662842, -22.156883 ], [ 31.190186, -22.258597 ], [ 31.673584, -23.664651 ], [ 31.937256, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.849337 ], [ 31.333008, -25.661333 ], [ 31.047363, -25.730633 ], [ 30.948486, -26.027170 ], [ 30.684814, -26.401711 ], [ 30.684814, -26.745610 ], [ 31.289062, -27.283926 ], [ 31.871338, -27.176469 ], [ 32.069092, -26.735799 ], [ 32.838135, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.464600, -28.304381 ], [ 32.200928, -28.758028 ], [ 31.333008, -29.401320 ], [ 30.904541, -29.916852 ], [ 30.629883, -30.429730 ], [ 30.058594, -31.147006 ], [ 28.927002, -32.175612 ], [ 28.223877, -32.778038 ], [ 27.465820, -33.229498 ], [ 26.422119, -33.614619 ], [ 25.916748, -33.669497 ], [ 25.784912, -33.943360 ], [ 25.180664, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.598633, -33.797409 ], [ 22.994385, -33.916013 ], [ 22.576904, -33.870416 ], [ 21.544189, -34.261757 ], [ 20.687256, -34.415973 ], [ 20.072021, -34.795762 ], [ 19.621582, -34.822823 ], [ 19.193115, -34.461277 ], [ 18.863525, -34.443159 ], [ 18.424072, -33.998027 ], [ 18.380127, -34.134542 ], [ 18.248291, -33.870416 ], [ 18.248291, -33.284620 ], [ 17.929688, -32.611616 ], [ 18.248291, -32.435613 ], [ 18.226318, -31.662733 ], [ 17.567139, -30.732393 ], [ 17.061768, -29.878755 ], [ 16.347656, -28.574874 ], [ 16.831055, -28.081674 ], [ 17.226562, -28.362402 ], [ 17.391357, -28.786918 ], [ 17.841797, -28.854296 ], [ 18.468018, -29.046566 ], [ 19.006348, -28.979312 ], [ 19.896240, -28.459033 ], [ 19.896240, -24.766785 ], [ 20.170898, -24.916331 ], [ 20.764160, -25.869109 ], [ 20.665283, -26.480407 ], [ 20.895996, -26.833875 ], [ 21.610107, -26.725987 ], [ 22.104492, -26.283565 ], [ 22.576904, -25.977799 ], [ 22.829590, -25.502785 ], [ 23.312988, -25.274504 ], [ 23.741455, -25.393661 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.492868 ], [ 25.949707, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.246965 ], [ 27.125244, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.095820 ] ], [ [ 28.542480, -28.652031 ], [ 28.081055, -28.854296 ], [ 27.531738, -29.248063 ], [ 27.004395, -29.878755 ], [ 27.751465, -30.647364 ], [ 28.114014, -30.552800 ], [ 28.289795, -30.230595 ], [ 28.850098, -30.069094 ], [ 29.025879, -29.745302 ], [ 29.322510, -29.257649 ], [ 28.981934, -28.960089 ], [ 28.542480, -28.652031 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.542480, -28.652031 ], [ 28.981934, -28.960089 ], [ 29.322510, -29.257649 ], [ 29.025879, -29.745302 ], [ 28.850098, -30.069094 ], [ 28.289795, -30.230595 ], [ 28.114014, -30.552800 ], [ 27.751465, -30.647364 ], [ 27.004395, -29.878755 ], [ 27.531738, -29.248063 ], [ 28.081055, -28.854296 ], [ 28.542480, -28.652031 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.319824, -10.314919 ], [ 40.484619, -10.768556 ], [ 40.440674, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.605469, -14.200488 ], [ 40.781250, -14.689881 ], [ 40.484619, -15.411319 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.591667 ], [ 36.287842, -18.667063 ], [ 35.903320, -18.843913 ], [ 35.200195, -19.559790 ], [ 34.793701, -19.787380 ], [ 34.705811, -20.499064 ], [ 35.178223, -21.258661 ], [ 35.375977, -21.841105 ], [ 35.386963, -22.146708 ], [ 35.562744, -22.095820 ], [ 35.540771, -23.069624 ], [ 35.375977, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.463867, -24.126702 ], [ 35.046387, -24.477150 ], [ 34.222412, -24.816654 ], [ 33.013916, -25.363882 ], [ 32.574463, -25.730633 ], [ 32.662354, -26.155438 ], [ 32.915039, -26.214591 ], [ 32.838135, -26.745610 ], [ 32.069092, -26.735799 ], [ 31.992188, -26.293415 ], [ 31.838379, -25.849337 ], [ 31.750488, -25.482951 ], [ 31.937256, -24.367114 ], [ 31.673584, -23.664651 ], [ 31.190186, -22.258597 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.662354, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.618408, -19.425154 ], [ 32.662354, -18.677471 ], [ 32.849121, -17.978733 ], [ 32.849121, -16.720385 ], [ 32.332764, -16.393931 ], [ 31.849365, -16.320139 ], [ 31.640625, -16.077486 ], [ 31.179199, -15.866242 ], [ 30.344238, -15.887376 ], [ 30.179443, -14.796128 ], [ 33.211670, -13.976715 ], [ 33.793945, -14.455958 ], [ 34.068604, -14.360191 ], [ 34.464111, -14.615478 ], [ 34.519043, -15.019075 ], [ 34.310303, -15.485445 ], [ 34.387207, -16.183024 ], [ 35.035400, -16.804541 ], [ 35.343018, -16.109153 ], [ 35.771484, -15.897942 ], [ 35.694580, -14.615478 ], [ 35.266113, -13.891411 ], [ 34.914551, -13.571242 ], [ 34.562988, -13.581921 ], [ 34.277344, -12.286334 ], [ 34.562988, -11.523088 ], [ 35.310059, -11.436955 ], [ 36.518555, -11.727546 ], [ 36.782227, -11.598432 ], [ 37.474365, -11.566144 ], [ 37.825928, -11.275387 ], [ 38.430176, -11.286161 ], [ 39.528809, -10.898042 ], [ 40.319824, -10.314919 ] ] ] } } ] } ] } , @@ -513,35 +517,41 @@ , { "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.016689 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.649811 ], [ 0.373535, 10.185187 ], [ 0.373535, 9.459899 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.406048 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.065674, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.342583 ], [ -0.878906, 5.112830 ], [ -0.878906, 10.951978 ], [ -0.769043, 10.930405 ], [ -0.439453, 11.092166 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.511475, 41.640078 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.027832, 40.838749 ], [ 21.005859, 40.580585 ], [ 20.676270, 40.430224 ], [ 20.621338, 40.111689 ], [ 20.148926, 39.622615 ], [ 19.984131, 39.690281 ], [ 19.962158, 39.909736 ], [ 19.412842, 40.245992 ], [ 19.324951, 40.722283 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.511475, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.917480, 41.640078 ], [ 22.950439, 41.343825 ], [ 22.763672, 41.310824 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.153842 ], [ 21.763916, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.027832, 40.838749 ], [ 20.786133, 40.979898 ], [ 20.610352, 41.087632 ], [ 20.467529, 41.516804 ], [ 20.511475, 41.640078 ], [ 22.917480, 41.640078 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.640078 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.236511 ], [ 24.499512, 41.582580 ], [ 23.697510, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.917480, 41.640078 ], [ 26.114502, 41.640078 ] ] ] } } , { "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.514160, 37.343959 ], [ 10.217285, 37.230328 ], [ 10.184326, 36.721274 ], [ 11.030273, 37.090240 ], [ 11.107178, 36.897194 ], [ 10.601807, 36.403600 ], [ 10.590820, 35.942436 ], [ 10.942383, 35.692995 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.325292 ], [ 10.338135, 33.779147 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.491699, 33.137551 ], [ 11.436768, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.756196 ], [ 9.953613, 31.372399 ], [ 10.063477, 30.958769 ], [ 9.975586, 30.533877 ], [ 9.481201, 30.306503 ], [ 9.063721, 32.101190 ], [ 8.437500, 32.500496 ], [ 8.437500, 32.750323 ], [ 7.613525, 33.339707 ], [ 7.525635, 34.098159 ], [ 8.140869, 34.651285 ], [ 8.382568, 35.478565 ], [ 8.217773, 36.430122 ], [ 8.426514, 36.941111 ], [ 9.514160, 37.343959 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.491699, 33.137551 ], [ 12.667236, 32.787275 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.713355 ], [ 15.249023, 32.259265 ], [ 15.721436, 31.372399 ], [ 16.611328, 31.175210 ], [ 18.028564, 30.760719 ], [ 19.094238, 30.268556 ], [ 19.577637, 30.524413 ], [ 20.061035, 30.987028 ], [ 19.819336, 31.746854 ], [ 20.137939, 32.231390 ], [ 20.852051, 32.704111 ], [ 21.544189, 32.842674 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.184911 ], [ 23.609619, 32.184911 ], [ 23.928223, 32.017392 ], [ 24.927979, 31.896214 ], [ 25.169678, 31.569175 ], [ 24.807129, 31.090574 ], [ 24.960938, 30.656816 ], [ 24.708252, 30.040566 ], [ 25.004883, 29.238477 ], [ 25.004883, 20.004322 ], [ 23.851318, 19.993998 ], [ 23.840332, 19.580493 ], [ 19.852295, 21.493964 ], [ 15.864258, 23.402765 ], [ 14.150391, 22.492257 ], [ 13.579102, 23.039298 ], [ 11.997070, 23.473324 ], [ 11.568604, 24.096619 ], [ 10.777588, 24.557116 ], [ 10.305176, 24.377121 ], [ 9.953613, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.327393, 26.096255 ], [ 9.722900, 26.509905 ], [ 9.635010, 27.137368 ], [ 9.755859, 27.683528 ], [ 9.689941, 28.139816 ], [ 9.865723, 28.960089 ], [ 9.810791, 29.420460 ], [ 9.481201, 30.306503 ], [ 9.975586, 30.533877 ], [ 10.063477, 30.958769 ], [ 9.953613, 31.372399 ], [ 10.634766, 31.756196 ], [ 10.942383, 32.082575 ], [ 11.436768, 32.370683 ], [ 11.491699, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.449219, 13.859414 ], [ 6.448975, 13.485790 ], [ 6.822510, 13.111580 ], [ 7.338867, 13.090179 ], [ 7.811279, 13.336175 ], [ 9.019775, 12.822514 ], [ 9.525146, 12.843938 ], [ 10.118408, 13.272026 ], [ 10.700684, 13.239945 ], [ 10.997314, 13.389620 ], [ 11.535645, 13.325485 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.592600 ], [ 13.326416, 13.549881 ], [ 13.996582, 12.458033 ], [ 14.183350, 12.479487 ], [ 14.578857, 12.082296 ], [ 14.468994, 11.899604 ], [ 14.414062, 11.566144 ], [ 13.579102, 10.800933 ], [ 13.315430, 10.152746 ], [ 13.172607, 9.633246 ], [ 12.952881, 9.416548 ], [ 12.755127, 8.711359 ], [ 12.216797, 8.298470 ], [ 12.062988, 7.798079 ], [ 11.843262, 7.395153 ], [ 11.744385, 6.980954 ], [ 11.063232, 6.642783 ], [ 10.502930, 7.057282 ], [ 10.118408, 7.035476 ], [ 9.525146, 6.446318 ], [ 9.239502, 6.446318 ], [ 8.756104, 5.473832 ], [ 8.503418, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.086182, 4.466904 ], [ 6.701660, 4.236856 ], [ 5.899658, 4.258768 ], [ 5.361328, 4.882994 ], [ 5.031738, 5.605052 ], [ 4.328613, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.863382 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.134639 ], [ 3.218994, 9.438224 ], [ 3.713379, 10.055403 ], [ 3.603516, 10.325728 ], [ 3.801270, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.951029 ], [ 4.108887, 13.528519 ], [ 4.372559, 13.742053 ], [ 5.449219, 13.859414 ] ] ] } } , { "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.900879, 10.995120 ], [ 0.780029, 10.466206 ], [ 1.428223, 9.817329 ], [ 1.461182, 9.329831 ], [ 1.669922, 9.123792 ], [ 1.625977, 6.828261 ], [ 1.867676, 6.140555 ], [ 1.065674, 5.922045 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.406048 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.678779 ], [ 0.373535, 9.459899 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.656982, 2.284551 ], [ 11.282959, 2.262595 ], [ 11.282959, 1.054628 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.153487 ], [ 9.656982, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.755371, 2.328460 ], [ 12.359619, 2.185749 ], [ 12.952881, 2.317483 ], [ 13.073730, 2.262595 ], [ 13.007812, 1.823423 ], [ 13.282471, 1.307260 ], [ 14.029541, 1.395126 ], [ 14.282227, 1.197423 ], [ 13.842773, 0.032959 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.560294 ], [ 14.359131, -0.878872 ], [ 8.822021, -0.878872 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.195557, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.054628 ], [ 11.282959, 2.262595 ], [ 11.755371, 2.328460 ] ] ] } } , { "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.135287 ], [ 22.983398, 10.714587 ], [ 23.554688, 10.087854 ], [ 23.554688, 9.676569 ], [ 23.400879, 9.264779 ], [ 23.466797, 8.950193 ], [ 23.807373, 8.667918 ], [ 24.565430, 8.222364 ], [ 25.114746, 7.819847 ], [ 25.125732, 7.493196 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.544560 ], [ 26.466064, 5.943900 ], [ 27.213135, 5.550381 ], [ 27.377930, 5.233187 ], [ 27.048340, 5.123772 ], [ 26.400146, 5.145657 ], [ 25.653076, 5.255068 ], [ 25.279541, 5.167541 ], [ 25.136719, 4.926779 ], [ 24.807129, 4.893941 ], [ 24.411621, 5.101887 ], [ 23.302002, 4.609278 ], [ 22.840576, 4.707828 ], [ 22.708740, 4.631179 ], [ 22.412109, 4.028659 ], [ 21.665039, 4.225900 ], [ 20.928955, 4.324501 ], [ 20.291748, 4.685930 ], [ 19.467773, 5.025283 ], [ 18.940430, 4.707828 ], [ 18.544922, 4.203986 ], [ 18.457031, 3.502455 ], [ 17.808838, 3.557283 ], [ 17.138672, 3.721745 ], [ 16.534424, 3.195364 ], [ 16.018066, 2.262595 ], [ 15.908203, 2.558963 ], [ 15.864258, 3.008870 ], [ 15.402832, 3.337954 ], [ 15.040283, 3.853293 ], [ 14.952393, 4.203986 ], [ 14.479980, 4.729727 ], [ 14.556885, 5.025283 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.776611, 6.402648 ], [ 15.281982, 7.416942 ], [ 16.105957, 7.493196 ], [ 16.292725, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.710205, 7.504089 ], [ 17.962646, 7.885147 ], [ 18.391113, 8.276727 ], [ 18.918457, 8.624472 ], [ 18.819580, 8.982749 ], [ 19.094238, 9.069551 ], [ 20.061035, 9.015302 ], [ 21.005859, 9.470736 ], [ 21.730957, 10.563422 ], [ 22.236328, 10.973550 ], [ 22.862549, 11.135287 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.402765 ], [ 19.852295, 21.493964 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.027344, 15.675932 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.784737 ], [ 22.302246, 13.368243 ], [ 22.038574, 12.951029 ], [ 21.939697, 12.586732 ], [ 22.291260, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.510986, 11.673755 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.135287 ], [ 22.236328, 10.973550 ], [ 21.730957, 10.563422 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.069551 ], [ 18.819580, 8.982749 ], [ 18.918457, 8.624472 ], [ 18.391113, 8.276727 ], [ 17.962646, 7.885147 ], [ 16.710205, 7.504089 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.281982, 7.416942 ], [ 15.435791, 7.689217 ], [ 15.128174, 8.374562 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.961045 ], [ 13.952637, 9.546583 ], [ 14.172363, 10.022948 ], [ 14.633789, 9.914744 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.930420, 10.887254 ], [ 14.963379, 11.555380 ], [ 14.897461, 12.211180 ], [ 14.501953, 12.854649 ], [ 14.600830, 13.325485 ], [ 13.952637, 13.346865 ], [ 13.963623, 13.998037 ], [ 13.546143, 14.360191 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.303955, 17.926476 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.725291 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.857195 ], [ 15.864258, 23.402765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.501953, 12.854649 ], [ 14.897461, 12.211180 ], [ 14.963379, 11.555380 ], [ 14.930420, 10.887254 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.633789, 9.914744 ], [ 14.172363, 10.022948 ], [ 13.952637, 9.546583 ], [ 14.545898, 8.961045 ], [ 14.985352, 8.798225 ], [ 15.128174, 8.374562 ], [ 15.435791, 7.689217 ], [ 15.281982, 7.416942 ], [ 14.776611, 6.402648 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.025283 ], [ 14.479980, 4.729727 ], [ 14.952393, 4.203986 ], [ 15.040283, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.008870 ], [ 15.908203, 2.558963 ], [ 16.018066, 2.262595 ], [ 15.941162, 1.724593 ], [ 15.150146, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.262595 ], [ 12.952881, 2.317483 ], [ 12.359619, 2.185749 ], [ 11.755371, 2.328460 ], [ 11.282959, 2.262595 ], [ 9.656982, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.953857, 3.897138 ], [ 8.745117, 4.346411 ], [ 8.492432, 4.488809 ], [ 8.503418, 4.773521 ], [ 8.756104, 5.473832 ], [ 9.239502, 6.446318 ], [ 9.525146, 6.446318 ], [ 10.118408, 7.035476 ], [ 10.502930, 7.057282 ], [ 11.063232, 6.642783 ], [ 11.744385, 6.980954 ], [ 11.843262, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.298470 ], [ 12.755127, 8.711359 ], [ 12.952881, 9.416548 ], [ 13.172607, 9.633246 ], [ 13.315430, 10.152746 ], [ 13.579102, 10.800933 ], [ 14.414062, 11.566144 ], [ 14.468994, 11.899604 ], [ 14.578857, 12.082296 ], [ 14.183350, 12.479487 ], [ 14.216309, 12.801088 ], [ 14.501953, 12.854649 ] ] ] } } , { "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.666222 ], [ 33.903809, 35.245619 ], [ 33.980713, 35.056980 ], [ 33.870850, 35.092945 ], [ 33.673096, 35.012002 ], [ 33.530273, 35.038992 ], [ 33.475342, 34.994004 ], [ 33.453369, 35.101934 ], [ 33.387451, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.926025, 35.083956 ], [ 32.739258, 35.137879 ], [ 32.805176, 35.146863 ], [ 32.947998, 35.380093 ], [ 33.673096, 35.371135 ], [ 34.573975, 35.666222 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.387451, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 34.994004 ], [ 33.530273, 35.038992 ], [ 33.673096, 35.012002 ], [ 33.870850, 35.092945 ], [ 33.980713, 35.056980 ], [ 34.002686, 34.976002 ], [ 32.980957, 34.569906 ], [ 32.497559, 34.696461 ], [ 32.255859, 35.101934 ], [ 32.739258, 35.137879 ], [ 32.926025, 35.083956 ], [ 33.189697, 35.173808 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.002197, 34.642247 ], [ 36.452637, 34.587997 ], [ 36.617432, 34.198173 ], [ 36.068115, 33.824794 ], [ 35.826416, 33.275435 ], [ 35.551758, 33.266250 ], [ 35.463867, 33.082337 ], [ 35.134277, 33.091542 ], [ 35.485840, 33.906896 ], [ 36.002197, 34.642247 ] ] ] } } , { "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.189209, 32.528289 ], [ 35.551758, 32.389239 ], [ 35.551758, 31.784217 ], [ 35.397949, 31.484893 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.233154, 31.756196 ], [ 34.980469, 31.868228 ], [ 35.189209, 32.528289 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.376412 ], [ 39.199219, 32.157012 ], [ 39.012451, 32.008076 ], [ 37.001953, 31.503629 ], [ 38.001709, 30.505484 ], [ 37.672119, 30.334954 ], [ 37.507324, 30.002517 ], [ 36.738281, 29.859701 ], [ 36.507568, 29.506549 ], [ 36.068115, 29.190533 ], [ 34.958496, 29.353452 ], [ 34.925537, 29.496988 ], [ 35.419922, 31.099982 ], [ 35.397949, 31.484893 ], [ 35.551758, 31.784217 ], [ 35.551758, 32.389239 ], [ 35.727539, 32.704111 ], [ 36.837158, 32.314991 ], [ 38.792725, 33.376412 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.166992, 41.640078 ], [ 36.914062, 41.335576 ], [ 38.221436, 40.979898 ], [ 38.353271, 40.946714 ], [ 38.594971, 40.979898 ], [ 39.517822, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.561279, 41.541478 ], [ 42.626953, 41.582580 ], [ 43.582764, 41.095912 ], [ 43.637695, 40.979898 ], [ 43.758545, 40.738933 ], [ 43.659668, 40.254377 ], [ 44.406738, 40.002372 ], [ 44.791260, 39.707187 ], [ 44.110107, 39.427707 ], [ 44.428711, 38.281313 ], [ 44.230957, 37.970185 ], [ 44.780273, 37.169072 ], [ 44.296875, 37.002553 ], [ 43.945312, 37.256566 ], [ 42.780762, 37.378888 ], [ 42.352295, 37.230328 ], [ 41.209717, 37.072710 ], [ 40.671387, 37.090240 ], [ 39.528809, 36.712467 ], [ 38.704834, 36.712467 ], [ 38.166504, 36.897194 ], [ 37.067871, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.253133 ], [ 36.156006, 35.817813 ], [ 35.782471, 36.270850 ], [ 36.166992, 36.650793 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.791691 ], [ 34.024658, 36.217687 ], [ 32.508545, 36.102376 ], [ 31.706543, 36.641978 ], [ 30.618896, 36.677231 ], [ 30.399170, 36.261992 ], [ 29.707031, 36.137875 ], [ 28.740234, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.649034 ], [ 26.323242, 38.203655 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.421860 ], [ 28.828125, 40.455307 ], [ 29.102783, 40.979898 ], [ 29.245605, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.167969, 41.640078 ], [ 36.166992, 41.640078 ] ] ], [ [ [ 28.114014, 41.640078 ], [ 28.114014, 41.623655 ], [ 28.992920, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.004775 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.356201, 40.153687 ], [ 26.048584, 40.613952 ], [ 26.059570, 40.822124 ], [ 26.301270, 40.930115 ], [ 26.323242, 40.979898 ], [ 26.608887, 41.566142 ], [ 26.455078, 41.640078 ], [ 28.114014, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.247812 ], [ 34.486084, 3.557283 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.900286 ], [ 34.672852, 1.175455 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.878872 ], [ 29.586182, -0.878872 ], [ 29.586182, -0.593251 ], [ 29.816895, -0.208740 ], [ 29.827881, 0.000000 ], [ 29.882812, 0.593251 ], [ 30.091553, 1.054628 ], [ 30.476074, 1.581830 ], [ 30.860596, 1.845384 ], [ 31.179199, 2.196727 ], [ 30.772705, 2.339438 ], [ 30.838623, 3.502455 ], [ 31.245117, 3.776559 ], [ 31.882324, 3.557283 ], [ 32.684326, 3.787522 ], [ 33.387451, 3.787522 ], [ 34.002686, 4.247812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.157012 ], [ 40.407715, 31.886887 ], [ 41.890869, 31.184609 ], [ 44.714355, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.406494, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.066162, 17.403063 ], [ 43.791504, 17.319176 ], [ 43.385010, 17.581194 ], [ 43.121338, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.341226 ], [ 42.648926, 16.772987 ], [ 42.352295, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.759033, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.946045, 19.487308 ], [ 40.253906, 20.169411 ], [ 39.803467, 20.334326 ], [ 39.144287, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.573438 ], [ 38.496094, 23.684774 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.639404, 25.819672 ], [ 36.254883, 26.568877 ], [ 35.134277, 28.062286 ], [ 34.639893, 28.052591 ], [ 34.793701, 28.603814 ], [ 34.837646, 28.950476 ], [ 34.958496, 29.353452 ], [ 36.068115, 29.190533 ], [ 36.507568, 29.506549 ], [ 36.738281, 29.859701 ], [ 37.507324, 30.002517 ], [ 37.672119, 30.334954 ], [ 38.001709, 30.505484 ], [ 37.001953, 31.503629 ], [ 39.012451, 32.008076 ], [ 39.199219, 32.157012 ] ] ] } } , { "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.836090 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.176758, 14.487871 ], [ 41.737061, 13.923404 ], [ 42.593994, 12.993853 ], [ 43.088379, 12.693933 ], [ 42.780762, 12.458033 ], [ 42.352295, 12.543840 ], [ 42.011719, 12.865360 ], [ 41.605225, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.902100, 14.115267 ], [ 40.034180, 14.519780 ], [ 39.342041, 14.530415 ], [ 39.100342, 14.743011 ], [ 38.518066, 14.498508 ], [ 37.913818, 14.955399 ], [ 37.595215, 14.211139 ], [ 36.430664, 14.424040 ], [ 36.320801, 14.817371 ], [ 36.760254, 16.288506 ], [ 36.859131, 16.951724 ], [ 37.166748, 17.256236 ], [ 37.902832, 17.424029 ], [ 38.408203, 17.999632 ] ] ] } } , { "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.913818, 14.955399 ], [ 38.518066, 14.498508 ], [ 39.100342, 14.743011 ], [ 39.342041, 14.530415 ], [ 40.034180, 14.519780 ], [ 40.902100, 14.115267 ], [ 41.154785, 13.774066 ], [ 41.605225, 13.453737 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.543840 ], [ 41.660156, 11.630716 ], [ 41.737061, 11.350797 ], [ 41.759033, 11.049038 ], [ 42.319336, 11.027472 ], [ 42.561035, 11.102947 ], [ 42.780762, 10.919618 ], [ 42.561035, 10.574222 ], [ 42.934570, 10.022948 ], [ 43.297119, 9.535749 ], [ 43.681641, 9.178025 ], [ 45.000000, 8.700499 ], [ 45.878906, 8.385431 ], [ 45.878906, 5.976680 ], [ 45.000000, 5.047171 ], [ 44.967041, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.247812 ], [ 42.132568, 4.236856 ], [ 41.857910, 3.919060 ], [ 41.176758, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.858398, 3.831370 ], [ 39.561768, 3.414725 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.612107 ], [ 38.441162, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.859131, 4.444997 ], [ 36.166992, 4.444997 ], [ 35.815430, 4.773521 ], [ 35.815430, 5.331644 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.588217 ], [ 34.255371, 6.828261 ], [ 34.079590, 7.220800 ], [ 33.574219, 7.710992 ], [ 32.958984, 7.787194 ], [ 33.299561, 8.352823 ], [ 33.826904, 8.374562 ], [ 33.980713, 8.678779 ], [ 33.969727, 9.579084 ], [ 34.255371, 10.628216 ], [ 34.738770, 10.908830 ], [ 34.837646, 11.318481 ], [ 35.266113, 12.082296 ], [ 35.870361, 12.576010 ], [ 36.276855, 13.560562 ], [ 36.430664, 14.424040 ], [ 37.595215, 14.211139 ], [ 37.913818, 14.955399 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.458491 ], [ 43.472900, 11.275387 ], [ 43.670654, 10.865676 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.560303, 10.692996 ], [ 45.878906, 10.736175 ], [ 45.878906, 8.385431 ], [ 45.000000, 8.700499 ], [ 43.681641, 9.178025 ], [ 43.297119, 9.535749 ], [ 42.934570, 10.022948 ], [ 42.561035, 10.574222 ], [ 42.780762, 10.919618 ], [ 43.143311, 11.458491 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.747070, 39.470125 ], [ 45.736084, 39.317300 ], [ 45.878906, 39.121537 ], [ 45.878906, 38.788345 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.707187 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.878906, 40.204050 ], [ 45.878906, 39.724089 ], [ 45.615234, 39.901309 ], [ 45.878906, 40.204050 ] ] ], [ [ [ 45.878906, 40.220830 ], [ 45.362549, 40.555548 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.988192 ], [ 44.978027, 41.253032 ], [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.220830 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.780762, 37.378888 ], [ 43.945312, 37.256566 ], [ 44.296875, 37.002553 ], [ 44.780273, 37.169072 ], [ 45.000000, 36.756490 ], [ 45.428467, 35.978006 ], [ 45.878906, 35.773258 ], [ 45.878906, 34.903953 ], [ 45.648193, 34.741612 ], [ 45.417480, 33.961586 ], [ 45.878906, 33.330528 ], [ 45.878906, 29.132970 ], [ 45.000000, 29.171349 ], [ 44.714355, 29.180941 ], [ 41.890869, 31.184609 ], [ 40.407715, 31.886887 ], [ 39.199219, 32.157012 ], [ 38.792725, 33.376412 ], [ 41.011963, 34.415973 ], [ 41.385498, 35.630512 ], [ 41.297607, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.352295, 37.230328 ], [ 42.780762, 37.378888 ] ] ] } } , { "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 5.976680 ], [ 45.878906, 2.295528 ], [ 45.571289, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.066162, 1.054628 ], [ 43.143311, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.077637, -0.878872 ], [ 41.011963, -0.878872 ], [ 41.000977, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.778451 ], [ 41.857910, 3.919060 ], [ 42.132568, 4.236856 ], [ 42.769775, 4.247812 ], [ 43.659668, 4.959615 ], [ 44.967041, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.878906, 5.976680 ] ] ] } } , @@ -553,43 +563,57 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.393311, 43.004647 ], [ 9.558105, 42.147114 ], [ 9.228516, 41.376809 ], [ 8.778076, 41.582580 ], [ 8.547363, 42.252918 ], [ 8.745117, 42.625876 ], [ 9.393311, 43.004647 ] ] ], [ [ [ 2.515869, 51.144894 ], [ 2.658691, 50.792047 ], [ 3.131104, 50.778155 ], [ 3.592529, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.679932, 49.525208 ], [ 5.899658, 49.439557 ], [ 6.185303, 49.460984 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.470703, 47.620975 ], [ 7.196045, 47.450380 ], [ 6.734619, 47.539455 ], [ 6.767578, 47.286682 ], [ 6.042480, 46.724800 ], [ 6.020508, 46.271037 ], [ 6.503906, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.706179 ], [ 7.097168, 45.328979 ], [ 6.756592, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.691708 ], [ 6.536865, 43.125043 ], [ 4.559326, 43.397065 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.834717, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.875964 ], [ -0.878906, 49.382373 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.944584 ], [ 2.515869, 51.144894 ] ] ] ] } } , +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 54.572062 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 1.680908, 52.736292 ], [ 1.560059, 52.099757 ], [ 1.054688, 51.801822 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.771208 ], [ -0.878906, 50.757310 ], [ -0.878906, 54.572062 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 42.875964 ], [ 0.000000, 42.666281 ], [ 0.340576, 42.577355 ], [ 0.703125, 42.795401 ], [ 1.834717, 42.342305 ], [ 2.988281, 42.472097 ], [ 3.043213, 41.894100 ], [ 2.098389, 41.219986 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.672306 ], [ 0.318604, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.875964 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.710449, 66.861082 ], [ 15.391846, 66.513260 ], [ 15.106201, 66.191574 ], [ 13.557129, 64.788168 ], [ 13.919678, 64.444372 ], [ 13.579102, 64.048171 ], [ 12.579346, 64.067396 ], [ 11.931152, 63.129538 ], [ 11.997070, 61.799093 ], [ 12.634277, 61.291349 ], [ 12.304688, 60.114145 ], [ 11.469727, 59.428316 ], [ 11.030273, 58.853542 ], [ 10.360107, 59.467408 ], [ 8.382568, 58.309489 ], [ 7.053223, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.306396, 59.662192 ], [ 4.998779, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.558350, 63.450509 ], [ 10.535889, 64.486993 ], [ 12.359619, 65.879215 ], [ 13.128662, 66.513260 ], [ 13.557129, 66.861082 ], [ 15.710449, 66.861082 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.976807, 51.474540 ], [ 5.614014, 51.034486 ], [ 6.163330, 50.798991 ], [ 6.042480, 50.127622 ], [ 5.789795, 50.085344 ], [ 5.679932, 49.525208 ], [ 4.801025, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.592529, 50.380502 ], [ 3.131104, 50.778155 ], [ 2.658691, 50.792047 ], [ 2.515869, 51.144894 ], [ 3.317871, 51.344339 ], [ 4.053955, 51.268789 ], [ 4.976807, 51.474540 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.108810 ], [ 12.689209, 55.609384 ], [ 12.095947, 54.800685 ], [ 11.041260, 55.360381 ], [ 10.909424, 55.776573 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 10.579834, 57.727619 ], [ 10.546875, 57.213660 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.607885 ], [ 10.920410, 56.456420 ], [ 10.667725, 56.078167 ], [ 10.371094, 56.188368 ], [ 9.656982, 55.466399 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.958694 ], [ 8.118896, 55.516192 ], [ 8.096924, 56.541315 ], [ 8.261719, 56.806893 ], [ 8.547363, 57.106419 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.444949 ], [ 10.579834, 57.727619 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.942627, 54.597528 ], [ 10.953369, 54.361358 ], [ 10.942383, 54.007769 ], [ 11.964111, 54.194583 ], [ 12.524414, 54.470038 ], [ 13.645020, 54.072283 ], [ 14.117432, 53.755207 ], [ 14.359131, 53.245495 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.623060 ], [ 14.688721, 52.086257 ], [ 14.611816, 51.740636 ], [ 15.018311, 51.103522 ], [ 14.578857, 50.999929 ], [ 14.315186, 51.117317 ], [ 14.062500, 50.923813 ], [ 13.337402, 50.729502 ], [ 12.974854, 50.485474 ], [ 12.238770, 50.261254 ], [ 12.414551, 49.965356 ], [ 12.524414, 49.546598 ], [ 13.029785, 49.303636 ], [ 13.601074, 48.871941 ], [ 13.249512, 48.414619 ], [ 12.886963, 48.290503 ], [ 13.029785, 47.635784 ], [ 12.930908, 47.465236 ], [ 12.623291, 47.672786 ], [ 12.139893, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.561701 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.576526 ], [ 9.602051, 47.524620 ], [ 8.525391, 47.827908 ], [ 8.316650, 47.613570 ], [ 7.470703, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.016257 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.460984 ], [ 6.240234, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.163330, 50.798991 ], [ 5.987549, 51.849353 ], [ 6.591797, 51.849353 ], [ 6.844482, 52.227799 ], [ 7.097168, 53.140181 ], [ 6.910400, 53.481508 ], [ 7.108154, 53.690201 ], [ 7.943115, 53.748711 ], [ 8.129883, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.580322, 54.393352 ], [ 8.525391, 54.958694 ], [ 9.283447, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.525391, 47.827908 ], [ 9.602051, 47.524620 ], [ 9.635010, 47.346267 ], [ 9.481201, 47.100045 ], [ 9.931641, 46.920255 ], [ 10.447998, 46.890232 ], [ 10.371094, 46.483265 ], [ 9.920654, 46.316584 ], [ 9.184570, 46.437857 ], [ 8.964844, 46.035109 ], [ 8.492432, 46.004593 ], [ 8.316650, 46.164614 ], [ 7.756348, 45.821143 ], [ 7.272949, 45.775186 ], [ 6.844482, 45.989329 ], [ 6.503906, 46.430285 ], [ 6.020508, 46.271037 ], [ 6.042480, 46.724800 ], [ 6.767578, 47.286682 ], [ 6.734619, 47.539455 ], [ 7.196045, 47.450380 ], [ 7.470703, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.525391, 47.827908 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.240234, 49.901711 ], [ 6.185303, 49.460984 ], [ 5.899658, 49.439557 ], [ 5.679932, 49.525208 ], [ 5.789795, 50.085344 ], [ 6.042480, 50.127622 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.315186, 51.117317 ], [ 14.578857, 50.999929 ], [ 15.018311, 51.103522 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.694718 ], [ 16.182861, 50.422519 ], [ 16.721191, 50.212064 ], [ 16.875000, 50.471491 ], [ 17.556152, 50.359480 ], [ 17.655029, 50.050085 ], [ 18.391113, 49.986552 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.310799 ], [ 18.171387, 49.267805 ], [ 18.105469, 49.045070 ], [ 17.918701, 48.994636 ], [ 17.885742, 48.900838 ], [ 17.545166, 48.799627 ], [ 17.105713, 48.814099 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.260010, 49.037868 ], [ 14.908447, 48.965794 ], [ 14.337158, 48.552978 ], [ 13.601074, 48.871941 ], [ 13.029785, 49.303636 ], [ 12.524414, 49.546598 ], [ 12.414551, 49.965356 ], [ 12.238770, 50.261254 ], [ 12.974854, 50.485474 ], [ 13.337402, 50.729502 ], [ 14.062500, 50.923813 ], [ 14.315186, 51.117317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.324951, 49.567978 ], [ 19.830322, 49.217597 ], [ 20.423584, 49.432413 ], [ 20.895996, 49.325122 ], [ 21.610107, 49.468124 ], [ 22.565918, 49.081062 ], [ 22.280273, 48.821333 ], [ 22.093506, 48.421910 ], [ 21.873779, 48.319734 ], [ 20.808105, 48.625647 ], [ 20.478516, 48.560250 ], [ 20.236816, 48.327039 ], [ 19.775391, 48.202710 ], [ 19.665527, 48.261256 ], [ 19.182129, 48.107431 ], [ 18.775635, 48.078079 ], [ 18.698730, 47.879513 ], [ 17.863770, 47.754098 ], [ 17.490234, 47.864774 ], [ 16.984863, 48.122101 ], [ 16.885986, 48.465637 ], [ 17.105713, 48.814099 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.900838 ], [ 17.918701, 48.994636 ], [ 18.105469, 49.045070 ], [ 18.171387, 49.267805 ], [ 18.402100, 49.310799 ], [ 18.555908, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.432413 ], [ 19.324951, 49.567978 ] ] ] } } , { "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.498392 ], [ 16.885986, 46.377254 ], [ 17.633057, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.905300 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.855869 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.065762 ], [ 17.006836, 45.228481 ], [ 16.534424, 45.213004 ], [ 16.325684, 45.003651 ], [ 15.963135, 45.228481 ], [ 15.754395, 44.816916 ], [ 16.237793, 44.347422 ], [ 16.457520, 44.040219 ], [ 16.918945, 43.667872 ], [ 17.303467, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.566895, 42.650122 ], [ 18.457031, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.205176 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.237328 ], [ 15.380859, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.908447, 45.073521 ], [ 14.260254, 45.228481 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.721924, 45.498647 ], [ 14.414062, 45.467836 ], [ 14.600830, 45.629405 ], [ 14.941406, 45.467836 ], [ 15.325928, 45.452424 ], [ 15.325928, 45.729191 ], [ 15.677490, 45.828799 ], [ 15.776367, 46.233053 ], [ 16.567383, 46.498392 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.006836, 45.228481 ], [ 17.863770, 45.065762 ], [ 18.555908, 45.081279 ], [ 19.006348, 44.855869 ], [ 19.368896, 44.863656 ], [ 19.116211, 44.418088 ], [ 19.599609, 44.040219 ], [ 19.456787, 43.564472 ], [ 19.226074, 43.524655 ], [ 19.039307, 43.428988 ], [ 18.709717, 43.197167 ], [ 18.566895, 42.650122 ], [ 17.677002, 43.028745 ], [ 17.303467, 43.444943 ], [ 16.918945, 43.667872 ], [ 16.457520, 44.040219 ], [ 16.237793, 44.347422 ], [ 15.754395, 44.816916 ], [ 15.963135, 45.228481 ], [ 16.325684, 45.003651 ], [ 16.534424, 45.213004 ], [ 17.006836, 45.228481 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.742432, 42.682435 ], [ 19.808350, 42.496403 ], [ 20.072021, 42.585444 ], [ 20.291748, 42.317939 ], [ 20.522461, 42.212245 ], [ 20.588379, 41.853196 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.027832, 40.838749 ], [ 21.005859, 40.580585 ], [ 20.676270, 40.430224 ], [ 20.654297, 40.313043 ], [ 19.390869, 40.313043 ], [ 19.324951, 40.722283 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.544678, 41.713930 ], [ 19.379883, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.742432, 42.682435 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.819092, 43.269206 ], [ 20.961914, 43.125043 ], [ 21.148682, 43.068888 ], [ 21.280518, 42.908160 ], [ 21.445312, 42.859860 ], [ 21.632080, 42.674359 ], [ 21.774902, 42.682435 ], [ 21.665039, 42.439674 ], [ 21.544189, 42.317939 ], [ 21.577148, 42.244785 ], [ 21.357422, 42.204107 ], [ 20.764160, 42.049293 ], [ 20.720215, 41.845013 ], [ 20.588379, 41.853196 ], [ 20.522461, 42.212245 ], [ 20.291748, 42.317939 ], [ 20.072021, 42.585444 ], [ 20.258789, 42.811522 ], [ 20.500488, 42.884015 ], [ 20.643311, 43.213183 ], [ 20.819092, 43.269206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 46.172223 ], [ 20.225830, 46.126556 ], [ 20.764160, 45.729191 ], [ 20.874023, 45.413876 ], [ 21.489258, 45.182037 ], [ 21.566162, 44.770137 ], [ 22.148438, 44.472991 ], [ 22.467041, 44.699898 ], [ 22.708740, 44.574817 ], [ 22.478027, 44.410240 ], [ 22.664795, 44.229457 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.205176 ], [ 22.609863, 42.900113 ], [ 22.434082, 42.577355 ], [ 22.543945, 42.455888 ], [ 22.379150, 42.317939 ], [ 21.917725, 42.301690 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.317939 ], [ 21.665039, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.674359 ], [ 21.445312, 42.859860 ], [ 21.280518, 42.908160 ], [ 21.148682, 43.068888 ], [ 20.961914, 43.125043 ], [ 20.819092, 43.269206 ], [ 20.643311, 43.213183 ], [ 20.500488, 42.884015 ], [ 20.258789, 42.811522 ], [ 20.346680, 42.900113 ], [ 19.962158, 43.100983 ], [ 19.632568, 43.213183 ], [ 19.489746, 43.349150 ], [ 19.226074, 43.524655 ], [ 19.456787, 43.564472 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.418088 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.855869 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.905300 ], [ 19.599609, 46.172223 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.317939 ], [ 22.884521, 42.000325 ], [ 22.950439, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.145570 ], [ 21.763916, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.027832, 40.838749 ], [ 20.786133, 40.979898 ], [ 20.610352, 41.087632 ], [ 20.467529, 41.516804 ], [ 20.588379, 41.853196 ], [ 20.720215, 41.845013 ], [ 20.764160, 42.049293 ], [ 21.357422, 42.204107 ], [ 21.917725, 42.301690 ], [ 22.379150, 42.317939 ] ] ] } } , { "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.862061, 56.371335 ], [ 25.004883, 56.163906 ], [ 25.532227, 56.096556 ], [ 26.499023, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.773926, 54.844990 ], [ 25.543213, 54.278055 ], [ 24.455566, 53.904338 ], [ 23.488770, 53.910810 ], [ 23.247070, 54.220285 ], [ 22.730713, 54.322931 ], [ 22.653809, 54.578430 ], [ 22.763672, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.060791, 56.029087 ], [ 22.203369, 56.334812 ], [ 23.884277, 56.273861 ], [ 24.862061, 56.371335 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.680183 ], [ 18.698730, 54.438103 ], [ 19.665527, 54.425322 ], [ 20.895996, 54.310114 ], [ 22.730713, 54.322931 ], [ 23.247070, 54.220285 ], [ 23.488770, 53.910810 ], [ 23.532715, 53.468431 ], [ 23.807373, 53.087426 ], [ 23.807373, 52.689702 ], [ 23.203125, 52.482780 ], [ 23.510742, 52.018698 ], [ 23.532715, 51.577070 ], [ 24.038086, 50.701677 ], [ 23.928223, 50.422519 ], [ 23.433838, 50.303376 ], [ 22.521973, 49.475263 ], [ 22.774658, 49.023461 ], [ 22.565918, 49.081062 ], [ 21.610107, 49.468124 ], [ 20.895996, 49.325122 ], [ 20.423584, 49.432413 ], [ 19.830322, 49.217597 ], [ 19.324951, 49.567978 ], [ 18.907471, 49.432413 ], [ 18.391113, 49.986552 ], [ 17.655029, 50.050085 ], [ 17.556152, 50.359480 ], [ 16.875000, 50.471491 ], [ 16.721191, 50.212064 ], [ 16.182861, 50.422519 ], [ 16.237793, 50.694718 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.103522 ], [ 14.611816, 51.740636 ], [ 14.688721, 52.086257 ], [ 14.436035, 52.623060 ], [ 14.073486, 52.981723 ], [ 14.359131, 53.245495 ], [ 14.117432, 53.755207 ], [ 14.809570, 54.046489 ], [ 16.369629, 54.514704 ], [ 17.622070, 54.851315 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.179932, 56.170023 ], [ 29.234619, 55.918430 ], [ 29.377441, 55.671389 ], [ 29.893799, 55.788929 ], [ 30.871582, 55.547281 ], [ 30.970459, 55.078367 ], [ 30.761719, 54.813348 ], [ 31.387939, 54.156001 ], [ 31.794434, 53.975474 ], [ 31.739502, 53.794162 ], [ 32.409668, 53.618579 ], [ 32.695312, 53.350551 ], [ 32.310791, 53.133590 ], [ 31.497803, 53.166534 ], [ 31.311035, 53.074228 ], [ 31.541748, 52.742943 ], [ 31.783447, 52.099757 ], [ 30.926514, 52.038977 ], [ 30.618896, 51.822198 ], [ 30.552979, 51.316881 ], [ 30.157471, 51.412912 ], [ 29.256592, 51.364921 ], [ 28.992920, 51.597548 ], [ 28.619385, 51.426614 ], [ 28.245850, 51.570241 ], [ 27.454834, 51.590723 ], [ 26.345215, 51.828988 ], [ 25.334473, 51.910391 ], [ 24.554443, 51.890054 ], [ 24.005127, 51.618017 ], [ 23.532715, 51.577070 ], [ 23.510742, 52.018698 ], [ 23.203125, 52.482780 ], [ 23.807373, 52.689702 ], [ 23.807373, 53.087426 ], [ 23.532715, 53.468431 ], [ 23.488770, 53.910810 ], [ 24.455566, 53.904338 ], [ 25.543213, 54.278055 ], [ 25.773926, 54.844990 ], [ 26.586914, 55.166319 ], [ 26.499023, 55.615589 ], [ 27.103271, 55.782751 ], [ 28.179932, 56.170023 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.664795, 44.229457 ], [ 22.950439, 43.818675 ], [ 23.334961, 43.897892 ], [ 24.104004, 43.739352 ], [ 25.576172, 43.683764 ], [ 26.070557, 43.945372 ], [ 27.246094, 44.174325 ], [ 27.971191, 43.810747 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.674561, 42.577355 ], [ 28.004150, 42.008489 ], [ 27.136230, 42.138968 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.236511 ], [ 24.499512, 41.582580 ], [ 23.697510, 41.310824 ], [ 22.950439, 41.335576 ], [ 22.884521, 42.000325 ], [ 22.379150, 42.317939 ], [ 22.543945, 42.455888 ], [ 22.434082, 42.577355 ], [ 22.609863, 42.900113 ], [ 22.983398, 43.205176 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.664795, 44.229457 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.465637 ], [ 28.256836, 48.151428 ], [ 28.674316, 48.114767 ], [ 29.124756, 47.850031 ], [ 29.058838, 47.509780 ], [ 29.421387, 47.346267 ], [ 29.564209, 46.927759 ], [ 29.915771, 46.672056 ], [ 29.838867, 46.521076 ], [ 30.025635, 46.422713 ], [ 29.761963, 46.346928 ], [ 29.168701, 46.377254 ], [ 29.069824, 46.513516 ], [ 28.861084, 46.437857 ], [ 28.937988, 46.255847 ], [ 28.663330, 45.935871 ], [ 28.487549, 45.598666 ], [ 28.234863, 45.483244 ], [ 28.059082, 45.943511 ], [ 28.157959, 46.369674 ], [ 28.135986, 46.807580 ], [ 27.553711, 47.405785 ], [ 27.235107, 47.827908 ], [ 26.927490, 48.122101 ], [ 26.619873, 48.217353 ], [ 26.861572, 48.363549 ], [ 27.520752, 48.465637 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.398193, 51.767840 ], [ 34.145508, 51.563412 ], [ 34.222412, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.771208 ], [ 35.354004, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.397461, 50.380502 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.922935 ], [ 40.067139, 49.596470 ], [ 40.078125, 49.303636 ], [ 39.682617, 48.785152 ], [ 39.902344, 48.231991 ], [ 39.737549, 47.894248 ], [ 38.770752, 47.820532 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.100045 ], [ 37.430420, 47.017716 ], [ 36.760254, 46.694667 ], [ 35.826416, 46.641894 ], [ 34.969482, 46.271037 ], [ 35.024414, 45.652448 ], [ 35.507812, 45.406164 ], [ 36.529541, 45.467836 ], [ 36.342773, 45.112300 ], [ 35.244141, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.332520, 44.559163 ], [ 33.552246, 45.034715 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.514046 ], [ 33.596191, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.750488, 46.331758 ], [ 31.673584, 46.702202 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.027482 ], [ 29.608154, 45.290347 ], [ 29.157715, 45.460131 ], [ 28.685303, 45.305803 ], [ 28.234863, 45.483244 ], [ 28.487549, 45.598666 ], [ 28.663330, 45.935871 ], [ 28.937988, 46.255847 ], [ 28.861084, 46.437857 ], [ 29.069824, 46.513516 ], [ 29.168701, 46.377254 ], [ 29.761963, 46.346928 ], [ 30.025635, 46.422713 ], [ 29.838867, 46.521076 ], [ 29.915771, 46.672056 ], [ 29.564209, 46.927759 ], [ 29.421387, 47.346267 ], [ 29.058838, 47.509780 ], [ 29.124756, 47.850031 ], [ 28.674316, 48.114767 ], [ 28.256836, 48.151428 ], [ 27.520752, 48.465637 ], [ 26.861572, 48.363549 ], [ 26.619873, 48.217353 ], [ 26.202393, 48.217353 ], [ 25.949707, 47.982568 ], [ 25.213623, 47.886881 ], [ 24.873047, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.763428, 47.982568 ], [ 23.148193, 48.092757 ], [ 22.708740, 47.879513 ], [ 22.642822, 48.151428 ], [ 22.093506, 48.421910 ], [ 22.280273, 48.821333 ], [ 22.565918, 49.081062 ], [ 22.774658, 49.023461 ], [ 22.521973, 49.475263 ], [ 23.433838, 50.303376 ], [ 23.928223, 50.422519 ], [ 24.038086, 50.701677 ], [ 23.532715, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.890054 ], [ 25.334473, 51.910391 ], [ 26.345215, 51.828988 ], [ 27.454834, 51.590723 ], [ 28.245850, 51.570241 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.597548 ], [ 29.256592, 51.364921 ], [ 30.157471, 51.412912 ], [ 30.552979, 51.316881 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.038977 ], [ 31.783447, 52.099757 ], [ 32.156982, 52.059246 ], [ 32.409668, 52.288323 ], [ 32.717285, 52.234528 ], [ 33.750000, 52.335339 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.221436, 40.979898 ], [ 38.353271, 40.946714 ], [ 38.594971, 40.979898 ], [ 39.517822, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.561279, 41.533254 ], [ 42.626953, 41.582580 ], [ 43.582764, 41.087632 ], [ 43.637695, 40.979898 ], [ 43.758545, 40.738933 ], [ 43.670654, 40.313043 ], [ 27.147217, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.828125, 40.455307 ], [ 29.102783, 40.979898 ], [ 29.245605, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.354736, 41.730330 ], [ 33.519287, 42.016652 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.136230, 42.138968 ], [ 28.004150, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.992920, 41.294317 ], [ 28.806152, 41.054502 ], [ 27.619629, 40.996484 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.608887, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.048584, 40.613952 ], [ 26.059570, 40.822124 ], [ 26.301270, 40.930115 ], [ 26.323242, 40.979898 ], [ 26.608887, 41.557922 ], [ 26.114502, 41.828642 ], [ 27.136230, 42.138968 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.313043 ], [ 45.736084, 40.313043 ], [ 45.362549, 40.555548 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.000000, 41.211722 ], [ 44.978027, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 66.861082 ], [ 45.878906, 42.057450 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.706660 ], [ 43.934326, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.548548 ], [ 39.957275, 43.436966 ], [ 38.682861, 44.276671 ], [ 37.540283, 44.653024 ], [ 36.683350, 45.243953 ], [ 37.408447, 45.406164 ], [ 38.232422, 46.240652 ], [ 37.672119, 46.634351 ], [ 39.155273, 47.040182 ], [ 39.122314, 47.264320 ], [ 38.221436, 47.100045 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.820532 ], [ 39.737549, 47.894248 ], [ 39.902344, 48.231991 ], [ 39.682617, 48.785152 ], [ 40.078125, 49.303636 ], [ 40.067139, 49.596470 ], [ 38.594971, 49.922935 ], [ 38.012695, 49.915862 ], [ 37.397461, 50.380502 ], [ 36.628418, 50.226124 ], [ 35.354004, 50.576260 ], [ 35.375977, 50.771208 ], [ 35.024414, 51.206883 ], [ 34.222412, 51.255040 ], [ 34.145508, 51.563412 ], [ 34.398193, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.234528 ], [ 32.409668, 52.288323 ], [ 32.156982, 52.059246 ], [ 31.783447, 52.099757 ], [ 31.541748, 52.742943 ], [ 31.311035, 53.074228 ], [ 31.497803, 53.166534 ], [ 32.310791, 53.133590 ], [ 32.695312, 53.350551 ], [ 32.409668, 53.618579 ], [ 31.739502, 53.794162 ], [ 31.794434, 53.975474 ], [ 31.387939, 54.156001 ], [ 30.761719, 54.813348 ], [ 30.970459, 55.078367 ], [ 30.871582, 55.547281 ], [ 29.893799, 55.788929 ], [ 29.377441, 55.671389 ], [ 29.234619, 55.918430 ], [ 28.179932, 56.170023 ], [ 27.861328, 56.758746 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.474497 ], [ 27.718506, 57.792089 ], [ 27.421875, 58.722599 ], [ 28.135986, 59.299552 ], [ 27.982178, 59.472989 ], [ 29.124756, 60.026441 ], [ 28.070068, 60.500525 ], [ 30.212402, 61.778319 ], [ 31.146240, 62.354707 ], [ 31.519775, 62.865169 ], [ 30.036621, 63.553446 ], [ 30.443115, 64.201596 ], [ 29.542236, 64.946813 ], [ 30.223389, 65.802776 ], [ 29.135742, 66.861082 ], [ 41.121826, 66.861082 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.023193, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.925781, 66.761585 ], [ 33.189697, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.815674, 65.897167 ], [ 34.881592, 65.435435 ], [ 34.947510, 64.411177 ], [ 36.232910, 64.110602 ], [ 37.012939, 63.850354 ], [ 37.144775, 64.335150 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.141497 ], [ 39.594727, 64.520097 ], [ 40.440674, 64.764759 ], [ 39.770508, 65.494741 ], [ 42.099609, 66.473823 ], [ 43.022461, 66.416748 ], [ 43.956299, 66.067090 ], [ 44.329834, 66.513260 ], [ 44.538574, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.878906, 66.861082 ] ] ], [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.763672, 54.857640 ], [ 22.653809, 54.578430 ], [ 22.730713, 54.322931 ], [ 20.895996, 54.310114 ], [ 19.665527, 54.425322 ], [ 19.896240, 54.863963 ], [ 21.269531, 55.191412 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.168945, 71.184211 ], [ 31.300049, 70.451508 ], [ 30.003662, 70.185103 ], [ 31.102295, 69.557553 ], [ 29.399414, 69.154740 ], [ 28.597412, 69.064638 ], [ 29.014893, 69.763757 ], [ 27.740479, 70.162746 ], [ 26.180420, 69.824471 ], [ 25.697021, 69.092100 ], [ 24.741211, 68.648556 ], [ 23.664551, 68.891231 ], [ 22.357178, 68.839735 ], [ 21.247559, 69.368703 ], [ 20.643311, 69.103859 ], [ 20.028076, 69.064638 ], [ 19.885254, 68.407268 ], [ 17.995605, 68.564399 ], [ 17.731934, 68.007571 ], [ 16.776123, 68.011685 ], [ 15.391846, 66.513260 ], [ 15.073242, 66.160511 ], [ 12.700195, 66.160511 ], [ 13.128662, 66.513260 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.560384 ], [ 19.182129, 69.816891 ], [ 21.379395, 70.255741 ], [ 23.027344, 70.199994 ], [ 24.554443, 71.031249 ], [ 26.378174, 70.984770 ], [ 28.168945, 71.184211 ] ] ], [ [ [ 19.896240, 79.335219 ], [ 20.621338, 79.171335 ], [ 21.544189, 78.954560 ], [ 19.028320, 78.562667 ], [ 18.479004, 77.825640 ], [ 17.600098, 77.636542 ], [ 17.116699, 76.808262 ], [ 15.919189, 76.770602 ], [ 13.765869, 77.379906 ], [ 14.677734, 77.734951 ], [ 13.172607, 78.023294 ], [ 11.228027, 78.867928 ], [ 10.931396, 79.171335 ], [ 10.766602, 79.335219 ], [ 19.896240, 79.335219 ] ] ], [ [ [ 22.884521, 78.455425 ], [ 23.280029, 78.077887 ], [ 24.730225, 77.853412 ], [ 22.489014, 77.444552 ], [ 20.731201, 77.676467 ], [ 21.423340, 77.934055 ], [ 20.819092, 78.253624 ], [ 22.884521, 78.455425 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 37.452393, 66.160511 ], [ 35.375977, 66.513260 ], [ 33.925781, 66.757250 ], [ 33.189697, 66.631198 ], [ 33.453369, 66.513260 ], [ 34.244385, 66.160511 ], [ 29.860840, 66.160511 ], [ 29.498291, 66.513260 ], [ 29.058838, 66.942972 ], [ 29.981689, 67.696941 ], [ 28.443604, 68.362750 ], [ 28.597412, 69.064638 ], [ 29.399414, 69.154740 ], [ 31.102295, 69.557553 ], [ 32.135010, 69.903893 ], [ 33.782959, 69.298911 ], [ 36.518555, 69.060712 ], [ 40.297852, 67.933397 ], [ 41.066895, 67.458082 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.023193, 66.266856 ], [ 39.364014, 66.160511 ], [ 37.452393, 66.160511 ] ] ], [ [ [ 41.330566, 66.160511 ], [ 42.099609, 66.473823 ], [ 43.022461, 66.416748 ], [ 43.703613, 66.160511 ], [ 41.330566, 66.160511 ] ] ], [ [ [ 44.022217, 66.160511 ], [ 44.329834, 66.513260 ], [ 44.538574, 66.757250 ], [ 43.703613, 67.352555 ], [ 44.187012, 67.949900 ], [ 43.450928, 68.568414 ], [ 45.000000, 68.395135 ], [ 45.878906, 68.293779 ], [ 45.878906, 67.600849 ], [ 45.560303, 67.567334 ], [ 45.560303, 67.007428 ], [ 45.878906, 66.874030 ], [ 45.878906, 66.160511 ], [ 44.022217, 66.160511 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.995850, 80.050460 ], [ 18.259277, 79.700943 ], [ 20.621338, 79.171335 ], [ 21.335449, 79.004962 ], [ 11.096191, 79.004962 ], [ 10.931396, 79.171335 ], [ 10.447998, 79.651722 ], [ 13.172607, 80.010518 ], [ 13.721924, 79.659613 ], [ 15.150146, 79.673407 ], [ 15.523682, 80.016233 ], [ 16.995850, 80.050460 ] ] ], [ [ [ 22.917480, 80.655958 ], [ 25.455322, 80.406557 ], [ 27.410889, 80.056153 ], [ 25.927734, 79.516660 ], [ 23.027344, 79.400085 ], [ 20.083008, 79.566517 ], [ 19.896240, 79.841409 ], [ 18.468018, 79.858833 ], [ 17.369385, 80.318272 ], [ 20.456543, 80.596909 ], [ 21.906738, 80.356995 ], [ 22.917480, 80.655958 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 80.686233 ], [ 45.878906, 80.575346 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.589727 ], [ 45.000000, 80.604086 ], [ 45.878906, 80.686233 ] ] ] } } ] } ] } , @@ -623,27 +647,31 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.219482, 41.640078 ], [ 46.636963, 41.186922 ], [ 46.505127, 41.062786 ], [ 45.966797, 41.129021 ], [ 45.219727, 41.409776 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.153842 ], [ 44.121094, 41.640078 ], [ 46.219482, 41.640078 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 39.436193 ], [ 44.121094, 40.103286 ], [ 44.395752, 40.002372 ], [ 44.791260, 39.707187 ], [ 44.121094, 39.436193 ] ] ], [ [ [ 44.121094, 39.385264 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.970185 ], [ 44.769287, 37.169072 ], [ 44.285889, 37.002553 ], [ 44.121094, 37.125286 ], [ 44.121094, 39.385264 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 29.602118 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.571045, 29.094577 ], [ 47.460938, 28.998532 ], [ 47.713623, 28.526622 ], [ 48.416748, 28.545926 ], [ 48.812256, 27.683528 ], [ 49.306641, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.686730 ], [ 50.218506, 26.273714 ], [ 50.119629, 25.938287 ], [ 50.240479, 25.601902 ], [ 50.526123, 25.324167 ], [ 50.657959, 24.996016 ], [ 50.811768, 24.756808 ], [ 51.119385, 24.557116 ], [ 51.394043, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.624756, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.492257 ], [ 55.206299, 22.705255 ], [ 55.667725, 21.993989 ], [ 54.997559, 19.993998 ], [ 51.998291, 18.999803 ], [ 49.119873, 18.615013 ], [ 48.186035, 18.166730 ], [ 47.471924, 17.109293 ], [ 46.999512, 16.951724 ], [ 46.757812, 17.277219 ], [ 46.373291, 17.235252 ], [ 45.406494, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.121094, 17.413546 ], [ 44.121094, 29.602118 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 9.026153 ], [ 45.000000, 8.700499 ], [ 46.955566, 7.993957 ], [ 47.790527, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 44.121094, 4.970560 ], [ 44.121094, 9.026153 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.955078, 11.404649 ], [ 48.944092, 10.984335 ], [ 48.944092, 9.449062 ], [ 48.493652, 8.830795 ], [ 47.790527, 8.004837 ], [ 46.955566, 7.993957 ], [ 45.000000, 8.700499 ], [ 44.121094, 9.026153 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.560303, 10.692996 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.124507 ], [ 48.021240, 11.189180 ], [ 48.383789, 11.372339 ], [ 48.955078, 11.404649 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.757324, 41.640078 ], [ 49.108887, 41.286062 ], [ 49.328613, 40.979898 ], [ 49.625244, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.394287, 40.254377 ], [ 49.570312, 40.170479 ], [ 49.394531, 39.393755 ], [ 49.229736, 39.044786 ], [ 48.856201, 38.814031 ], [ 48.889160, 38.315801 ], [ 48.636475, 38.264063 ], [ 48.010254, 38.788345 ], [ 48.361816, 39.283294 ], [ 48.065186, 39.580290 ], [ 47.691650, 39.504041 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.461644 ], [ 46.032715, 39.622615 ], [ 45.615234, 39.901309 ], [ 45.889893, 40.212441 ], [ 45.362549, 40.555548 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.186768, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.129021 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.186922 ], [ 46.219482, 41.640078 ], [ 46.900635, 41.640078 ], [ 47.373047, 41.219986 ], [ 47.823486, 41.153842 ], [ 47.988281, 41.409776 ], [ 48.339844, 41.640078 ], [ 48.757324, 41.640078 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.747070, 39.470125 ], [ 45.736084, 39.317300 ], [ 46.142578, 38.736946 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.945068, 39.334297 ], [ 44.791260, 39.707187 ], [ 45.000000, 39.740986 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.554443, 41.640078 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.663973 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.719971, 41.170384 ], [ 66.599121, 41.640078 ], [ 69.554443, 41.640078 ] ] ], [ [ [ 55.964355, 41.640078 ], [ 55.975342, 41.310824 ], [ 55.458984, 41.261291 ], [ 55.118408, 41.640078 ], [ 55.964355, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.307129, 30.059586 ], [ 47.977295, 29.973970 ], [ 48.186035, 29.535230 ], [ 48.098145, 29.305561 ], [ 48.416748, 28.545926 ], [ 47.713623, 28.526622 ], [ 47.460938, 28.998532 ], [ 46.571045, 29.094577 ], [ 47.307129, 30.059586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.769287, 37.169072 ], [ 45.000000, 36.756490 ], [ 45.428467, 35.978006 ], [ 46.076660, 35.675147 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.741612 ], [ 45.417480, 33.961586 ], [ 46.109619, 33.017876 ], [ 47.340088, 32.463426 ], [ 47.856445, 31.709476 ], [ 47.691650, 30.987028 ], [ 48.010254, 30.987028 ], [ 48.021240, 30.448674 ], [ 48.570557, 29.926374 ], [ 47.977295, 29.973970 ], [ 47.307129, 30.059586 ], [ 46.571045, 29.094577 ], [ 45.000000, 29.171349 ], [ 44.703369, 29.180941 ], [ 44.121094, 29.602118 ], [ 44.121094, 37.125286 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.169072 ] ] ] } } , { "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.613770, 25.214881 ], [ 51.394043, 24.627045 ], [ 51.119385, 24.557116 ], [ 50.811768, 24.756808 ], [ 50.745850, 25.482951 ], [ 51.020508, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.403809, 24.926295 ], [ 56.843262, 24.236947 ], [ 57.403564, 23.875792 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.458008, 22.654572 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.115249 ], [ 58.491211, 20.427013 ], [ 58.040771, 20.478482 ], [ 57.832031, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.937464 ], [ 57.238770, 18.947856 ], [ 56.612549, 18.573362 ], [ 56.513672, 18.083201 ], [ 56.282959, 17.874203 ], [ 55.667725, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.272217, 17.224758 ], [ 54.788818, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.646718 ], [ 51.998291, 18.999803 ], [ 54.997559, 19.993998 ], [ 55.667725, 21.993989 ], [ 55.206299, 22.705255 ], [ 55.239258, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.535889, 23.936055 ], [ 55.986328, 24.126702 ], [ 55.810547, 24.266997 ], [ 55.887451, 24.916331 ], [ 56.403809, 24.926295 ] ] ], [ [ [ 56.359863, 26.391870 ], [ 56.491699, 26.303264 ], [ 56.392822, 25.888879 ], [ 56.260986, 25.710837 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.051270, 41.640078 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.380371, 40.052848 ], [ 63.522949, 39.359785 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.970185 ], [ 66.522217, 37.361426 ], [ 66.225586, 37.387617 ], [ 65.753174, 37.657732 ], [ 65.588379, 37.300275 ], [ 64.753418, 37.107765 ], [ 64.544678, 36.306272 ], [ 63.984375, 36.004673 ], [ 63.193359, 35.853440 ], [ 62.984619, 35.398006 ], [ 62.237549, 35.272532 ], [ 61.215820, 35.648369 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.413800 ], [ 58.436279, 37.518440 ], [ 57.337646, 38.030786 ], [ 56.623535, 38.117272 ], [ 56.184082, 37.935533 ], [ 55.513916, 37.961523 ], [ 54.799805, 37.387617 ], [ 53.920898, 37.195331 ], [ 53.734131, 37.900865 ], [ 53.887939, 38.950865 ], [ 53.107910, 39.291797 ], [ 53.360596, 39.977120 ], [ 52.701416, 40.027614 ], [ 52.921143, 40.871988 ], [ 53.865967, 40.630630 ], [ 54.744873, 40.946714 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.964844, 41.640078 ], [ 55.118408, 41.640078 ], [ 55.458984, 41.261291 ], [ 55.975342, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.997070, 41.640078 ], [ 60.051270, 41.640078 ] ] ], [ [ [ 52.888184, 41.640078 ], [ 52.822266, 41.137296 ], [ 52.569580, 41.640078 ], [ 52.888184, 41.640078 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.119385, 12.017830 ], [ 51.141357, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.053467, 10.639014 ], [ 50.833740, 10.271681 ], [ 50.559082, 9.199715 ], [ 50.075684, 8.080985 ], [ 49.460449, 6.806444 ], [ 48.592529, 5.331644 ], [ 47.746582, 4.214943 ], [ 46.571045, 2.855263 ], [ 45.571289, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.121094, 1.087581 ], [ 44.121094, 4.970560 ], [ 44.956055, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.790527, 8.004837 ], [ 48.493652, 8.830795 ], [ 48.944092, 9.449062 ], [ 48.955078, 11.404649 ], [ 49.273682, 11.426187 ], [ 49.735107, 11.576907 ], [ 50.262451, 11.673755 ], [ 50.734863, 12.017830 ], [ 51.119385, 12.017830 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.955011 ], [ 70.466309, 40.497092 ], [ 70.609131, 40.212441 ], [ 71.015625, 40.245992 ], [ 70.653076, 39.935013 ], [ 69.565430, 40.103286 ], [ 69.466553, 39.520992 ], [ 70.554199, 39.605688 ], [ 71.784668, 39.274790 ], [ 73.674316, 39.427707 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.871826, 38.376115 ], [ 74.827881, 37.987504 ], [ 74.981689, 37.413800 ], [ 73.948975, 37.422526 ], [ 73.267822, 37.492294 ], [ 72.641602, 37.046409 ], [ 72.191162, 36.949892 ], [ 71.850586, 36.738884 ], [ 71.455078, 37.063944 ], [ 71.542969, 37.900865 ], [ 71.246338, 37.952861 ], [ 71.356201, 38.255436 ], [ 70.806885, 38.487995 ], [ 70.378418, 38.134557 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.588119 ], [ 69.521484, 37.605528 ], [ 69.202881, 37.151561 ], [ 68.862305, 37.343959 ], [ 68.137207, 37.020098 ], [ 67.829590, 37.142803 ], [ 68.389893, 38.151837 ], [ 68.181152, 38.899583 ], [ 67.445068, 39.138582 ], [ 67.708740, 39.580290 ], [ 68.543701, 39.529467 ], [ 69.016113, 40.086477 ], [ 69.334717, 40.722283 ], [ 70.664062, 40.955011 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.529541, 30.420256 ], [ 82.331543, 30.116622 ], [ 83.342285, 29.458731 ], [ 83.902588, 29.315141 ], [ 84.232178, 28.835050 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.197927 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.877928 ], [ 88.044434, 27.440040 ], [ 88.176270, 26.804461 ], [ 88.066406, 26.411551 ], [ 87.231445, 26.391870 ], [ 86.022949, 26.627818 ], [ 85.253906, 26.725987 ], [ 84.682617, 27.235095 ], [ 83.309326, 27.362011 ], [ 82.001953, 27.926474 ], [ 81.057129, 28.410728 ], [ 80.090332, 28.796546 ], [ 80.474854, 29.726222 ], [ 81.112061, 30.183122 ], [ 81.529541, 30.420256 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.487995 ], [ 71.356201, 38.255436 ], [ 71.246338, 37.952861 ], [ 71.542969, 37.900865 ], [ 71.455078, 37.063944 ], [ 71.850586, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.641602, 37.046409 ], [ 73.267822, 37.492294 ], [ 73.948975, 37.422526 ], [ 74.981689, 37.413800 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.927246, 36.721274 ], [ 71.850586, 36.509636 ], [ 71.268311, 36.075742 ], [ 71.499023, 35.648369 ], [ 71.619873, 35.146863 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.343436 ], [ 70.883789, 33.988918 ], [ 69.927979, 34.016242 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.100745 ], [ 69.268799, 32.500496 ], [ 69.323730, 31.896214 ], [ 68.928223, 31.615966 ], [ 68.554688, 31.709476 ], [ 67.796631, 31.578535 ], [ 67.686768, 31.297328 ], [ 66.939697, 31.306715 ], [ 66.379395, 30.732393 ], [ 66.346436, 29.888281 ], [ 65.050049, 29.468297 ], [ 64.357910, 29.554345 ], [ 64.149170, 29.334298 ], [ 63.555908, 29.468297 ], [ 62.556152, 29.315141 ], [ 60.875244, 29.831114 ], [ 61.787109, 30.732393 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.541090 ], [ 60.864258, 32.184911 ], [ 60.534668, 32.981020 ], [ 60.963135, 33.523079 ], [ 60.534668, 33.678640 ], [ 60.809326, 34.397845 ], [ 61.215820, 35.648369 ], [ 62.237549, 35.272532 ], [ 62.984619, 35.398006 ], [ 63.193359, 35.853440 ], [ 63.984375, 36.004673 ], [ 64.544678, 36.306272 ], [ 64.753418, 37.107765 ], [ 65.588379, 37.300275 ], [ 65.753174, 37.657732 ], [ 66.225586, 37.387617 ], [ 66.522217, 37.361426 ], [ 67.082520, 37.352693 ], [ 67.829590, 37.142803 ], [ 68.137207, 37.020098 ], [ 68.862305, 37.343959 ], [ 69.202881, 37.151561 ], [ 69.521484, 37.605528 ], [ 70.114746, 37.588119 ], [ 70.268555, 37.735969 ], [ 70.378418, 38.134557 ], [ 70.806885, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.817329 ], [ 80.837402, 9.264779 ], [ 81.309814, 8.559294 ], [ 81.793213, 7.514981 ], [ 81.639404, 6.479067 ], [ 81.221924, 6.195168 ], [ 80.354004, 5.965754 ], [ 79.870605, 6.762806 ], [ 79.694824, 8.200616 ], [ 80.145264, 9.817329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.904541, 36.668419 ], [ 76.190186, 35.897950 ], [ 77.838135, 35.487511 ], [ 76.871338, 34.651285 ], [ 75.761719, 34.506557 ], [ 74.245605, 34.750640 ], [ 73.751221, 34.316218 ], [ 74.102783, 33.440609 ], [ 74.454346, 32.759562 ], [ 75.256348, 32.268555 ], [ 74.410400, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.454590, 29.973970 ], [ 72.828369, 28.960089 ], [ 71.784668, 27.907058 ], [ 70.620117, 27.984700 ], [ 69.521484, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.290527, 25.720735 ], [ 70.850830, 25.214881 ], [ 71.048584, 24.357105 ], [ 68.840332, 24.357105 ], [ 68.181152, 23.684774 ], [ 67.445068, 23.946096 ], [ 67.148438, 24.657002 ], [ 66.379395, 25.423431 ], [ 64.533691, 25.234758 ], [ 62.907715, 25.214881 ], [ 61.501465, 25.075648 ], [ 61.875000, 26.234302 ], [ 63.314209, 26.755421 ], [ 63.237305, 27.215556 ], [ 62.753906, 27.371767 ], [ 62.731934, 28.256006 ], [ 61.776123, 28.700225 ], [ 61.369629, 29.305561 ], [ 60.875244, 29.831114 ], [ 62.556152, 29.315141 ], [ 63.555908, 29.468297 ], [ 64.149170, 29.334298 ], [ 64.357910, 29.554345 ], [ 65.050049, 29.468297 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.732393 ], [ 66.939697, 31.306715 ], [ 67.686768, 31.297328 ], [ 67.796631, 31.578535 ], [ 68.554688, 31.709476 ], [ 68.928223, 31.615966 ], [ 69.323730, 31.896214 ], [ 69.268799, 32.500496 ], [ 69.686279, 33.100745 ], [ 70.323486, 33.358062 ], [ 69.927979, 34.016242 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.343436 ], [ 71.114502, 34.732584 ], [ 71.619873, 35.146863 ], [ 71.499023, 35.648369 ], [ 71.268311, 36.075742 ], [ 71.850586, 36.509636 ], [ 72.927246, 36.721274 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.441066 ], [ 89.362793, 26.007424 ], [ 89.835205, 25.958045 ], [ 89.923096, 25.264568 ], [ 90.000000, 25.254633 ], [ 90.878906, 25.125393 ], [ 90.878906, 22.786311 ], [ 90.494385, 22.806567 ], [ 90.593262, 22.390714 ], [ 90.274658, 21.830907 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.034730 ], [ 89.703369, 21.851302 ], [ 89.417725, 21.963425 ], [ 89.033203, 22.055096 ], [ 88.879395, 22.877440 ], [ 88.527832, 23.624395 ], [ 88.703613, 24.226929 ], [ 88.088379, 24.497146 ], [ 88.308105, 24.866503 ], [ 88.934326, 25.234758 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.441066 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.339844, 41.640078 ], [ 47.988281, 41.409776 ], [ 47.823486, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.900635, 41.640078 ], [ 48.339844, 41.640078 ] ] ] } } ] } ] } , @@ -651,9 +679,15 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.538574, 42.706660 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.504503 ], [ 45.780029, 42.090070 ], [ 46.406250, 41.861379 ], [ 46.153564, 41.722131 ], [ 46.636963, 41.178654 ], [ 46.505127, 41.062786 ], [ 45.966797, 41.120746 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.244772 ], [ 44.121094, 41.153842 ], [ 44.121094, 42.601620 ], [ 44.538574, 42.706660 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.691895, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.823486, 41.145570 ], [ 47.988281, 41.401536 ], [ 48.592529, 41.804078 ], [ 49.108887, 41.277806 ], [ 49.328613, 40.979898 ], [ 49.625244, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.328369, 40.313043 ], [ 45.736084, 40.313043 ], [ 45.362549, 40.555548 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.120746 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.153564, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.071045, 55.385352 ], [ 70.872803, 55.166319 ], [ 71.180420, 54.130260 ], [ 72.224121, 54.374158 ], [ 73.509521, 54.033586 ], [ 73.432617, 53.488046 ], [ 74.388428, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.530762, 54.175297 ], [ 77.805176, 53.402982 ], [ 80.035400, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.947021, 50.812877 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.122070, 50.113533 ], [ 85.539551, 49.688955 ], [ 86.835938, 49.823809 ], [ 87.363281, 49.210420 ], [ 86.605225, 48.545705 ], [ 85.770264, 48.451066 ], [ 85.726318, 47.450380 ], [ 85.166016, 47.002734 ], [ 83.188477, 47.331377 ], [ 82.463379, 45.537137 ], [ 81.947021, 45.313529 ], [ 79.969482, 44.918139 ], [ 80.870361, 43.181147 ], [ 80.178223, 42.916206 ], [ 80.266113, 42.350425 ], [ 79.650879, 42.496403 ], [ 79.145508, 42.851806 ], [ 77.662354, 42.956423 ], [ 76.003418, 42.988576 ], [ 75.640869, 42.875964 ], [ 74.212646, 43.293200 ], [ 73.652344, 43.092961 ], [ 73.487549, 42.496403 ], [ 71.850586, 42.843751 ], [ 71.191406, 42.698586 ], [ 70.960693, 42.261049 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.663973 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.719971, 41.170384 ], [ 66.511230, 41.983994 ], [ 66.027832, 41.992160 ], [ 66.104736, 42.996612 ], [ 64.907227, 43.723475 ], [ 63.193359, 43.651975 ], [ 62.017822, 43.500752 ], [ 61.062012, 44.402392 ], [ 58.502197, 45.583290 ], [ 55.931396, 44.995883 ], [ 55.975342, 41.302571 ], [ 55.458984, 41.261291 ], [ 54.755859, 42.041134 ], [ 54.085693, 42.326062 ], [ 52.943115, 42.114524 ], [ 52.503662, 41.779505 ], [ 52.448730, 42.024814 ], [ 52.690430, 42.439674 ], [ 52.503662, 42.787339 ], [ 51.350098, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.606113 ], [ 51.284180, 44.512176 ], [ 51.317139, 45.243953 ], [ 52.174072, 45.406164 ], [ 53.041992, 45.259422 ], [ 53.228760, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.800059 ], [ 51.196289, 47.047669 ], [ 50.031738, 46.604167 ], [ 49.108887, 46.399988 ], [ 48.592529, 46.558860 ], [ 48.702393, 47.070122 ], [ 48.065186, 47.739323 ], [ 47.318115, 47.717154 ], [ 46.472168, 48.392738 ], [ 47.043457, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.450509 ], [ 48.581543, 49.873398 ], [ 48.702393, 50.604159 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.536133, 51.027576 ], [ 55.722656, 50.618103 ], [ 56.777344, 51.041394 ], [ 58.370361, 51.062113 ], [ 59.644775, 50.541363 ], [ 59.930420, 50.840636 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.268789 ], [ 59.974365, 51.957807 ], [ 60.930176, 52.442618 ], [ 60.743408, 52.716331 ], [ 61.699219, 52.975108 ], [ 60.985107, 53.664171 ], [ 61.435547, 54.007769 ], [ 65.181885, 54.354956 ], [ 65.665283, 54.597528 ], [ 68.170166, 54.971308 ], [ 69.071045, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.955011 ], [ 70.466309, 40.497092 ], [ 70.554199, 40.313043 ], [ 69.125977, 40.313043 ], [ 69.334717, 40.722283 ], [ 70.664062, 40.955011 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.634033, 42.747012 ], [ 59.974365, 42.220382 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.261291 ], [ 61.885986, 41.079351 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.767334, 40.313043 ], [ 52.921143, 40.871988 ], [ 53.865967, 40.630630 ], [ 54.744873, 40.946714 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.921143, 41.869561 ], [ 52.822266, 41.137296 ], [ 52.503662, 41.779505 ], [ 52.943115, 42.114524 ], [ 54.085693, 42.326062 ], [ 54.755859, 42.041134 ], [ 55.458984, 41.261291 ], [ 55.975342, 41.302571 ], [ 57.095947, 41.319076 ], [ 56.931152, 41.820455 ], [ 57.788086, 42.171546 ], [ 58.634033, 42.747012 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 46.604167 ], [ 90.878906, 45.367584 ], [ 90.593262, 45.721522 ], [ 90.878906, 46.604167 ] ] ], [ [ [ 90.878906, 46.995241 ], [ 90.285645, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.857422, 48.070738 ], [ 88.011475, 48.596592 ], [ 87.758789, 49.296472 ], [ 88.813477, 49.468124 ], [ 90.000000, 50.007739 ], [ 90.714111, 50.331436 ], [ 90.878906, 50.380502 ], [ 90.878906, 46.995241 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.380502 ], [ 90.714111, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.813477, 49.468124 ], [ 87.758789, 49.296472 ], [ 87.363281, 49.210420 ], [ 86.835938, 49.823809 ], [ 85.539551, 49.688955 ], [ 85.122070, 50.113533 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.573730, 51.385495 ], [ 80.035400, 50.861444 ], [ 77.805176, 53.402982 ], [ 76.530762, 54.175297 ], [ 76.893311, 54.489187 ], [ 74.388428, 53.546836 ], [ 73.432617, 53.488046 ], [ 73.509521, 54.033586 ], [ 72.224121, 54.374158 ], [ 71.180420, 54.130260 ], [ 70.872803, 55.166319 ], [ 69.071045, 55.385352 ], [ 68.170166, 54.971308 ], [ 65.665283, 54.597528 ], [ 65.181885, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.985107, 53.664171 ], [ 61.699219, 52.975108 ], [ 60.743408, 52.716331 ], [ 60.930176, 52.442618 ], [ 59.974365, 51.957807 ], [ 61.589355, 51.268789 ], [ 61.336670, 50.798991 ], [ 59.930420, 50.840636 ], [ 59.644775, 50.541363 ], [ 58.370361, 51.062113 ], [ 56.777344, 51.041394 ], [ 55.722656, 50.618103 ], [ 54.536133, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.581543, 49.873398 ], [ 47.548828, 50.450509 ], [ 46.757812, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.472168, 48.392738 ], [ 47.318115, 47.717154 ], [ 48.065186, 47.739323 ], [ 48.702393, 47.070122 ], [ 48.592529, 46.558860 ], [ 49.108887, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.680664, 45.637087 ], [ 46.680908, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.592529, 41.804078 ], [ 47.988281, 41.401536 ], [ 47.823486, 41.145570 ], [ 47.373047, 41.219986 ], [ 46.691895, 41.828642 ], [ 46.406250, 41.861379 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.706660 ], [ 44.121094, 42.601620 ], [ 44.121094, 66.271278 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.351318, 66.670387 ], [ 47.724609, 66.861082 ], [ 72.015381, 66.861082 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.169390 ], [ 72.795410, 66.513260 ], [ 72.828369, 66.535143 ], [ 73.927002, 66.791909 ], [ 73.959961, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } ] } ] } , @@ -691,7 +725,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.841064, 0.878872 ], [ 110.511475, 0.780005 ], [ 110.390625, 0.878872 ], [ 110.841064, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.276727 ], [ 127.342529, -8.396300 ], [ 126.968994, -8.667918 ], [ 125.925293, -9.112945 ], [ 125.090332, -9.394871 ], [ 125.068359, -9.091249 ], [ 124.969482, -8.895926 ], [ 125.090332, -8.657057 ], [ 125.947266, -8.439772 ], [ 126.650391, -8.396300 ], [ 126.958008, -8.276727 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.969482, -8.895926 ], [ 125.068359, -9.091249 ], [ 125.090332, -9.394871 ], [ 124.442139, -10.141932 ], [ 123.585205, -10.358151 ], [ 123.464355, -10.239249 ], [ 123.552246, -9.903921 ], [ 123.980713, -9.297307 ], [ 124.969482, -8.895926 ] ] ], [ [ [ 119.904785, -9.362353 ], [ 120.432129, -9.665738 ], [ 120.783691, -9.968851 ], [ 120.717773, -10.239249 ], [ 120.300293, -10.260871 ], [ 118.970947, -9.557417 ], [ 119.904785, -9.362353 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.267822, -8.363693 ], [ 118.883057, -8.287599 ], [ 119.124756, -8.711359 ], [ 117.279053, -9.047853 ], [ 116.740723, -9.037003 ], [ 117.081299, -8.461506 ], [ 117.630615, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 122.904053, -8.091862 ], [ 122.761230, -8.657057 ], [ 121.256104, -8.939340 ], [ 119.926758, -8.809082 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.244110 ], [ 121.343994, -8.537565 ], [ 122.014160, -8.461506 ], [ 122.904053, -8.091862 ] ] ], [ [ [ 106.051025, -5.900189 ], [ 107.270508, -5.954827 ], [ 108.072510, -6.348056 ], [ 108.489990, -6.424484 ], [ 108.621826, -6.784626 ], [ 110.544434, -6.882800 ], [ 110.764160, -6.468151 ], [ 112.620850, -6.948239 ], [ 112.983398, -7.602108 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.374562 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.352823 ], [ 112.565918, -8.374562 ], [ 111.522217, -8.309341 ], [ 110.588379, -8.124491 ], [ 109.434814, -7.743651 ], [ 108.698730, -7.645665 ], [ 108.281250, -7.765423 ], [ 106.457520, -7.362467 ], [ 106.281738, -6.926427 ], [ 105.369873, -6.850078 ], [ 106.051025, -5.900189 ] ] ], [ [ [ 118.773193, 0.878872 ], [ 117.817383, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.564941, -1.493971 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.017699 ], [ 116.004639, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.502455 ], [ 113.763428, -3.436658 ], [ 113.258057, -3.118576 ], [ 112.071533, -3.480523 ], [ 111.708984, -2.997899 ], [ 111.049805, -3.052754 ], [ 110.225830, -2.932069 ], [ 110.072021, -1.592812 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.390625, 0.878872 ], [ 110.511475, 0.780005 ], [ 110.841064, 0.878872 ], [ 118.773193, 0.878872 ] ] ], [ [ [ 102.854004, 0.878872 ], [ 103.084717, 0.560294 ], [ 103.842773, 0.109863 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 104.018555, -1.065612 ], [ 104.370117, -1.087581 ], [ 104.545898, -1.790480 ], [ 104.886475, -2.339438 ], [ 105.622559, -2.427252 ], [ 106.105957, -3.063725 ], [ 105.864258, -4.313546 ], [ 105.820312, -5.856475 ], [ 104.710693, -5.878332 ], [ 103.875732, -5.036227 ], [ 102.590332, -4.225900 ], [ 102.161865, -3.612107 ], [ 101.403809, -2.800398 ], [ 100.909424, -2.054003 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.030762, 0.878872 ], [ 102.854004, 0.878872 ] ] ], [ [ [ 134.505615, -5.451959 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.296875, -5.790897 ], [ 134.505615, -5.451959 ] ] ], [ [ [ 124.804688, 0.878872 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.190430, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.047607, -0.527336 ], [ 120.937500, -1.417092 ], [ 121.475830, -0.955766 ], [ 123.343506, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.933797 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.911267 ], [ 122.453613, -3.184394 ], [ 122.277832, -3.535352 ], [ 123.178711, -4.685930 ], [ 123.167725, -5.342583 ], [ 122.629395, -5.637853 ], [ 122.233887, -5.287887 ], [ 122.717285, -4.466904 ], [ 121.739502, -4.850154 ], [ 121.486816, -4.576425 ], [ 121.618652, -4.193030 ], [ 120.904541, -3.601142 ], [ 120.970459, -2.635789 ], [ 120.311279, -2.932069 ], [ 120.388184, -4.105369 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.681584 ], [ 119.366455, -5.386336 ], [ 119.652100, -4.466904 ], [ 119.498291, -3.502455 ], [ 119.080811, -3.491489 ], [ 118.773193, -2.800398 ], [ 119.179688, -2.152814 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.571280 ], [ 120.399170, 0.878872 ], [ 124.804688, 0.878872 ] ] ], [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.143066, -1.153487 ], [ 134.428711, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.461426, -3.370856 ], [ 135.878906, -2.833317 ], [ 135.878906, -4.532618 ], [ 135.164795, -4.466904 ], [ 135.000000, -4.357366 ], [ 133.670654, -3.546318 ], [ 133.374023, -4.028659 ], [ 132.989502, -4.116327 ], [ 132.758789, -3.743671 ], [ 132.758789, -3.316018 ], [ 131.989746, -2.822344 ], [ 133.066406, -2.460181 ], [ 133.780518, -2.482133 ], [ 133.703613, -2.218684 ], [ 132.231445, -2.218684 ], [ 131.835938, -1.614776 ], [ 130.946045, -1.439058 ], [ 130.517578, -0.944781 ], [ 131.868896, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 129.375000, -2.800398 ], [ 130.473633, -3.096636 ], [ 130.836182, -3.864255 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.370856 ], [ 128.594971, -3.436658 ], [ 127.902832, -3.392791 ], [ 128.133545, -2.844290 ], [ 129.375000, -2.800398 ] ] ], [ [ [ 128.671875, 0.878872 ], [ 128.638916, 0.263671 ], [ 128.122559, 0.362546 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.386230, -0.780005 ], [ 128.100586, -0.900842 ], [ 127.694092, -0.274657 ], [ 127.628174, 0.000000 ], [ 127.430420, 0.878872 ], [ 128.671875, 0.878872 ] ] ], [ [ [ 127.001953, -3.129546 ], [ 127.254639, -3.458591 ], [ 126.881104, -3.798484 ], [ 126.188965, -3.612107 ], [ 125.991211, -3.184394 ], [ 127.001953, -3.129546 ] ] ] ] } } ] } ] } , @@ -699,23 +733,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.119385, 29.449165 ], [ 96.591797, 28.825425 ], [ 96.251221, 28.410728 ], [ 97.327881, 28.256006 ], [ 97.404785, 27.877928 ], [ 97.053223, 27.693256 ], [ 97.141113, 27.078692 ], [ 96.427002, 27.264396 ], [ 95.130615, 26.568877 ], [ 95.152588, 25.997550 ], [ 94.603271, 25.155229 ], [ 94.559326, 24.676970 ], [ 94.108887, 23.845650 ], [ 93.328857, 24.076559 ], [ 93.284912, 23.039298 ], [ 93.065186, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.680664, 22.034730 ], [ 92.153320, 23.624395 ], [ 91.867676, 23.624395 ], [ 91.713867, 22.978624 ], [ 91.164551, 23.503552 ], [ 91.472168, 24.066528 ], [ 91.922607, 24.126702 ], [ 92.384033, 24.976099 ], [ 91.801758, 25.145285 ], [ 90.878906, 25.125393 ], [ 90.000000, 25.254633 ], [ 89.923096, 25.264568 ], [ 89.835205, 25.958045 ], [ 89.351807, 26.007424 ], [ 89.121094, 26.145576 ], [ 89.121094, 26.980829 ], [ 89.736328, 26.716174 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.873081 ], [ 91.219482, 26.804461 ], [ 92.032471, 26.833875 ], [ 92.109375, 27.449790 ], [ 91.702881, 27.771051 ], [ 92.504883, 27.897349 ], [ 93.416748, 28.642389 ], [ 94.570312, 29.276816 ], [ 95.405273, 29.027355 ], [ 96.119385, 29.449165 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.051270, 41.640078 ], [ 104.963379, 41.599013 ], [ 104.908447, 41.640078 ], [ 105.051270, 41.640078 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.121094, 26.145576 ], [ 89.351807, 26.007424 ], [ 89.835205, 25.958045 ], [ 89.923096, 25.264568 ], [ 90.000000, 25.254633 ], [ 90.878906, 25.125393 ], [ 91.801758, 25.145285 ], [ 92.384033, 24.976099 ], [ 91.922607, 24.126702 ], [ 91.472168, 24.066528 ], [ 91.164551, 23.503552 ], [ 91.713867, 22.978624 ], [ 91.867676, 23.624395 ], [ 92.153320, 23.624395 ], [ 92.680664, 22.034730 ], [ 92.658691, 21.320081 ], [ 92.307129, 21.473518 ], [ 92.373047, 20.663626 ], [ 92.087402, 21.186973 ], [ 92.032471, 21.698265 ], [ 91.834717, 22.177232 ], [ 91.417236, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.593262, 22.390714 ], [ 90.274658, 21.830907 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.034730 ], [ 89.703369, 21.851302 ], [ 89.417725, 21.963425 ], [ 89.121094, 22.034730 ], [ 89.121094, 26.145576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.333395 ], [ 98.250732, 27.741885 ], [ 98.690186, 27.508271 ], [ 98.712158, 26.745610 ], [ 98.679199, 25.918526 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.895883 ], [ 98.668213, 24.056496 ], [ 98.898926, 23.140360 ], [ 99.536133, 22.948277 ], [ 99.239502, 22.116177 ], [ 99.986572, 21.739091 ], [ 100.415039, 21.555284 ], [ 101.151123, 21.851302 ], [ 101.184082, 21.432617 ], [ 100.327148, 20.786931 ], [ 100.118408, 20.416717 ], [ 99.547119, 20.179724 ], [ 98.964844, 19.746024 ], [ 98.261719, 19.704658 ], [ 97.800293, 18.625425 ], [ 97.382812, 18.437925 ], [ 97.866211, 17.560247 ], [ 98.492432, 16.836090 ], [ 98.909912, 16.172473 ], [ 98.536377, 15.305380 ], [ 98.195801, 15.125159 ], [ 98.437500, 14.615478 ], [ 99.096680, 13.827412 ], [ 99.217529, 13.261333 ], [ 99.195557, 12.801088 ], [ 99.591064, 11.888853 ], [ 99.041748, 10.962764 ], [ 98.558350, 9.925566 ], [ 98.459473, 10.671404 ], [ 98.767090, 11.436955 ], [ 98.426514, 12.028576 ], [ 98.514404, 13.122280 ], [ 98.107910, 13.635310 ], [ 97.778320, 14.838612 ], [ 97.602539, 16.098598 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.372314, 15.707663 ], [ 94.812012, 15.802825 ], [ 94.196777, 16.035255 ], [ 94.537354, 17.277219 ], [ 94.328613, 18.208480 ], [ 93.548584, 19.362976 ], [ 93.669434, 19.725342 ], [ 93.076172, 19.849394 ], [ 92.373047, 20.663626 ], [ 92.307129, 21.473518 ], [ 92.658691, 21.320081 ], [ 92.680664, 22.034730 ], [ 93.164062, 22.278931 ], [ 93.065186, 22.705255 ], [ 93.284912, 23.039298 ], [ 93.328857, 24.076559 ], [ 94.108887, 23.845650 ], [ 94.559326, 24.676970 ], [ 94.603271, 25.155229 ], [ 95.152588, 25.997550 ], [ 95.130615, 26.568877 ], [ 96.427002, 27.264396 ], [ 97.141113, 27.078692 ], [ 97.053223, 27.693256 ], [ 97.404785, 27.877928 ], [ 97.327881, 28.256006 ], [ 97.910156, 28.333395 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.461802 ], [ 102.755127, 21.667639 ], [ 103.205566, 20.766387 ], [ 104.436035, 20.756114 ], [ 104.820557, 19.880392 ], [ 104.183350, 19.621892 ], [ 103.897705, 19.259294 ], [ 105.095215, 18.667063 ], [ 106.556396, 16.604610 ], [ 107.314453, 15.908508 ], [ 107.567139, 15.199386 ], [ 107.380371, 14.200488 ], [ 106.501465, 14.572951 ], [ 106.051025, 13.880746 ], [ 105.216064, 14.275030 ], [ 105.545654, 14.721761 ], [ 105.589600, 15.570128 ], [ 104.776611, 16.436085 ], [ 104.721680, 17.424029 ], [ 103.963623, 18.239786 ], [ 103.205566, 18.302381 ], [ 102.996826, 17.957832 ], [ 102.414551, 17.926476 ], [ 102.117920, 18.104087 ], [ 101.063232, 17.507867 ], [ 101.041260, 18.406655 ], [ 101.282959, 19.456234 ], [ 100.612793, 19.508020 ], [ 100.546875, 20.107523 ], [ 100.118408, 20.416717 ], [ 100.327148, 20.786931 ], [ 101.184082, 21.432617 ], [ 101.271973, 21.197216 ], [ 101.810303, 21.176729 ], [ 101.656494, 22.319589 ], [ 102.172852, 22.461802 ] ] ] } } , { "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.501465, 14.572951 ], [ 107.380371, 14.200488 ], [ 107.622070, 13.528519 ], [ 107.490234, 12.329269 ], [ 105.809326, 11.566144 ], [ 106.248779, 10.962764 ], [ 105.205078, 10.887254 ], [ 104.337158, 10.487812 ], [ 103.502197, 10.628216 ], [ 103.095703, 11.146066 ], [ 102.590332, 12.178965 ], [ 102.348633, 13.389620 ], [ 102.985840, 14.221789 ], [ 104.282227, 14.413400 ], [ 105.216064, 14.275030 ], [ 106.051025, 13.880746 ], [ 106.501465, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.136230, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.696533, 5.987607 ], [ 118.355713, 5.703448 ], [ 119.179688, 5.408211 ], [ 119.113770, 5.014339 ], [ 118.443604, 4.959615 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.302591 ], [ 115.872803, 4.302591 ], [ 115.521240, 3.162456 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.219390 ], [ 112.862549, 1.493971 ], [ 112.379150, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.977736 ], [ 110.511475, 0.769020 ], [ 109.830322, 1.340210 ], [ 109.665527, 1.999106 ], [ 110.401611, 1.658704 ], [ 111.170654, 1.845384 ], [ 111.368408, 2.690661 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.096636 ], [ 113.719482, 3.886177 ], [ 114.202881, 4.521666 ], [ 114.664307, 4.006740 ], [ 114.873047, 4.346411 ], [ 115.345459, 4.313546 ], [ 115.455322, 5.441022 ], [ 116.224365, 6.140555 ], [ 116.729736, 6.926427 ], [ 117.136230, 6.926427 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.162109, 5.692516 ], [ 101.821289, 5.812757 ], [ 102.139893, 6.217012 ], [ 102.370605, 6.129631 ], [ 102.963867, 5.517575 ], [ 103.381348, 4.850154 ], [ 103.436279, 4.182073 ], [ 103.337402, 3.721745 ], [ 103.436279, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.625758 ], [ 104.227295, 1.285293 ], [ 103.524170, 1.219390 ], [ 102.579346, 1.966167 ], [ 101.392822, 2.756504 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.940981 ], [ 100.557861, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.457234 ], [ 100.261230, 6.642783 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.497803, 25.294371 ], [ 121.959229, 24.996016 ], [ 121.783447, 24.387127 ], [ 121.179199, 22.786311 ], [ 120.750732, 21.963425 ], [ 120.223389, 22.816694 ], [ 120.113525, 23.553917 ], [ 120.695801, 24.537129 ], [ 121.497803, 25.294371 ] ] ] } } , { "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.353271, 38.608286 ], [ 129.210205, 37.431251 ], [ 129.462891, 36.782892 ], [ 129.473877, 35.630512 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.885931 ], [ 127.386475, 34.470335 ], [ 126.485596, 34.388779 ], [ 126.375732, 34.930979 ], [ 126.562500, 35.684072 ], [ 126.123047, 36.721274 ], [ 126.859131, 36.888408 ], [ 126.177979, 37.744657 ], [ 126.243896, 37.840157 ], [ 126.683350, 37.805444 ], [ 127.078857, 38.255436 ], [ 127.781982, 38.298559 ], [ 128.210449, 38.367502 ], [ 128.353271, 38.608286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.419922, 9.752370 ], [ 126.221924, 9.286465 ], [ 126.485596, 7.743651 ], [ 126.540527, 7.188101 ], [ 126.199951, 6.271618 ], [ 125.837402, 7.286190 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.042236 ], [ 125.397949, 5.583184 ], [ 124.222412, 6.162401 ], [ 123.936768, 6.882800 ], [ 124.244385, 7.362467 ], [ 123.618164, 7.830731 ], [ 123.299561, 7.416942 ], [ 122.827148, 7.449624 ], [ 122.091064, 6.893707 ], [ 121.926270, 7.188101 ], [ 122.310791, 8.037473 ], [ 122.947998, 8.309341 ], [ 123.486328, 8.689639 ], [ 123.848877, 8.233237 ], [ 124.606934, 8.515836 ], [ 124.771729, 8.961045 ], [ 125.474854, 8.982749 ], [ 125.419922, 9.752370 ] ] ], [ [ [ 121.322021, 18.500447 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.343750, 18.218916 ], [ 122.178955, 17.811456 ], [ 122.519531, 17.088291 ], [ 122.255859, 16.256867 ], [ 121.662598, 15.929638 ], [ 121.508789, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.266846, 14.211139 ], [ 122.706299, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.859863, 13.239945 ], [ 124.189453, 12.993853 ], [ 124.079590, 12.533115 ], [ 123.299561, 13.025966 ], [ 122.926025, 13.549881 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.124268, 13.635310 ], [ 120.629883, 13.859414 ], [ 120.684814, 14.264383 ], [ 120.992432, 14.519780 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.392118 ], [ 120.069580, 14.966013 ], [ 119.926758, 15.400728 ], [ 119.882812, 16.362310 ], [ 120.289307, 16.035255 ], [ 120.388184, 17.591667 ], [ 120.717773, 18.500447 ], [ 121.322021, 18.500447 ] ] ], [ [ [ 124.266357, 12.554564 ], [ 125.233154, 12.533115 ], [ 125.507812, 12.157486 ], [ 125.782471, 11.038255 ], [ 125.013428, 11.307708 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.804688, 10.131117 ], [ 124.760742, 10.833306 ], [ 124.464111, 10.887254 ], [ 124.310303, 11.490791 ], [ 124.892578, 11.415418 ], [ 124.881592, 11.792080 ], [ 124.266357, 12.554564 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.980713, 10.271681 ], [ 123.629150, 9.947209 ], [ 123.310547, 9.318990 ], [ 123.002930, 9.015302 ], [ 122.387695, 9.709057 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.876465 ], [ 123.497314, 10.941192 ], [ 123.343506, 10.260871 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.696045, 10.552622 ], [ 119.036865, 10.001310 ], [ 118.509521, 9.318990 ], [ 117.180176, 8.363693 ], [ 117.663574, 9.069551 ], [ 118.388672, 9.676569 ], [ 118.992920, 10.368958 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.486572, 11.576907 ], [ 123.123779, 11.576907 ], [ 123.101807, 11.167624 ], [ 122.640381, 10.736175 ], [ 122.003174, 10.433793 ], [ 121.970215, 10.898042 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.432367 ], [ 121.530762, 13.068777 ], [ 121.267090, 12.200442 ], [ 120.838623, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.858154, -0.878872 ], [ 131.868896, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.636740 ], [ 125.244141, 1.417092 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.373533 ], [ 120.190430, 0.230712 ], [ 120.135498, 0.000000 ], [ 120.047607, -0.527336 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.560294 ], [ 120.893555, 1.307260 ], [ 121.673584, 1.010690 ], [ 122.926025, 0.867887 ], [ 124.079590, 0.911827 ], [ 125.068359, 1.636740 ] ] ], [ [ [ 127.935791, 2.174771 ], [ 128.001709, 1.625758 ], [ 128.594971, 1.537901 ], [ 128.693848, 1.131518 ], [ 128.638916, 0.252685 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.386230, -0.780005 ], [ 128.155518, -0.878872 ], [ 128.089600, -0.878872 ], [ 127.694092, -0.274657 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.606201, 1.812442 ], [ 127.935791, 2.174771 ] ] ], [ [ [ 117.015381, 4.302591 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.228271 ], [ 118.048096, 2.284551 ], [ 117.883301, 1.823423 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.324951, -0.878872 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 1.999106 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.769020 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.900842 ], [ 112.379150, 1.406109 ], [ 112.862549, 1.493971 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.162456 ], [ 115.872803, 4.302591 ], [ 117.015381, 4.302591 ] ] ], [ [ [ 95.295410, 5.473832 ], [ 95.943604, 5.441022 ], [ 97.492676, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.700928, 3.173425 ], [ 100.645752, 2.097920 ], [ 101.656494, 2.075962 ], [ 102.502441, 1.395126 ], [ 103.084717, 0.560294 ], [ 103.842773, 0.098877 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.175781 ], [ 98.975830, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.449205 ], [ 97.185059, 3.305050 ], [ 96.427002, 3.864255 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.473832 ] ] ], [ [ [ 121.893311, -0.878872 ], [ 123.343506, -0.615223 ], [ 123.299561, -0.878872 ], [ 121.893311, -0.878872 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.865967, 52.045734 ], [ 99.986572, 51.631657 ], [ 100.887451, 51.515580 ], [ 102.062988, 51.255040 ], [ 102.260742, 50.506440 ], [ 103.677979, 50.085344 ], [ 104.622803, 50.275299 ], [ 105.886230, 50.401515 ], [ 106.896973, 50.275299 ], [ 107.874756, 49.795450 ], [ 108.479004, 49.282140 ], [ 109.401855, 49.289306 ], [ 110.665283, 49.131408 ], [ 111.588135, 49.375220 ], [ 112.895508, 49.539469 ], [ 114.367676, 50.247205 ], [ 114.960938, 50.141706 ], [ 115.488281, 49.802541 ], [ 116.685791, 49.887557 ], [ 116.191406, 49.131408 ], [ 115.488281, 48.136767 ], [ 115.740967, 47.724545 ], [ 116.312256, 47.850031 ], [ 117.301025, 47.694974 ], [ 118.070068, 48.063397 ], [ 118.872070, 47.746711 ], [ 119.772949, 47.047669 ], [ 119.663086, 46.687131 ], [ 118.872070, 46.800059 ], [ 117.421875, 46.672056 ], [ 116.718750, 46.384833 ], [ 115.982666, 45.721522 ], [ 114.466553, 45.336702 ], [ 113.466797, 44.809122 ], [ 112.434082, 45.011419 ], [ 111.873779, 45.096791 ], [ 111.346436, 44.457310 ], [ 111.665039, 44.071800 ], [ 111.829834, 43.739352 ], [ 111.137695, 43.405047 ], [ 110.412598, 42.867912 ], [ 109.248047, 42.520700 ], [ 107.742920, 42.480200 ], [ 106.127930, 42.130821 ], [ 104.963379, 41.599013 ], [ 104.523926, 41.902277 ], [ 103.315430, 41.902277 ], [ 101.832275, 42.512602 ], [ 100.843506, 42.658202 ], [ 99.514160, 42.520700 ], [ 97.459717, 42.747012 ], [ 96.350098, 42.722804 ], [ 95.767822, 43.317185 ], [ 95.306396, 44.237328 ], [ 94.691162, 44.347422 ], [ 93.482666, 44.972571 ], [ 92.131348, 45.112300 ], [ 90.944824, 45.282617 ], [ 90.593262, 45.721522 ], [ 90.977783, 46.882723 ], [ 90.285645, 47.694974 ], [ 90.000000, 47.768868 ], [ 89.121094, 47.997274 ], [ 89.121094, 49.610710 ], [ 90.000000, 50.007739 ], [ 90.714111, 50.331436 ], [ 92.241211, 50.798991 ], [ 93.109131, 50.492463 ], [ 94.152832, 50.478483 ], [ 94.822998, 50.014799 ], [ 95.811768, 49.972422 ], [ 97.261963, 49.724479 ], [ 98.239746, 50.422519 ], [ 97.833252, 51.006842 ], [ 98.865967, 52.045734 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 66.861082 ], [ 135.878906, 55.203953 ], [ 135.131836, 54.730964 ], [ 135.878906, 54.667478 ], [ 135.878906, 44.300264 ], [ 135.000000, 43.516689 ], [ 134.868164, 43.397065 ], [ 133.538818, 42.811522 ], [ 132.912598, 42.795401 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.220382 ], [ 130.638428, 42.391009 ], [ 130.638428, 42.900113 ], [ 131.143799, 42.924252 ], [ 131.286621, 44.111254 ], [ 131.022949, 44.964798 ], [ 131.890869, 45.321254 ], [ 133.099365, 45.143305 ], [ 133.769531, 46.111326 ], [ 134.110107, 47.212106 ], [ 134.505615, 47.576526 ], [ 135.000000, 48.429201 ], [ 135.032959, 48.472921 ], [ 135.000000, 48.472921 ], [ 133.374023, 48.180739 ], [ 132.506104, 47.783635 ], [ 130.989990, 47.791016 ], [ 130.583496, 48.727209 ], [ 129.396973, 49.439557 ], [ 127.661133, 49.759978 ], [ 127.287598, 50.736455 ], [ 126.947021, 51.351201 ], [ 126.562500, 51.781436 ], [ 125.947266, 52.789476 ], [ 125.068359, 53.159947 ], [ 123.574219, 53.455349 ], [ 122.244873, 53.429174 ], [ 121.003418, 53.252069 ], [ 120.179443, 52.749594 ], [ 120.728760, 52.516221 ], [ 120.739746, 51.964577 ], [ 120.179443, 51.638476 ], [ 119.278564, 50.583237 ], [ 119.289551, 50.141706 ], [ 117.883301, 49.510944 ], [ 116.685791, 49.887557 ], [ 115.488281, 49.802541 ], [ 114.960938, 50.141706 ], [ 114.367676, 50.247205 ], [ 112.895508, 49.539469 ], [ 111.588135, 49.375220 ], [ 110.665283, 49.131408 ], [ 109.401855, 49.289306 ], [ 108.479004, 49.282140 ], [ 107.874756, 49.795450 ], [ 106.896973, 50.275299 ], [ 105.886230, 50.401515 ], [ 104.622803, 50.275299 ], [ 103.677979, 50.085344 ], [ 102.260742, 50.506440 ], [ 102.062988, 51.255040 ], [ 100.887451, 51.515580 ], [ 99.986572, 51.631657 ], [ 98.865967, 52.045734 ], [ 97.833252, 51.006842 ], [ 98.239746, 50.422519 ], [ 97.261963, 49.724479 ], [ 95.811768, 49.972422 ], [ 94.822998, 50.014799 ], [ 94.152832, 50.478483 ], [ 93.109131, 50.492463 ], [ 92.241211, 50.798991 ], [ 90.714111, 50.331436 ], [ 90.000000, 50.007739 ], [ 89.121094, 49.610710 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ] ] ] } } ] } ] } , @@ -753,9 +791,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.121094, -1.098565 ], [ 134.143066, -1.153487 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.461426, -3.370856 ], [ 136.296387, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.185791, -2.054003 ], [ 139.932861, -2.416276 ], [ 140.998535, -2.602864 ], [ 141.031494, -9.123792 ], [ 140.141602, -8.298470 ], [ 139.130859, -8.102739 ], [ 138.889160, -8.385431 ], [ 137.614746, -8.418036 ], [ 138.043213, -7.602108 ], [ 138.669434, -7.318882 ], [ 138.405762, -6.238855 ], [ 137.933350, -5.397273 ], [ 135.988770, -4.554522 ], [ 135.164795, -4.466904 ], [ 135.000000, -4.357366 ], [ 134.121094, -3.820408 ], [ 134.121094, -1.098565 ] ] ], [ [ [ 134.494629, -5.451959 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.893707 ], [ 134.121094, -6.227934 ], [ 134.121094, -6.118708 ], [ 134.285889, -5.790897 ], [ 134.494629, -5.451959 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.323242, -10.206813 ], [ 161.916504, -10.444598 ], [ 162.125244, -10.487812 ], [ 162.399902, -10.833306 ], [ 161.707764, -10.822515 ], [ 161.323242, -10.206813 ] ] ], [ [ [ 159.708252, -9.243093 ], [ 160.367432, -9.405710 ], [ 160.686035, -9.611582 ], [ 160.850830, -9.871452 ], [ 160.466309, -9.893099 ], [ 159.851074, -9.795678 ], [ 159.642334, -9.644077 ], [ 159.708252, -9.243093 ] ] ], [ [ [ 160.927734, -8.320212 ], [ 161.279297, -9.123792 ], [ 161.685791, -9.600750 ], [ 161.531982, -9.784851 ], [ 160.795898, -8.917634 ], [ 160.587158, -8.320212 ], [ 160.927734, -8.320212 ] ] ], [ [ [ 158.367920, -7.318882 ], [ 159.642334, -8.026595 ], [ 159.873047, -8.341953 ], [ 159.916992, -8.537565 ], [ 159.136963, -8.113615 ], [ 158.587646, -7.754537 ], [ 158.214111, -7.427837 ], [ 158.367920, -7.318882 ] ] ], [ [ [ 156.544189, -6.599131 ], [ 157.137451, -7.024572 ], [ 157.543945, -7.351571 ], [ 157.346191, -7.406048 ], [ 156.906738, -7.177201 ], [ 156.489258, -6.773716 ], [ 156.544189, -6.599131 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.602864 ], [ 142.734375, -3.294082 ], [ 144.591064, -3.864255 ], [ 145.272217, -4.379275 ], [ 145.832520, -4.882994 ], [ 145.986328, -5.462896 ], [ 147.656250, -6.085936 ], [ 147.897949, -6.620957 ], [ 146.975098, -6.719165 ], [ 147.194824, -7.395153 ], [ 148.084717, -8.048352 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.271240, -9.514079 ], [ 150.040283, -9.687398 ], [ 149.743652, -9.871452 ], [ 150.809326, -10.293301 ], [ 150.688477, -10.585022 ], [ 150.029297, -10.649811 ], [ 149.787598, -10.390572 ], [ 148.930664, -10.282491 ], [ 147.919922, -10.131117 ], [ 147.139893, -9.492408 ], [ 146.568604, -8.950193 ], [ 146.052246, -8.070107 ], [ 144.744873, -7.634776 ], [ 143.898926, -7.917793 ], [ 143.283691, -8.244110 ], [ 143.415527, -8.982749 ], [ 142.635498, -9.329831 ], [ 142.075195, -9.167179 ], [ 141.031494, -9.123792 ], [ 140.998535, -2.602864 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.336426, -4.313546 ], [ 152.325439, -4.872048 ], [ 151.984863, -5.484768 ], [ 151.457520, -5.561315 ], [ 151.303711, -5.845545 ], [ 150.249023, -6.315299 ], [ 149.710693, -6.315299 ], [ 148.897705, -6.031311 ], [ 148.326416, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.304199, -5.583184 ], [ 149.853516, -5.506640 ], [ 149.996338, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.238037, -5.539446 ], [ 150.809326, -5.462896 ], [ 151.094971, -5.112830 ], [ 151.655273, -4.762573 ], [ 151.545410, -4.171115 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 154.654541, -5.047171 ], [ 154.764404, -5.342583 ], [ 155.061035, -5.572250 ], [ 155.555420, -6.206090 ], [ 156.027832, -6.544560 ], [ 155.885010, -6.817353 ], [ 155.599365, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.900189 ], [ 154.511719, -5.145657 ], [ 154.654541, -5.047171 ] ] ], [ [ [ 150.941162, -2.504085 ], [ 151.479492, -2.778451 ], [ 152.237549, -3.239240 ], [ 152.644043, -3.666928 ], [ 153.017578, -3.984821 ], [ 153.138428, -4.499762 ], [ 152.830811, -4.773521 ], [ 152.644043, -4.182073 ], [ 152.413330, -3.787522 ], [ 151.391602, -3.041783 ], [ 150.666504, -2.745531 ], [ 150.941162, -2.504085 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.036865, -20.107523 ], [ 164.465332, -20.117840 ], [ 165.025635, -20.457896 ], [ 165.465088, -20.807472 ], [ 165.783691, -21.084500 ], [ 166.607666, -21.698265 ], [ 167.124023, -22.167058 ], [ 166.739502, -22.400872 ], [ 166.190186, -22.136532 ], [ 165.476074, -21.677848 ], [ 164.827881, -21.156238 ], [ 164.168701, -20.447602 ], [ 164.036865, -20.107523 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.374023, -17.340152 ], [ 178.725586, -17.633552 ], [ 178.560791, -18.156291 ], [ 177.934570, -18.291950 ], [ 177.385254, -18.166730 ], [ 177.286377, -17.727759 ], [ 177.670898, -17.382095 ], [ 178.132324, -17.507867 ], [ 178.374023, -17.340152 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.208740, -16.024696 ], [ 180.087891, -16.499299 ], [ 180.000000, -16.562493 ], [ 179.362793, -16.804541 ], [ 178.725586, -17.014768 ], [ 178.604736, -16.646718 ], [ 179.099121, -16.436085 ], [ 179.417725, -16.383391 ], [ 180.000000, -16.066929 ] ] ] ] } } ] } ] } , @@ -768,6 +806,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.032959, 48.472921 ], [ 135.000000, 48.429201 ], [ 134.494629, 47.576526 ], [ 134.121094, 47.219568 ], [ 134.121094, 48.319734 ], [ 135.000000, 48.472921 ], [ 135.032959, 48.472921 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 64.979359 ], [ 180.000000, 64.974712 ], [ 178.714600, 64.534272 ], [ 177.418213, 64.605038 ], [ 178.319092, 64.077003 ], [ 178.912354, 63.248467 ], [ 179.373779, 62.980189 ], [ 179.483643, 62.568045 ], [ 179.230957, 62.303688 ], [ 177.363281, 62.522458 ], [ 174.572754, 61.767926 ], [ 173.682861, 61.653379 ], [ 172.155762, 60.946442 ], [ 170.705566, 60.332386 ], [ 170.332031, 59.877912 ], [ 168.903809, 60.570777 ], [ 166.300049, 59.789580 ], [ 165.838623, 60.157910 ], [ 164.882812, 59.728716 ], [ 163.542480, 59.866883 ], [ 163.223877, 59.209688 ], [ 162.015381, 58.240164 ], [ 162.059326, 57.838903 ], [ 163.190918, 57.615992 ], [ 163.059082, 56.157788 ], [ 162.136230, 56.121060 ], [ 161.707764, 55.285372 ], [ 162.125244, 54.851315 ], [ 160.367432, 54.342149 ], [ 160.026855, 53.199452 ], [ 158.532715, 52.955257 ], [ 158.236084, 51.944265 ], [ 156.796875, 51.006842 ], [ 156.423340, 51.699800 ], [ 155.994873, 53.159947 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.764768 ], [ 156.763916, 57.362090 ], [ 156.807861, 57.833055 ], [ 158.367920, 58.054632 ], [ 160.158691, 59.310768 ], [ 161.872559, 60.343260 ], [ 163.674316, 61.137933 ], [ 164.476318, 62.547793 ], [ 163.256836, 62.466646 ], [ 162.663574, 61.642945 ], [ 160.125732, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.719971, 61.433515 ], [ 154.226074, 59.756395 ], [ 155.050049, 59.142135 ], [ 152.819824, 58.881942 ], [ 151.270752, 58.779591 ], [ 151.336670, 59.500880 ], [ 149.787598, 59.656642 ], [ 148.546143, 59.164668 ], [ 145.491943, 59.333189 ], [ 142.196045, 59.040555 ], [ 138.966064, 57.088515 ], [ 135.131836, 54.730964 ], [ 136.702881, 54.603892 ], [ 137.197266, 53.975474 ], [ 138.164062, 53.755207 ], [ 138.812256, 54.252389 ], [ 139.899902, 54.188155 ], [ 141.350098, 53.087426 ], [ 141.383057, 52.234528 ], [ 140.603027, 51.241286 ], [ 140.515137, 50.043030 ], [ 140.064697, 48.443778 ], [ 138.559570, 46.995241 ], [ 138.218994, 46.308996 ], [ 136.867676, 45.143305 ], [ 135.516357, 43.984910 ], [ 135.000000, 43.516689 ], [ 134.868164, 43.397065 ], [ 134.121094, 43.068888 ], [ 134.121094, 47.219568 ], [ 134.494629, 47.576526 ], [ 135.000000, 48.429201 ], [ 135.032959, 48.472921 ], [ 135.000000, 48.472921 ], [ 134.121094, 48.319734 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ], [ 180.878906, 66.861082 ], [ 180.878906, 66.026947 ], [ 180.120850, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ] ] ], [ [ [ 142.657471, 54.361358 ], [ 143.261719, 52.736292 ], [ 143.239746, 51.754240 ], [ 143.646240, 50.743408 ], [ 144.656982, 48.973006 ], [ 143.173828, 49.303636 ], [ 142.558594, 47.857403 ], [ 143.536377, 46.837650 ], [ 143.503418, 46.134170 ], [ 142.745361, 46.739861 ], [ 142.097168, 45.966425 ], [ 141.910400, 46.807580 ], [ 142.020264, 47.776252 ], [ 141.910400, 48.857487 ], [ 142.141113, 49.610710 ], [ 142.185059, 50.951506 ], [ 141.591797, 51.930718 ], [ 141.690674, 53.298056 ], [ 142.613525, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.657471, 54.361358 ] ] ] ] } } ] } ] } , diff --git a/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol.json b/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol.json index 518dfb0bd..4f1997dfd 100644 --- a/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol.json +++ b/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol.json @@ -9,7 +9,7 @@ "maxzoom": "7", "minzoom": "1", "name": "tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol.json.check.mbtiles", -"strategies": "[{},{\"dropped_by_rate\":109},{\"dropped_by_rate\":125},{\"dropped_by_rate\":139},{\"dropped_by_rate\":125},{\"dropped_by_rate\":121},{\"dropped_by_rate\":95},{}]", +"strategies": "[{},{\"dropped_by_rate\":109},{\"dropped_by_rate\":124},{\"dropped_by_rate\":138},{\"dropped_by_rate\":123},{\"dropped_by_rate\":119},{\"dropped_by_rate\":102},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -27,13 +27,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -91.406250, 43.500752 ], [ -91.230469, 43.500752 ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.406250, 43.500752 ], [ -91.230469, 43.500752 ] ], [ [ -79.475098, 39.724089 ], [ -79.475098, 39.215231 ], [ -79.167480, 39.419221 ], [ -78.969727, 39.453161 ], [ -78.837891, 39.554883 ], [ -78.530273, 39.520992 ], [ -78.222656, 39.673370 ], [ -77.915039, 39.588757 ], [ -77.717285, 39.317300 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 41.508577 ], [ -111.049805, 41.029643 ], [ -109.050293, 41.004775 ] ], [ [ -91.153564, 33.008663 ], [ -91.087646, 32.953368 ], [ -91.175537, 32.805745 ], [ -91.032715, 32.602362 ], [ -91.076660, 32.481963 ], [ -90.944824, 32.305706 ], [ -91.076660, 32.203505 ], [ -91.131592, 32.017392 ], [ -91.318359, 31.858897 ], [ -91.505127, 31.409912 ], [ -91.625977, 31.297328 ], [ -91.582031, 31.043522 ], [ -90.703125, 31.015279 ], [ -90.000000, 31.015279 ], [ -89.758301, 31.015279 ], [ -89.791260, 30.845647 ], [ -89.857178, 30.685164 ], [ -89.791260, 30.552800 ], [ -89.659424, 30.439202 ], [ -89.604492, 30.173625 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 41.508577 ], [ -111.049805, 41.029643 ], [ -109.050293, 41.004775 ] ], [ [ -109.050293, 37.002553 ], [ -109.039307, 31.344254 ] ], [ [ -89.296875, 36.597889 ], [ -89.494629, 36.509636 ] ] ] } } ] } ] } , @@ -45,7 +45,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.703125, 41.475660 ], [ -90.571289, 41.508577 ] ], [ [ -89.604492, 30.173625 ], [ -89.659424, 30.439202 ], [ -89.791260, 30.552800 ], [ -89.857178, 30.685164 ], [ -89.791260, 30.845647 ], [ -89.758301, 31.015279 ], [ -90.000000, 31.015279 ], [ -90.703125, 31.015279 ] ], [ [ -88.165283, 35.003003 ], [ -85.627441, 34.985003 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.703125, 41.475660 ], [ -90.571289, 41.508577 ] ], [ [ -89.099121, 36.949892 ], [ -89.132080, 36.853252 ], [ -89.110107, 36.694851 ], [ -89.494629, 36.509636 ] ], [ [ -79.475098, 39.724089 ], [ -79.486084, 39.215231 ], [ -79.156494, 39.419221 ], [ -78.958740, 39.461644 ], [ -78.826904, 39.563353 ], [ -78.530273, 39.520992 ], [ -78.420410, 39.597223 ], [ -78.233643, 39.673370 ], [ -77.926025, 39.588757 ], [ -77.805176, 39.453161 ], [ -77.717285, 39.325799 ] ] ] } } ] } ] } , @@ -57,7 +57,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -114.642334, 35.052484 ], [ -118.114014, 37.644685 ], [ -119.998169, 38.993572 ], [ -119.998169, 40.979898 ], [ -119.998169, 41.244772 ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.642334, 35.052484 ], [ -118.114014, 37.644685 ], [ -119.998169, 38.993572 ], [ -119.998169, 41.244772 ] ], [ [ -114.032593, 36.993778 ], [ -112.148438, 37.011326 ] ] ] } } ] } ] } , @@ -69,19 +69,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.055298, 41.244772 ], [ -111.055298, 41.029643 ], [ -109.050293, 41.000630 ] ], [ [ -109.044800, 36.998166 ], [ -103.002319, 36.993778 ] ], [ [ -91.153564, 33.008663 ], [ -91.082153, 32.953368 ], [ -91.175537, 32.810362 ], [ -91.032715, 32.602362 ], [ -91.071167, 32.477329 ], [ -90.944824, 32.305706 ], [ -91.082153, 32.203505 ], [ -91.126099, 32.017392 ], [ -91.318359, 31.858897 ], [ -91.499634, 31.409912 ], [ -91.625977, 31.297328 ], [ -91.582031, 31.048228 ], [ -90.703125, 31.015279 ], [ -89.758301, 31.015279 ], [ -89.785767, 30.845647 ], [ -89.851685, 30.685164 ], [ -89.791260, 30.557531 ], [ -89.659424, 30.439202 ], [ -89.648438, 30.391830 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.055298, 41.244772 ], [ -111.055298, 41.029643 ], [ -109.050293, 41.000630 ] ], [ [ -104.046021, 41.244772 ], [ -104.046021, 41.004775 ] ], [ [ -109.044800, 36.998166 ], [ -112.851562, 37.006939 ] ], [ [ -109.044800, 36.998166 ], [ -109.044800, 31.339563 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.000325 ], [ -112.851562, 41.996243 ] ], [ [ -104.024048, 45.954969 ], [ -100.068970, 45.966425 ], [ -98.442993, 45.962606 ], [ -96.536865, 46.016039 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.000325 ], [ -112.851562, 41.996243 ] ], [ [ -104.051514, 43.000630 ], [ -104.046021, 41.004775 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.664917, 36.022447 ], [ -90.313110, 36.022447 ], [ -90.252686, 36.120128 ], [ -90.027466, 36.337253 ], [ -90.109863, 36.461054 ], [ -90.351562, 36.474307 ] ], [ [ -89.604492, 30.178373 ], [ -89.659424, 30.439202 ], [ -89.791260, 30.557531 ], [ -89.851685, 30.685164 ], [ -89.785767, 30.845647 ], [ -89.758301, 31.015279 ], [ -90.351562, 31.015279 ] ], [ [ -88.165283, 34.998504 ], [ -86.907349, 34.998504 ], [ -85.627441, 34.985003 ] ], [ [ -87.528076, 30.273300 ], [ -87.456665, 30.410782 ], [ -87.407227, 30.609550 ], [ -87.632446, 30.850363 ], [ -87.615967, 30.925789 ], [ -87.044678, 30.982319 ], [ -85.006714, 30.991737 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.664917, 36.022447 ], [ -90.313110, 36.022447 ], [ -90.252686, 36.120128 ], [ -90.027466, 36.337253 ], [ -90.109863, 36.461054 ], [ -90.351562, 36.474307 ] ], [ [ -89.104614, 36.949892 ], [ -89.132080, 36.853252 ], [ -89.115601, 36.694851 ], [ -89.500122, 36.505221 ] ], [ [ -83.078613, 34.980502 ], [ -83.182983, 34.894942 ], [ -83.347778, 34.705493 ], [ -83.078613, 34.538238 ], [ -82.902832, 34.479392 ], [ -82.716064, 34.161818 ], [ -82.595215, 33.984364 ], [ -82.249146, 33.747180 ], [ -82.177734, 33.623768 ], [ -81.941528, 33.458943 ], [ -81.826172, 33.224903 ], [ -81.507568, 33.022482 ], [ -81.436157, 32.791892 ], [ -81.375732, 32.680996 ], [ -81.408691, 32.606989 ], [ -81.221924, 32.500496 ], [ -81.128540, 32.310349 ], [ -81.128540, 32.119801 ], [ -81.035156, 32.082575 ], [ -80.864868, 32.031363 ] ], [ [ -79.475098, 39.719863 ], [ -79.486084, 39.215231 ], [ -79.332275, 39.304550 ], [ -79.161987, 39.419221 ], [ -78.964233, 39.457403 ], [ -78.826904, 39.563353 ], [ -78.535767, 39.520992 ], [ -78.425903, 39.597223 ], [ -78.233643, 39.673370 ], [ -77.920532, 39.592990 ], [ -77.799683, 39.448919 ], [ -77.722778, 39.321550 ] ] ] } } ] } ] } , @@ -99,37 +99,37 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -114.642334, 35.052484 ], [ -116.320496, 36.321764 ], [ -118.114014, 37.644685 ], [ -120.000916, 38.995707 ], [ -119.998169, 40.979898 ], [ -119.998169, 41.112469 ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.642334, 35.052484 ], [ -116.320496, 36.321764 ], [ -118.114014, 37.644685 ], [ -120.000916, 38.995707 ], [ -119.998169, 41.112469 ] ], [ [ -114.029846, 36.993778 ], [ -112.324219, 37.009133 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -119.998169, 41.992160 ], [ -123.925781, 41.998284 ] ], [ [ -112.324219, 44.559163 ], [ -112.335205, 44.561120 ], [ -112.362671, 44.461231 ], [ -112.689514, 44.498464 ], [ -112.873535, 44.359206 ], [ -113.052063, 44.619799 ], [ -113.175659, 44.764287 ], [ -113.378906, 44.789633 ], [ -113.439331, 44.861710 ], [ -113.502502, 45.123929 ], [ -113.681030, 45.249755 ], [ -113.793640, 45.564064 ], [ -113.914490, 45.702343 ], [ -114.035339, 45.729191 ], [ -114.136963, 45.589056 ], [ -114.334717, 45.469762 ], [ -114.513245, 45.569832 ], [ -114.524231, 45.824971 ], [ -114.406128, 45.890008 ], [ -114.491272, 46.147492 ], [ -114.392395, 46.409458 ], [ -114.285278, 46.632465 ], [ -114.584656, 46.641894 ], [ -114.842834, 46.786897 ], [ -115.120239, 47.094435 ], [ -115.287781, 47.249407 ], [ -115.518494, 47.344406 ], [ -115.705261, 47.504214 ], [ -115.705261, 47.683881 ], [ -115.966187, 47.949466 ], [ -116.043091, 48.922499 ], [ -116.048584, 49.000042 ] ], [ [ -119.998169, 41.992160 ], [ -119.998169, 40.847060 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -119.998169, 41.992160 ], [ -123.925781, 41.998284 ] ], [ [ -117.029114, 42.000325 ], [ -114.032593, 41.992160 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.031860, 48.998240 ], [ -117.031860, 48.922499 ], [ -117.029114, 48.806863 ] ], [ [ -116.048584, 49.000042 ], [ -116.043091, 48.922499 ], [ -116.032104, 48.806863 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.031860, 48.998240 ], [ -117.031860, 48.922499 ], [ -117.029114, 48.806863 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -106.506958, 31.753861 ], [ -106.619568, 31.914868 ], [ -106.625061, 31.952162 ], [ -106.630554, 31.998759 ], [ -103.002319, 31.998759 ], [ -103.002319, 32.101190 ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -106.506958, 31.753861 ], [ -106.619568, 31.914868 ], [ -106.630554, 31.998759 ], [ -103.002319, 31.998759 ], [ -103.002319, 32.101190 ] ], [ [ -109.042053, 31.339563 ], [ -109.044800, 32.101190 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.055298, 41.112469 ], [ -111.055298, 41.027571 ], [ -109.053040, 41.002703 ] ], [ [ -109.044800, 37.000359 ], [ -103.002319, 36.995972 ], [ -102.041016, 36.991585 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.055298, 41.112469 ], [ -111.055298, 41.027571 ], [ -109.053040, 41.002703 ] ], [ [ -104.046021, 41.112469 ], [ -104.046021, 41.004775 ] ], [ [ -109.044800, 37.000359 ], [ -110.494995, 37.006939 ], [ -112.675781, 37.006939 ] ], [ [ -103.002319, 36.995972 ], [ -102.041016, 36.991585 ] ], [ [ -109.044800, 37.000359 ], [ -109.044800, 31.802893 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.000325 ], [ -112.675781, 41.996243 ] ], [ [ -111.085510, 44.506300 ], [ -111.192627, 44.561120 ], [ -111.291504, 44.701850 ], [ -111.398621, 44.729174 ], [ -111.541443, 44.529801 ], [ -111.772156, 44.498464 ], [ -112.335205, 44.561120 ], [ -112.362671, 44.461231 ], [ -112.675781, 44.496505 ] ], [ [ -104.026794, 45.956878 ], [ -104.076233, 47.171044 ], [ -104.092712, 48.922499 ], [ -104.092712, 49.005447 ] ], [ [ -104.026794, 45.956878 ], [ -101.074219, 45.962606 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.000325 ], [ -112.675781, 41.996243 ] ], [ [ -104.026794, 45.956878 ], [ -104.076233, 47.171044 ], [ -104.092712, 48.922499 ], [ -104.092712, 49.005447 ] ], [ [ -104.051514, 43.000630 ], [ -104.046021, 41.004775 ] ] ] } } ] } ] } , @@ -147,13 +147,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.795288, 40.582671 ], [ -95.861206, 40.763901 ], [ -95.833740, 40.942564 ], [ -95.839233, 40.979898 ], [ -95.855713, 41.112469 ] ], [ [ -95.795288, 40.582671 ], [ -94.001770, 40.584757 ], [ -92.850952, 40.593100 ], [ -91.757812, 40.613952 ], [ -91.568298, 40.451127 ], [ -91.430969, 40.367474 ] ], [ [ -91.156311, 33.008663 ], [ -91.084900, 32.953368 ], [ -91.175537, 32.808053 ], [ -91.029968, 32.602362 ], [ -91.071167, 32.477329 ], [ -90.942078, 32.305706 ], [ -91.082153, 32.203505 ], [ -91.128845, 32.015063 ], [ -91.321106, 31.858897 ], [ -91.345825, 31.802893 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.795288, 40.582671 ], [ -95.861206, 40.763901 ], [ -95.833740, 40.942564 ], [ -95.839233, 40.979898 ], [ -95.855713, 41.112469 ] ], [ [ -90.249939, 35.021000 ], [ -90.000000, 35.021000 ], [ -89.824219, 35.021000 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.539612, 46.017946 ], [ -96.539612, 46.198844 ], [ -96.600037, 46.350719 ], [ -96.685181, 46.513516 ], [ -96.734619, 46.715386 ], [ -96.745605, 46.944637 ], [ -96.778564, 46.998988 ], [ -96.819763, 47.292271 ], [ -96.825256, 47.426229 ], [ -96.844482, 47.546872 ], [ -96.893921, 47.748558 ], [ -97.014771, 47.953145 ], [ -97.130127, 48.136767 ], [ -97.149353, 48.317908 ], [ -97.160339, 48.514785 ], [ -97.127380, 48.641984 ], [ -97.119141, 48.757999 ], [ -97.212524, 48.902643 ], [ -97.218018, 48.922499 ], [ -97.229004, 49.001844 ] ], [ [ -96.539612, 46.017946 ], [ -98.440247, 45.962606 ], [ -100.066223, 45.964515 ], [ -101.425781, 45.962606 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.539612, 46.017946 ], [ -96.539612, 46.198844 ], [ -96.600037, 46.350719 ], [ -96.685181, 46.513516 ], [ -96.734619, 46.715386 ], [ -96.745605, 46.944637 ], [ -96.778564, 46.998988 ], [ -96.819763, 47.292271 ], [ -96.825256, 47.426229 ], [ -96.844482, 47.546872 ], [ -96.893921, 47.748558 ], [ -97.014771, 47.953145 ], [ -97.130127, 48.136767 ], [ -97.149353, 48.317908 ], [ -97.160339, 48.514785 ], [ -97.127380, 48.641984 ], [ -97.119141, 48.757999 ], [ -97.212524, 48.902643 ], [ -97.218018, 48.922499 ], [ -97.229004, 49.001844 ] ], [ [ -91.227722, 43.500752 ], [ -91.213989, 43.446937 ], [ -91.082153, 43.287203 ], [ -91.172791, 43.211182 ], [ -91.170044, 43.002639 ], [ -91.065674, 42.753063 ], [ -90.738831, 42.658202 ], [ -90.639954, 42.504503 ] ] ] } } ] } ] } , @@ -165,31 +165,31 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.604492, 30.175999 ], [ -89.659424, 30.441570 ], [ -89.791260, 30.557531 ], [ -89.854431, 30.682802 ], [ -89.788513, 30.848005 ], [ -89.758301, 31.012925 ], [ -90.175781, 31.015279 ] ], [ [ -87.530823, 30.273300 ], [ -87.456665, 30.410782 ], [ -87.404480, 30.607186 ], [ -87.632446, 30.850363 ], [ -87.615967, 30.928145 ], [ -87.044678, 30.984673 ], [ -85.003967, 30.989383 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.604492, 30.175999 ], [ -89.659424, 30.441570 ], [ -89.791260, 30.557531 ], [ -89.854431, 30.682802 ], [ -89.788513, 30.848005 ], [ -89.758301, 31.012925 ], [ -90.175781, 31.015279 ] ], [ [ -81.079102, 32.101190 ], [ -81.035156, 32.084902 ], [ -80.864868, 32.033692 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.175781, 36.465472 ], [ -90.112610, 36.461054 ], [ -90.030212, 36.337253 ], [ -90.175781, 36.197742 ] ], [ [ -90.175781, 36.022447 ], [ -90.000000, 36.022447 ], [ -89.662170, 36.022447 ] ], [ [ -84.822693, 39.106620 ], [ -84.808960, 41.112469 ] ], [ [ -88.049927, 37.818463 ], [ -87.920837, 37.792422 ], [ -87.909851, 37.903032 ], [ -87.654419, 37.827141 ], [ -87.440186, 37.935533 ], [ -87.129822, 37.783740 ], [ -87.055664, 37.881357 ], [ -86.824951, 37.976680 ], [ -86.610718, 37.857507 ], [ -86.498108, 37.970185 ], [ -86.325073, 38.169114 ], [ -86.261902, 38.045928 ], [ -86.058655, 37.961523 ], [ -85.838928, 38.257593 ], [ -85.698853, 38.289937 ], [ -85.567017, 38.462192 ], [ -85.424194, 38.535276 ], [ -85.404968, 38.726233 ], [ -85.166016, 38.689798 ], [ -85.012207, 38.779781 ], [ -84.841919, 38.779781 ], [ -84.800720, 38.854681 ], [ -84.880371, 39.059716 ], [ -84.822693, 39.106620 ] ], [ [ -88.165283, 34.998504 ], [ -86.910095, 34.998504 ], [ -85.624695, 34.985003 ] ], [ [ -80.518799, 40.641051 ], [ -80.518799, 41.112469 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.175781, 36.465472 ], [ -90.112610, 36.461054 ], [ -90.030212, 36.337253 ], [ -90.175781, 36.197742 ] ], [ [ -90.175781, 36.022447 ], [ -90.000000, 36.022447 ], [ -89.662170, 36.022447 ] ], [ [ -88.165283, 34.998504 ], [ -89.263916, 35.021000 ], [ -90.175781, 35.021000 ] ], [ [ -89.497375, 36.505221 ], [ -88.069153, 36.496390 ], [ -88.071899, 36.655200 ], [ -87.874146, 36.655200 ], [ -87.841187, 36.611118 ], [ -87.214966, 36.639774 ], [ -86.091614, 36.626550 ], [ -85.517578, 36.597889 ], [ -85.231934, 36.608914 ], [ -84.350281, 36.567012 ], [ -83.671875, 36.600094 ] ], [ [ -89.101868, 36.952087 ], [ -89.134827, 36.851054 ], [ -89.115601, 36.694851 ], [ -89.274902, 36.611118 ], [ -89.497375, 36.505221 ] ], [ [ -80.518799, 40.641051 ], [ -80.518799, 41.112469 ] ], [ [ -83.075867, 34.978252 ], [ -83.185730, 34.894942 ], [ -83.345032, 34.705493 ], [ -83.075867, 34.540500 ], [ -82.902832, 34.479392 ], [ -82.716064, 34.161818 ], [ -82.597961, 33.984364 ], [ -82.249146, 33.749464 ], [ -82.180481, 33.623768 ], [ -81.944275, 33.461234 ], [ -81.826172, 33.222605 ], [ -81.507568, 33.022482 ], [ -81.436157, 32.791892 ], [ -81.375732, 32.683308 ], [ -81.411438, 32.609303 ], [ -81.224670, 32.498180 ], [ -81.125793, 32.312670 ], [ -81.128540, 32.122127 ], [ -81.035156, 32.084902 ], [ -80.864868, 32.033692 ] ], [ [ -79.477844, 39.719863 ], [ -79.486084, 39.213103 ], [ -79.332275, 39.302425 ], [ -79.161987, 39.417099 ], [ -78.961487, 39.457403 ], [ -78.829651, 39.563353 ], [ -78.574219, 39.527348 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.175781, 42.120636 ], [ -90.156555, 42.104336 ], [ -90.175781, 42.006448 ] ], [ [ -84.806213, 41.677015 ], [ -84.808960, 40.847060 ] ], [ [ -80.516052, 41.957448 ], [ -80.518799, 40.847060 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.175781, 42.120636 ], [ -90.156555, 42.104336 ], [ -90.175781, 42.006448 ] ], [ [ -86.824951, 41.761069 ], [ -86.824951, 41.754922 ], [ -85.748291, 41.750824 ], [ -84.806213, 41.754922 ], [ -84.806213, 41.677015 ] ], [ [ -80.516052, 41.957448 ], [ -80.518799, 40.847060 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -73.913269, 40.959160 ], [ -73.951721, 40.979898 ], [ -74.207153, 41.112469 ] ], [ [ -77.041626, 38.788345 ], [ -77.058105, 38.709089 ], [ -77.228394, 38.614724 ], [ -77.343750, 38.391186 ], [ -77.209167, 38.337348 ], [ -77.047119, 38.380422 ], [ -76.989441, 38.240337 ] ], [ [ -75.404663, 39.795876 ], [ -75.552979, 39.690281 ], [ -75.528259, 39.497683 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -73.913269, 40.959160 ], [ -73.951721, 40.979898 ], [ -74.207153, 41.112469 ] ], [ [ -77.722778, 39.321550 ], [ -77.802429, 39.448919 ], [ -77.923279, 39.592990 ], [ -78.230896, 39.671256 ], [ -78.425903, 39.597223 ], [ -78.533020, 39.523111 ], [ -78.829651, 39.563353 ], [ -78.925781, 39.487085 ] ], [ [ -75.786438, 39.724089 ], [ -75.709534, 39.802206 ], [ -75.621643, 39.846504 ], [ -75.404663, 39.795876 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -74.679565, 41.356196 ], [ -74.838867, 41.426253 ], [ -75.009155, 41.496235 ], [ -75.075073, 41.640078 ], [ -75.047607, 41.750824 ], [ -75.168457, 41.840920 ], [ -75.385437, 41.998284 ], [ -78.925781, 42.000325 ] ], [ [ -73.281555, 42.742978 ], [ -72.457581, 42.726839 ] ], [ [ -71.801147, 42.012571 ], [ -71.792908, 41.465370 ], [ -71.853333, 41.319076 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -74.679565, 41.356196 ], [ -74.838867, 41.426253 ], [ -75.009155, 41.496235 ], [ -75.075073, 41.640078 ], [ -75.047607, 41.750824 ], [ -75.168457, 41.840920 ], [ -75.385437, 41.998284 ], [ -78.925781, 42.000325 ] ], [ [ -73.281555, 42.742978 ], [ -72.457581, 42.726839 ] ], [ [ -73.498535, 42.053372 ], [ -71.801147, 42.012571 ] ] ] } } ] } ] } , @@ -213,7 +213,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -119.998169, 41.992160 ], [ -123.837891, 41.998284 ] ], [ [ -119.998169, 41.992160 ], [ -118.037109, 41.995222 ] ], [ [ -119.998169, 41.992160 ], [ -119.999542, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -119.998169, 41.992160 ], [ -123.837891, 41.998284 ] ], [ [ -119.998169, 41.992160 ], [ -119.999542, 40.913513 ] ] ] } } ] } ] } , @@ -225,31 +225,31 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.642334, 35.052484 ], [ -116.320496, 36.321764 ], [ -116.691284, 36.597889 ], [ -116.787415, 36.668419 ] ], [ [ -114.642334, 35.052484 ], [ -114.580536, 35.248984 ], [ -114.629974, 35.445009 ], [ -114.650574, 35.638325 ], [ -114.649200, 35.853440 ], [ -114.739838, 35.991341 ], [ -114.671173, 36.114581 ], [ -114.461060, 36.114581 ], [ -114.268799, 36.043547 ], [ -114.132843, 36.003563 ], [ -114.065552, 36.155618 ], [ -114.022980, 36.189984 ], [ -114.027100, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.642334, 35.052484 ], [ -116.320496, 36.321764 ], [ -116.691284, 36.597889 ], [ -116.787415, 36.668419 ] ], [ [ -114.642334, 35.052484 ], [ -114.621735, 34.963623 ], [ -114.566803, 34.828459 ], [ -114.484406, 34.652415 ], [ -114.353943, 34.464674 ], [ -114.165802, 34.271971 ], [ -114.469299, 34.067450 ], [ -114.547577, 33.608901 ], [ -114.742584, 33.379853 ], [ -114.691772, 33.203073 ], [ -114.656067, 33.053565 ], [ -114.478912, 32.916485 ], [ -114.590149, 32.715666 ], [ -114.721985, 32.716822 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -116.596527, 36.527295 ], [ -118.125000, 37.652296 ], [ -118.212891, 37.715331 ] ], [ [ -114.029846, 36.993778 ], [ -114.027100, 36.527295 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -116.596527, 36.527295 ], [ -118.125000, 37.652296 ], [ -118.212891, 37.715331 ] ], [ [ -114.029846, 36.993778 ], [ -112.412109, 37.009133 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.027740, 41.999305 ], [ -117.014008, 43.796872 ], [ -116.926117, 44.080680 ], [ -117.007141, 44.210757 ], [ -117.193909, 44.278638 ], [ -117.192535, 44.438683 ], [ -117.051086, 44.665723 ], [ -116.835480, 44.863656 ], [ -116.709137, 45.151053 ] ], [ [ -117.027740, 41.999305 ], [ -117.027740, 41.997263 ], [ -118.212891, 41.995222 ] ], [ [ -112.412109, 44.468091 ], [ -112.689514, 44.498464 ], [ -112.874908, 44.360188 ], [ -113.052063, 44.619799 ], [ -113.174286, 44.765262 ], [ -113.378906, 44.789633 ], [ -113.439331, 44.862683 ], [ -113.502502, 45.124898 ], [ -113.540955, 45.151053 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.027740, 41.999305 ], [ -117.014008, 43.796872 ], [ -116.926117, 44.080680 ], [ -117.007141, 44.210757 ], [ -117.193909, 44.278638 ], [ -117.192535, 44.438683 ], [ -117.051086, 44.665723 ], [ -116.835480, 44.863656 ], [ -116.709137, 45.151053 ] ], [ [ -114.033966, 41.993181 ], [ -112.412109, 41.997263 ] ], [ [ -117.027740, 41.999305 ], [ -114.033966, 41.993181 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -116.915131, 45.999824 ], [ -116.905518, 46.177929 ], [ -116.997528, 46.329862 ], [ -117.026367, 47.722697 ], [ -117.030487, 48.980217 ] ], [ [ -116.915131, 45.999824 ], [ -118.212891, 45.995054 ] ], [ [ -113.479156, 45.026950 ], [ -113.502502, 45.123929 ], [ -113.679657, 45.248788 ], [ -113.793640, 45.565025 ], [ -113.913116, 45.702343 ], [ -114.035339, 45.730150 ], [ -114.136963, 45.589056 ], [ -114.334717, 45.469762 ], [ -114.513245, 45.568871 ], [ -114.522858, 45.824971 ], [ -114.407501, 45.890008 ], [ -114.491272, 46.146540 ], [ -114.393768, 46.409458 ], [ -114.283905, 46.631522 ], [ -114.584656, 46.640951 ], [ -114.842834, 46.785956 ], [ -115.121613, 47.095370 ], [ -115.287781, 47.250339 ], [ -115.518494, 47.345337 ], [ -115.703888, 47.505142 ], [ -115.703888, 47.684806 ], [ -115.967560, 47.950386 ], [ -116.045837, 48.980217 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -116.915131, 45.999824 ], [ -116.905518, 46.177929 ], [ -116.997528, 46.329862 ], [ -117.026367, 47.722697 ], [ -117.030487, 48.980217 ] ], [ [ -116.915131, 45.999824 ], [ -118.212891, 45.995054 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 21 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.030487, 48.999141 ], [ -117.030487, 48.864715 ] ], [ [ -116.047211, 49.000042 ], [ -116.037598, 48.864715 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.030487, 48.999141 ], [ -117.030487, 48.922499 ], [ -117.030487, 48.864715 ] ] } } ] } ] } , @@ -267,13 +267,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 12, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.053925, 41.046217 ], [ -111.053925, 41.028607 ], [ -109.053040, 41.002703 ] ], [ [ -109.044800, 36.999262 ], [ -106.787109, 36.998166 ] ], [ [ -109.044800, 36.999262 ], [ -109.044800, 36.527295 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.053925, 41.046217 ], [ -111.053925, 41.028607 ], [ -109.053040, 41.002703 ] ], [ [ -109.044800, 36.999262 ], [ -110.496368, 37.006939 ], [ -112.500000, 37.009133 ], [ -112.587891, 37.008036 ] ], [ [ -109.044800, 36.999262 ], [ -109.044800, 36.527295 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 12, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.001346 ], [ -112.587891, 41.997263 ] ], [ [ -111.085510, 44.506300 ], [ -111.194000, 44.561120 ], [ -111.291504, 44.700874 ], [ -111.399994, 44.728199 ], [ -111.541443, 44.529801 ], [ -111.770782, 44.497485 ], [ -112.335205, 44.560142 ], [ -112.362671, 44.462211 ], [ -112.587891, 44.487689 ] ], [ [ -111.085510, 44.506300 ], [ -111.049805, 44.487689 ], [ -111.049805, 42.001346 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.001346 ], [ -112.587891, 41.997263 ] ], [ [ -111.049805, 42.001346 ], [ -111.053925, 41.027571 ], [ -109.053040, 41.001666 ] ] ] } } ] } ] } , @@ -297,19 +297,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.044647, 41.046217 ], [ -104.044647, 41.004775 ] ], [ [ -103.002319, 36.994875 ], [ -106.962891, 36.999262 ] ], [ [ -102.049255, 40.000268 ], [ -101.162109, 40.000268 ] ], [ [ -103.002319, 36.994875 ], [ -102.041016, 36.991585 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.044647, 41.046217 ], [ -104.044647, 41.004775 ] ], [ [ -103.002319, 36.994875 ], [ -103.002319, 36.527295 ] ], [ [ -103.002319, 36.994875 ], [ -102.041016, 36.991585 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.077606, 45.040537 ], [ -105.746155, 45.051210 ], [ -106.962891, 45.047330 ] ], [ [ -104.077606, 45.040537 ], [ -104.052887, 42.999625 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.077606, 45.040537 ], [ -105.746155, 45.051210 ], [ -106.962891, 45.047330 ] ], [ [ -104.052887, 42.999625 ], [ -104.044647, 41.003739 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.077606, 45.040537 ], [ -105.746155, 45.051210 ], [ -106.962891, 45.047330 ] ], [ [ -104.026794, 45.955924 ], [ -104.077606, 47.171044 ], [ -104.092712, 48.980217 ] ], [ [ -104.077606, 45.040537 ], [ -104.077606, 45.026950 ] ], [ [ -104.026794, 45.955924 ], [ -101.162109, 45.963561 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.077606, 45.040537 ], [ -105.746155, 45.051210 ], [ -106.962891, 45.047330 ] ], [ [ -104.026794, 45.955924 ], [ -104.077606, 47.171044 ], [ -104.092712, 48.980217 ] ] ] } } ] } ] } , @@ -327,19 +327,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 14, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.796661, 40.583714 ], [ -95.861206, 40.764941 ], [ -95.833740, 40.943602 ], [ -95.837860, 40.979898 ], [ -95.846100, 41.046217 ] ], [ [ -95.537109, 40.001320 ], [ -101.337891, 40.000268 ] ], [ [ -95.796661, 40.583714 ], [ -95.776062, 40.501269 ], [ -95.625000, 40.359103 ], [ -95.537109, 40.284764 ] ], [ [ -95.796661, 40.583714 ], [ -95.537109, 40.583714 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.796661, 40.583714 ], [ -95.861206, 40.764941 ], [ -95.833740, 40.943602 ], [ -95.837860, 40.979898 ], [ -95.846100, 41.046217 ] ], [ [ -95.796661, 40.583714 ], [ -95.776062, 40.501269 ], [ -95.625000, 40.359103 ], [ -95.537109, 40.284764 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 14, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.451721, 43.501749 ], [ -96.439362, 44.435741 ], [ -96.529999, 45.151053 ] ], [ [ -96.454468, 42.488302 ], [ -96.410522, 42.388980 ], [ -96.345978, 42.224450 ], [ -96.348724, 42.142023 ], [ -96.167450, 41.953363 ], [ -96.104279, 41.787697 ], [ -96.096039, 41.555866 ], [ -96.024628, 41.524001 ], [ -95.958710, 41.404626 ], [ -95.855713, 41.115573 ], [ -95.837860, 40.979898 ], [ -95.833740, 40.943602 ], [ -95.837860, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.451721, 43.501749 ], [ -96.439362, 44.435741 ], [ -96.529999, 45.151053 ] ], [ [ -96.451721, 43.501749 ], [ -96.586304, 43.500752 ], [ -96.586304, 43.257206 ], [ -96.458588, 43.124041 ], [ -96.483307, 43.015693 ], [ -96.535492, 42.855833 ], [ -96.615143, 42.691521 ], [ -96.453094, 42.580388 ], [ -96.454468, 42.488302 ], [ -96.410522, 42.388980 ], [ -96.345978, 42.224450 ], [ -96.348724, 42.142023 ], [ -96.167450, 41.953363 ], [ -96.104279, 41.787697 ], [ -96.096039, 41.555866 ], [ -96.024628, 41.524001 ], [ -95.958710, 41.404626 ], [ -95.855713, 41.115573 ], [ -95.837860, 40.979898 ], [ -95.833740, 40.943602 ], [ -95.837860, 40.913513 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 14, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.539612, 46.017946 ], [ -96.538239, 46.198844 ], [ -96.601410, 46.350719 ], [ -96.685181, 46.513516 ], [ -96.733246, 46.716327 ], [ -96.745605, 46.944637 ], [ -96.779938, 46.998988 ], [ -96.819763, 47.292271 ], [ -96.823883, 47.426229 ], [ -96.844482, 47.545945 ], [ -96.893921, 47.748558 ], [ -97.014771, 47.954065 ], [ -97.130127, 48.136767 ], [ -97.147980, 48.318821 ], [ -97.160339, 48.514785 ], [ -97.127380, 48.641984 ], [ -97.120514, 48.757999 ], [ -97.213898, 48.902643 ], [ -97.216644, 48.922499 ], [ -97.226257, 48.980217 ] ], [ [ -96.539612, 46.017946 ], [ -98.441620, 45.963561 ], [ -100.066223, 45.965470 ], [ -101.337891, 45.962606 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -96.539612, 46.017946 ], [ -96.538239, 46.198844 ], [ -96.601410, 46.350719 ], [ -96.685181, 46.513516 ], [ -96.733246, 46.716327 ], [ -96.745605, 46.944637 ], [ -96.779938, 46.998988 ], [ -96.819763, 47.292271 ], [ -96.823883, 47.426229 ], [ -96.844482, 47.545945 ], [ -96.893921, 47.748558 ], [ -97.014771, 47.954065 ], [ -97.130127, 48.136767 ], [ -97.147980, 48.318821 ], [ -97.160339, 48.514785 ], [ -97.127380, 48.641984 ], [ -97.120514, 48.757999 ], [ -97.213898, 48.902643 ], [ -97.216644, 48.922499 ], [ -97.226257, 48.980217 ] ] } } ] } ] } , @@ -357,49 +357,49 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -94.479675, 33.635203 ], [ -94.909515, 33.831638 ], [ -95.189667, 33.937663 ], [ -95.417633, 33.870416 ], [ -95.712891, 33.879537 ] ], [ [ -94.479675, 33.635203 ], [ -94.427490, 33.570005 ], [ -94.232483, 33.583735 ], [ -94.001770, 33.579159 ], [ -94.059448, 33.012118 ] ], [ [ -94.627991, 36.540536 ], [ -93.412628, 36.526191 ], [ -91.251068, 36.522881 ], [ -90.111237, 36.461054 ], [ -90.028839, 36.337253 ], [ -90.254059, 36.122346 ], [ -90.314484, 36.022447 ], [ -89.912109, 36.022447 ] ], [ [ -91.156311, 33.009815 ], [ -91.084900, 32.952216 ], [ -91.175537, 32.808053 ], [ -91.029968, 32.602362 ], [ -91.071167, 32.478488 ], [ -90.942078, 32.306867 ], [ -91.080780, 32.204667 ], [ -91.127472, 32.015063 ], [ -91.207123, 31.952162 ], [ -91.299133, 31.877558 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -94.479675, 33.635203 ], [ -94.909515, 33.831638 ], [ -95.189667, 33.937663 ], [ -95.417633, 33.870416 ], [ -95.712891, 33.879537 ] ], [ [ -94.627991, 36.540536 ], [ -94.625244, 36.668419 ] ], [ [ -94.479675, 33.635203 ], [ -94.427490, 33.570005 ], [ -94.232483, 33.583735 ], [ -94.001770, 33.579159 ], [ -94.059448, 33.012118 ] ], [ [ -90.248566, 35.021000 ], [ -89.912109, 35.021000 ] ], [ [ -91.156311, 33.009815 ], [ -91.084900, 32.952216 ], [ -91.175537, 32.808053 ], [ -91.029968, 32.602362 ], [ -91.071167, 32.478488 ], [ -90.942078, 32.306867 ], [ -91.080780, 32.204667 ], [ -91.127472, 32.015063 ], [ -91.207123, 31.952162 ], [ -91.299133, 31.877558 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.429596, 40.368520 ], [ -91.410370, 40.551374 ], [ -91.153564, 40.699381 ], [ -91.087646, 40.851216 ], [ -90.955811, 41.025499 ], [ -90.962677, 41.046217 ] ], [ [ -95.322876, 40.001320 ], [ -95.712891, 40.001320 ] ], [ [ -95.322876, 40.001320 ], [ -95.451965, 40.214538 ], [ -95.607147, 40.343404 ], [ -95.625000, 40.359103 ], [ -95.712891, 40.441721 ] ], [ [ -91.429596, 40.368520 ], [ -91.566925, 40.452172 ], [ -91.757812, 40.613952 ], [ -92.850952, 40.592057 ], [ -94.001770, 40.584757 ], [ -95.712891, 40.583714 ] ], [ [ -94.627991, 36.540536 ], [ -93.506012, 36.527295 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.429596, 40.368520 ], [ -91.410370, 40.551374 ], [ -91.153564, 40.699381 ], [ -91.087646, 40.851216 ], [ -90.955811, 41.025499 ], [ -90.962677, 41.046217 ] ], [ [ -95.322876, 40.001320 ], [ -95.451965, 40.214538 ], [ -95.607147, 40.343404 ], [ -95.625000, 40.359103 ], [ -95.712891, 40.441721 ] ], [ [ -94.622498, 36.999262 ], [ -94.617004, 36.999262 ], [ -94.627991, 36.540536 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.227722, 43.500752 ], [ -92.539215, 43.519676 ], [ -94.000397, 43.512705 ], [ -95.359955, 43.499756 ], [ -95.712891, 43.500752 ] ], [ [ -91.227722, 43.500752 ], [ -91.253815, 43.614205 ], [ -91.256561, 43.854336 ], [ -91.289520, 43.937462 ], [ -91.627350, 44.085612 ], [ -91.878662, 44.257003 ], [ -91.950073, 44.364115 ], [ -92.061310, 44.432799 ], [ -92.385406, 44.574817 ], [ -92.504883, 44.583621 ], [ -92.796021, 44.775986 ], [ -92.765808, 44.995883 ], [ -92.765808, 45.151053 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.227722, 43.500752 ], [ -92.539215, 43.519676 ], [ -94.000397, 43.512705 ], [ -95.359955, 43.499756 ], [ -95.712891, 43.500752 ] ], [ [ -91.227722, 43.500752 ], [ -91.213989, 43.446937 ], [ -91.083527, 43.288202 ], [ -91.172791, 43.212182 ], [ -91.170044, 43.001634 ], [ -91.128845, 42.912183 ], [ -91.064301, 42.754071 ], [ -90.737457, 42.658202 ], [ -90.639954, 42.505515 ], [ -89.912109, 42.505515 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -92.011871, 46.711619 ], [ -92.274170, 46.656035 ], [ -92.264557, 46.095138 ], [ -92.296143, 46.096091 ], [ -92.756195, 45.890008 ], [ -92.899017, 45.705220 ], [ -92.688904, 45.517895 ], [ -92.764435, 45.267155 ], [ -92.765808, 45.026950 ] ], [ [ -90.396881, 46.575855 ], [ -90.335083, 46.596619 ], [ -90.333710, 46.593788 ], [ -90.175781, 46.560749 ], [ -90.096130, 46.381044 ], [ -90.000000, 46.361145 ], [ -89.912109, 46.343136 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -92.011871, 46.711619 ], [ -92.274170, 46.656035 ], [ -92.264557, 46.095138 ], [ -92.296143, 46.096091 ], [ -92.756195, 45.890008 ], [ -92.899017, 45.705220 ], [ -92.688904, 45.517895 ], [ -92.764435, 45.267155 ], [ -92.765808, 45.089036 ], [ -92.765808, 45.026950 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.604492, 30.175999 ], [ -89.622345, 30.274486 ], [ -89.658051, 30.440386 ], [ -89.789886, 30.556348 ], [ -89.853058, 30.682802 ], [ -89.787140, 30.846826 ], [ -89.758301, 31.012925 ], [ -90.087891, 31.014102 ] ], [ [ -87.529449, 30.274486 ], [ -87.458038, 30.410782 ], [ -87.404480, 30.608368 ], [ -87.632446, 30.851542 ], [ -87.617340, 30.926967 ], [ -87.044678, 30.984673 ], [ -85.005341, 30.990560 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -89.604492, 30.175999 ], [ -89.622345, 30.274486 ], [ -89.658051, 30.440386 ], [ -89.789886, 30.556348 ], [ -89.853058, 30.682802 ], [ -89.787140, 30.846826 ], [ -89.758301, 31.012925 ], [ -90.000000, 31.014102 ], [ -90.087891, 31.014102 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.087891, 36.425703 ], [ -90.028839, 36.337253 ], [ -90.087891, 36.281921 ] ], [ [ -90.087891, 36.022447 ], [ -89.662170, 36.022447 ] ], [ [ -89.497375, 36.506325 ], [ -89.523468, 36.409126 ], [ -89.585266, 36.266421 ], [ -89.662170, 36.022447 ] ], [ [ -88.166656, 34.999629 ], [ -86.908722, 34.998504 ], [ -85.624695, 34.986128 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.087891, 36.425703 ], [ -90.028839, 36.337253 ], [ -90.087891, 36.281921 ] ], [ [ -90.087891, 36.022447 ], [ -89.662170, 36.022447 ] ], [ [ -88.166656, 34.999629 ], [ -89.263916, 35.021000 ], [ -90.087891, 35.021000 ] ], [ [ -89.497375, 36.506325 ], [ -88.069153, 36.496390 ], [ -88.071899, 36.655200 ], [ -87.874146, 36.656301 ], [ -87.841187, 36.611118 ], [ -87.216339, 36.639774 ], [ -86.091614, 36.626550 ], [ -85.518951, 36.597889 ], [ -85.230560, 36.610016 ], [ -84.375000, 36.568115 ], [ -84.350281, 36.567012 ], [ -84.287109, 36.570321 ] ], [ [ -89.497375, 36.506325 ], [ -89.303741, 36.597889 ], [ -89.165039, 36.668419 ] ], [ [ -88.166656, 34.999629 ], [ -86.908722, 34.998504 ], [ -85.624695, 34.986128 ] ], [ [ -84.287109, 35.201867 ], [ -84.298096, 35.198500 ], [ -84.320068, 34.986128 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -84.822693, 39.106620 ], [ -84.808960, 41.046217 ] ], [ [ -88.051300, 37.819548 ], [ -88.018341, 38.021050 ], [ -87.878265, 38.289937 ], [ -87.670898, 38.508415 ], [ -87.598114, 38.673717 ], [ -87.514343, 38.734804 ], [ -87.506104, 38.869652 ], [ -87.559662, 39.040520 ], [ -87.642059, 39.114079 ], [ -87.528076, 39.391632 ], [ -87.526703, 41.046217 ] ], [ [ -89.103241, 36.952087 ], [ -89.141693, 37.103384 ], [ -89.073029, 37.199706 ], [ -88.807983, 37.146087 ], [ -88.566284, 37.054081 ], [ -88.434448, 37.136235 ], [ -88.472900, 37.354876 ], [ -88.247681, 37.437793 ], [ -88.071899, 37.510815 ], [ -88.157043, 37.605528 ], [ -88.044434, 37.744657 ], [ -88.051300, 37.819548 ], [ -87.920837, 37.793508 ], [ -87.911224, 37.904116 ], [ -87.653046, 37.826057 ], [ -87.438812, 37.935533 ], [ -87.131195, 37.783740 ], [ -87.055664, 37.880273 ], [ -86.824951, 37.975598 ], [ -86.609344, 37.858591 ], [ -86.499481, 37.969102 ], [ -86.325073, 38.169114 ], [ -86.261902, 38.045928 ], [ -86.060028, 37.960441 ], [ -85.838928, 38.258671 ], [ -85.697479, 38.289937 ], [ -85.565643, 38.462192 ], [ -85.425568, 38.535276 ], [ -85.403595, 38.727305 ], [ -85.167389, 38.690869 ], [ -85.010834, 38.778711 ], [ -84.843292, 38.780852 ], [ -84.799347, 38.854681 ], [ -84.880371, 39.058650 ], [ -84.822693, 39.106620 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -84.822693, 39.106620 ], [ -84.808960, 41.046217 ] ], [ [ -88.051300, 37.819548 ], [ -88.018341, 38.021050 ], [ -87.878265, 38.289937 ], [ -87.670898, 38.508415 ], [ -87.598114, 38.673717 ], [ -87.514343, 38.734804 ], [ -87.506104, 38.869652 ], [ -87.559662, 39.040520 ], [ -87.642059, 39.114079 ], [ -87.528076, 39.391632 ], [ -87.526703, 41.046217 ] ], [ [ -88.070526, 36.527295 ], [ -88.071899, 36.597889 ], [ -88.071899, 36.654098 ], [ -87.874146, 36.656301 ], [ -87.841187, 36.611118 ], [ -87.216339, 36.638672 ], [ -86.091614, 36.625448 ], [ -85.518951, 36.597889 ], [ -85.230560, 36.610016 ], [ -84.350281, 36.567012 ], [ -84.287109, 36.570321 ] ], [ [ -88.051300, 37.819548 ], [ -87.920837, 37.793508 ], [ -87.911224, 37.904116 ], [ -87.653046, 37.826057 ], [ -87.438812, 37.935533 ], [ -87.131195, 37.783740 ], [ -87.055664, 37.880273 ], [ -86.824951, 37.975598 ], [ -86.609344, 37.858591 ], [ -86.499481, 37.969102 ], [ -86.325073, 38.169114 ], [ -86.261902, 38.045928 ], [ -86.060028, 37.960441 ], [ -85.838928, 38.258671 ], [ -85.697479, 38.289937 ], [ -85.565643, 38.462192 ], [ -85.425568, 38.535276 ], [ -85.403595, 38.727305 ], [ -85.167389, 38.690869 ], [ -85.010834, 38.778711 ], [ -84.843292, 38.780852 ], [ -84.799347, 38.854681 ], [ -84.880371, 39.058650 ], [ -84.822693, 39.106620 ] ], [ [ -89.103241, 36.952087 ], [ -89.133453, 36.851054 ], [ -89.114227, 36.694851 ], [ -89.303741, 36.597889 ], [ -89.453430, 36.527295 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -87.661285, 45.151053 ], [ -87.613220, 45.109393 ], [ -87.598114, 45.106485 ] ], [ [ -84.806213, 41.677015 ], [ -84.808960, 40.913513 ] ], [ [ -87.521210, 41.707779 ], [ -87.525330, 41.707779 ], [ -87.526703, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -87.661285, 45.151053 ], [ -87.613220, 45.109393 ], [ -87.598114, 45.106485 ] ], [ [ -87.806854, 42.494378 ], [ -88.575897, 42.503490 ], [ -90.087891, 42.505515 ] ], [ [ -86.823578, 41.761069 ], [ -86.823578, 41.755947 ], [ -85.748291, 41.750824 ], [ -84.807587, 41.755947 ], [ -84.806213, 41.677015 ] ], [ [ -87.521210, 41.707779 ], [ -87.525330, 41.707779 ], [ -87.526703, 40.913513 ] ] ] } } ] } ] } , @@ -417,43 +417,43 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.673248, 36.600094 ], [ -84.350281, 36.567012 ], [ -84.375000, 36.568115 ], [ -84.462891, 36.572527 ] ], [ [ -81.679230, 36.585760 ], [ -82.185974, 36.565909 ], [ -83.577118, 36.597889 ], [ -83.673248, 36.600094 ] ], [ [ -81.679230, 36.585760 ], [ -79.991455, 36.541640 ], [ -78.662109, 36.539433 ] ], [ [ -83.075867, 34.978252 ], [ -82.975616, 35.008628 ], [ -82.435913, 35.179421 ], [ -81.514435, 35.171563 ], [ -81.046143, 35.125525 ], [ -81.037903, 35.036743 ], [ -80.937653, 35.103058 ], [ -80.781097, 34.933230 ], [ -80.783844, 34.817186 ], [ -79.672852, 34.807038 ], [ -78.662109, 33.953613 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.673248, 36.600094 ], [ -84.350281, 36.567012 ], [ -84.375000, 36.568115 ], [ -84.462891, 36.572527 ] ], [ [ -83.673248, 36.600094 ], [ -83.383484, 36.656301 ], [ -83.343658, 36.668419 ] ], [ [ -84.320068, 34.986128 ], [ -84.298096, 35.198500 ], [ -84.086609, 35.261319 ], [ -84.017944, 35.368895 ], [ -83.875122, 35.489747 ], [ -83.673248, 35.516579 ], [ -83.438416, 35.562395 ], [ -83.209076, 35.648369 ], [ -83.110199, 35.737595 ], [ -82.919312, 35.816700 ], [ -82.924805, 35.889050 ], [ -82.673492, 36.024668 ], [ -82.592468, 35.936876 ], [ -82.223053, 36.125674 ], [ -82.051392, 36.105705 ], [ -81.897583, 36.274172 ], [ -81.692963, 36.317338 ], [ -81.703949, 36.459950 ], [ -81.679230, 36.585760 ], [ -79.991455, 36.541640 ], [ -78.662109, 36.539433 ] ], [ [ -83.075867, 34.978252 ], [ -83.185730, 34.896069 ], [ -83.346405, 34.706622 ], [ -83.075867, 34.540500 ], [ -82.902832, 34.479392 ], [ -82.716064, 34.162954 ], [ -82.596588, 33.985502 ], [ -82.249146, 33.748322 ], [ -82.180481, 33.623768 ], [ -81.942902, 33.461234 ], [ -81.826172, 33.222605 ], [ -81.507568, 33.021330 ], [ -81.436157, 32.793047 ], [ -81.375732, 32.682152 ], [ -81.411438, 32.608146 ], [ -81.224670, 32.499338 ], [ -81.125793, 32.311509 ], [ -81.127167, 32.120964 ], [ -81.036530, 32.083738 ], [ -80.864868, 32.032527 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.673248, 36.600094 ], [ -84.350281, 36.567012 ], [ -84.462891, 36.572527 ] ], [ [ -83.673248, 36.600094 ], [ -83.577118, 36.597889 ], [ -82.185974, 36.565909 ], [ -81.679230, 36.585760 ] ], [ [ -80.518799, 40.641051 ], [ -80.517426, 41.046217 ] ], [ [ -82.588348, 38.414862 ], [ -82.341156, 38.440682 ], [ -82.210693, 38.579306 ], [ -82.194214, 38.801189 ], [ -82.054138, 39.018117 ], [ -81.918182, 38.993572 ], [ -81.905823, 38.881412 ], [ -81.816559, 38.922024 ], [ -81.784973, 39.019184 ], [ -81.745148, 39.199270 ], [ -81.521301, 39.371464 ], [ -81.400452, 39.349166 ], [ -81.265869, 39.376772 ], [ -81.150513, 39.425586 ], [ -80.878601, 39.654341 ], [ -80.862122, 39.756824 ], [ -80.764618, 39.972911 ], [ -80.661621, 40.233412 ], [ -80.614929, 40.463666 ], [ -80.657501, 40.591014 ], [ -80.518799, 40.641051 ] ], [ [ -81.679230, 36.585760 ], [ -79.991455, 36.541640 ], [ -78.662109, 36.539433 ] ], [ [ -79.477844, 39.720920 ], [ -79.486084, 39.213103 ], [ -79.332275, 39.302425 ], [ -79.160614, 39.418160 ], [ -78.962860, 39.457403 ], [ -78.828278, 39.562294 ], [ -78.662109, 39.540058 ] ], [ [ -81.971741, 37.535866 ], [ -81.927795, 37.365791 ], [ -81.815186, 37.275146 ], [ -81.662750, 37.195331 ], [ -81.348267, 37.315568 ], [ -81.227417, 37.245635 ], [ -80.855255, 37.328673 ], [ -80.833282, 37.418163 ], [ -80.719299, 37.383253 ], [ -80.595703, 37.456328 ], [ -80.457001, 37.441064 ], [ -80.297699, 37.518440 ], [ -80.275726, 37.609880 ], [ -80.292206, 37.727280 ], [ -80.157623, 37.900865 ], [ -79.963989, 38.031867 ], [ -79.914551, 38.178830 ], [ -79.742889, 38.356734 ], [ -79.648132, 38.573938 ], [ -79.514923, 38.497668 ], [ -79.366608, 38.425622 ], [ -79.222412, 38.464342 ], [ -79.174347, 38.555683 ], [ -78.965607, 38.821521 ], [ -78.892822, 38.779781 ], [ -78.750000, 38.904927 ], [ -78.662109, 38.964748 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.673248, 36.600094 ], [ -84.350281, 36.567012 ], [ -84.462891, 36.572527 ] ], [ [ -83.673248, 36.600094 ], [ -83.383484, 36.656301 ], [ -83.177490, 36.717972 ], [ -83.088226, 36.815881 ], [ -82.814941, 36.934525 ], [ -82.709198, 37.039832 ], [ -82.684479, 37.120906 ], [ -82.372742, 37.237982 ], [ -81.971741, 37.535866 ] ], [ [ -80.518799, 40.641051 ], [ -80.517426, 41.046217 ] ], [ [ -81.679230, 36.585760 ], [ -81.691589, 36.527295 ] ], [ [ -81.679230, 36.585760 ], [ -79.991455, 36.541640 ], [ -78.662109, 36.539433 ] ], [ [ -79.477844, 39.720920 ], [ -79.486084, 39.213103 ], [ -79.332275, 39.302425 ], [ -79.160614, 39.418160 ], [ -78.962860, 39.457403 ], [ -78.828278, 39.562294 ], [ -78.662109, 39.540058 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.461761, 41.693424 ], [ -83.839417, 41.685220 ], [ -84.462891, 41.683169 ] ], [ [ -79.759369, 42.237669 ], [ -79.759369, 41.999305 ], [ -78.662109, 41.999305 ] ], [ [ -80.516052, 41.957448 ], [ -80.518799, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.461761, 41.693424 ], [ -83.839417, 41.685220 ], [ -84.462891, 41.683169 ] ], [ [ -80.516052, 41.957448 ], [ -80.518799, 40.913513 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -75.867462, 36.550466 ], [ -76.941376, 36.546053 ], [ -77.998810, 36.537226 ], [ -78.837891, 36.539433 ] ], [ [ -78.553619, 33.861293 ], [ -78.837891, 34.101571 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -75.867462, 36.550466 ], [ -76.941376, 36.546053 ], [ -77.998810, 36.537226 ], [ -78.750000, 36.539433 ], [ -78.837891, 36.539433 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -73.911896, 40.960197 ], [ -74.079437, 41.046217 ] ], [ [ -73.674316, 41.046217 ], [ -73.656464, 40.985082 ] ], [ [ -75.867462, 36.550466 ], [ -76.941376, 36.546053 ], [ -77.998810, 36.537226 ], [ -78.837891, 36.539433 ] ], [ [ -77.722778, 39.322612 ], [ -77.801056, 39.449980 ], [ -77.923279, 39.592990 ], [ -78.232269, 39.672313 ], [ -78.424530, 39.596165 ], [ -78.533020, 39.522052 ], [ -78.750000, 39.551707 ], [ -78.829651, 39.562294 ], [ -78.837891, 39.555942 ] ], [ [ -77.722778, 39.322612 ], [ -77.834015, 39.134321 ], [ -78.344879, 39.405428 ], [ -78.424530, 39.138582 ], [ -78.548126, 39.039453 ], [ -78.750000, 38.904927 ], [ -78.837891, 38.827940 ] ], [ [ -77.040253, 38.789416 ], [ -77.059479, 38.708018 ], [ -77.229767, 38.613651 ], [ -77.342377, 38.391186 ], [ -77.210541, 38.337348 ], [ -77.047119, 38.380422 ], [ -76.989441, 38.239259 ] ], [ [ -75.404663, 39.794820 ], [ -75.200043, 39.886558 ], [ -75.128632, 39.949753 ], [ -74.891052, 40.081224 ], [ -74.763336, 40.190414 ], [ -75.077820, 40.449037 ], [ -75.095673, 40.555548 ], [ -75.204163, 40.586842 ], [ -75.198669, 40.747257 ], [ -75.081940, 40.869911 ], [ -75.135498, 41.000630 ], [ -75.051727, 41.046217 ] ], [ [ -75.404663, 39.794820 ], [ -75.554352, 39.691337 ], [ -75.526886, 39.498742 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -73.911896, 40.960197 ], [ -74.079437, 41.046217 ] ], [ [ -75.867462, 36.550466 ], [ -76.941376, 36.546053 ], [ -77.998810, 36.537226 ], [ -78.837891, 36.539433 ] ], [ [ -77.722778, 39.322612 ], [ -77.801056, 39.449980 ], [ -77.923279, 39.592990 ], [ -78.232269, 39.672313 ], [ -78.424530, 39.596165 ], [ -78.533020, 39.522052 ], [ -78.750000, 39.551707 ], [ -78.829651, 39.562294 ], [ -78.837891, 39.555942 ] ], [ [ -77.722778, 39.322612 ], [ -77.575836, 39.288608 ], [ -77.442627, 39.213103 ], [ -77.516785, 39.105554 ], [ -77.305298, 39.045853 ], [ -77.118530, 38.933776 ] ], [ [ -77.040253, 38.789416 ], [ -77.059479, 38.708018 ], [ -77.229767, 38.613651 ], [ -77.342377, 38.391186 ], [ -77.210541, 38.337348 ], [ -77.047119, 38.380422 ], [ -76.989441, 38.239259 ] ], [ [ -75.787811, 39.723032 ], [ -75.713654, 38.449287 ], [ -75.047607, 38.448211 ] ], [ [ -75.787811, 39.723032 ], [ -75.710907, 39.802206 ], [ -75.620270, 39.847558 ], [ -75.404663, 39.794820 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -74.678192, 41.355165 ], [ -74.840240, 41.426253 ], [ -75.010529, 41.495207 ], [ -75.075073, 41.641105 ], [ -75.048981, 41.750824 ], [ -75.167084, 41.841943 ], [ -75.385437, 41.998284 ], [ -76.743622, 42.000325 ], [ -78.837891, 41.999305 ] ], [ [ -73.281555, 42.742978 ], [ -73.037109, 42.738944 ] ], [ [ -73.497162, 42.054391 ], [ -73.553467, 41.289158 ], [ -73.475189, 41.204489 ], [ -73.692169, 41.107295 ], [ -73.656464, 40.985082 ] ], [ [ -74.678192, 41.355165 ], [ -74.800415, 41.310824 ], [ -74.976196, 41.087632 ], [ -75.135498, 40.999593 ], [ -75.127258, 40.979898 ], [ -75.099792, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -74.678192, 41.355165 ], [ -74.840240, 41.426253 ], [ -75.010529, 41.495207 ], [ -75.075073, 41.641105 ], [ -75.048981, 41.750824 ], [ -75.167084, 41.841943 ], [ -75.385437, 41.998284 ], [ -76.743622, 42.000325 ], [ -78.837891, 41.999305 ] ], [ [ -73.347473, 45.006564 ], [ -73.368073, 44.804250 ], [ -73.407898, 44.675489 ], [ -73.383179, 44.378840 ], [ -73.328247, 44.226504 ], [ -73.429871, 44.019484 ], [ -73.337860, 43.758201 ], [ -73.401031, 43.613211 ], [ -73.383179, 43.575417 ], [ -73.238983, 43.567457 ], [ -73.281555, 42.742978 ], [ -73.037109, 42.738944 ] ], [ [ -73.497162, 42.054391 ], [ -73.037109, 42.043174 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 19, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -72.456207, 42.726839 ], [ -73.212891, 42.741970 ] ], [ [ -70.644836, 43.089952 ], [ -70.815125, 42.864893 ] ], [ [ -71.801147, 42.012571 ], [ -71.792908, 41.466399 ], [ -71.853333, 41.320107 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -72.456207, 42.726839 ], [ -73.212891, 42.741970 ] ], [ [ -71.504517, 45.008506 ], [ -71.503143, 45.007535 ], [ -71.619873, 44.736003 ], [ -71.545715, 44.592423 ], [ -71.585541, 44.468091 ], [ -71.809387, 44.352332 ], [ -72.003021, 44.304196 ], [ -72.035980, 44.206819 ], [ -72.059326, 44.045154 ], [ -72.177429, 43.808765 ], [ -72.259827, 43.721490 ], [ -72.369690, 43.521668 ], [ -72.402649, 43.285203 ], [ -72.434235, 43.222190 ], [ -72.458954, 42.960443 ], [ -72.537231, 42.830660 ], [ -72.456207, 42.726839 ] ], [ [ -70.644836, 43.089952 ], [ -70.815125, 42.864893 ] ], [ [ -71.801147, 42.012571 ], [ -73.212891, 42.047253 ] ] ] } } ] } ] } , diff --git a/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json b/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json index 998a88e1a..f3c076419 100644 --- a/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json +++ b/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json @@ -9,7 +9,7 @@ "maxzoom": "7", "minzoom": "1", "name": "tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json.check.mbtiles", -"strategies": "[{},{\"dropped_by_rate\":109},{\"dropped_by_rate\":125},{\"dropped_by_rate\":139},{\"dropped_by_rate\":125},{\"dropped_by_rate\":121},{\"dropped_by_rate\":95},{}]", +"strategies": "[{},{\"dropped_by_rate\":109},{\"dropped_by_rate\":124},{\"dropped_by_rate\":138},{\"dropped_by_rate\":123},{\"dropped_by_rate\":119},{\"dropped_by_rate\":102},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -27,13 +27,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -91.406250, 43.500752 ], [ -91.230469, 43.500752 ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.406250, 43.500752 ], [ -91.230469, 43.500752 ] ], [ [ -79.475098, 39.724089 ], [ -79.475098, 39.215231 ], [ -79.321289, 39.300299 ], [ -79.167480, 39.419221 ], [ -78.969727, 39.453161 ], [ -78.837891, 39.554883 ], [ -78.530273, 39.520992 ], [ -78.420410, 39.588757 ], [ -78.222656, 39.673370 ], [ -77.915039, 39.588757 ], [ -77.805176, 39.453161 ], [ -77.717285, 39.317300 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 41.508577 ], [ -111.049805, 41.029643 ], [ -109.050293, 41.004775 ] ], [ [ -91.153564, 33.008663 ], [ -91.087646, 32.953368 ], [ -91.175537, 32.805745 ], [ -91.032715, 32.602362 ], [ -91.076660, 32.481963 ], [ -90.944824, 32.305706 ], [ -91.076660, 32.203505 ], [ -91.131592, 32.017392 ], [ -91.318359, 31.858897 ], [ -91.406250, 31.653381 ], [ -91.505127, 31.409912 ], [ -91.625977, 31.297328 ], [ -91.582031, 31.043522 ], [ -90.703125, 31.015279 ], [ -89.758301, 31.015279 ], [ -89.791260, 30.845647 ], [ -89.857178, 30.685164 ], [ -89.791260, 30.552800 ], [ -89.659424, 30.439202 ], [ -89.626465, 30.278044 ], [ -89.604492, 30.173625 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 41.508577 ], [ -111.049805, 41.029643 ], [ -109.050293, 41.004775 ] ], [ [ -109.050293, 37.002553 ], [ -109.039307, 31.344254 ] ], [ [ -89.296875, 36.597889 ], [ -89.494629, 36.509636 ] ] ] } } ] } ] } , @@ -45,7 +45,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.703125, 41.475660 ], [ -90.692139, 41.475660 ], [ -90.571289, 41.508577 ] ], [ [ -89.604492, 30.173625 ], [ -89.626465, 30.278044 ], [ -89.659424, 30.439202 ], [ -89.791260, 30.552800 ], [ -89.857178, 30.685164 ], [ -89.791260, 30.845647 ], [ -89.758301, 31.015279 ], [ -90.703125, 31.015279 ] ], [ [ -88.165283, 35.003003 ], [ -86.912842, 35.003003 ], [ -85.627441, 34.985003 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.703125, 41.475660 ], [ -90.692139, 41.475660 ], [ -90.571289, 41.508577 ] ], [ [ -89.099121, 36.949892 ], [ -89.132080, 36.853252 ], [ -89.110107, 36.694851 ], [ -89.274902, 36.615528 ], [ -89.494629, 36.509636 ] ], [ [ -79.475098, 39.724089 ], [ -79.486084, 39.215231 ], [ -79.332275, 39.300299 ], [ -79.156494, 39.419221 ], [ -78.958740, 39.461644 ], [ -78.826904, 39.563353 ], [ -78.530273, 39.520992 ], [ -78.420410, 39.597223 ], [ -78.233643, 39.673370 ], [ -77.926025, 39.588757 ], [ -77.805176, 39.453161 ], [ -77.717285, 39.325799 ] ] ] } } ] } ] } , @@ -57,7 +57,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -114.642334, 35.052484 ], [ -116.317749, 36.323977 ], [ -118.114014, 37.644685 ], [ -119.998169, 38.993572 ], [ -119.998169, 41.244772 ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.642334, 35.052484 ], [ -116.317749, 36.323977 ], [ -118.114014, 37.644685 ], [ -119.998169, 38.993572 ], [ -119.998169, 41.244772 ] ], [ [ -114.032593, 36.993778 ], [ -112.417603, 37.011326 ], [ -112.148438, 37.011326 ] ] ] } } ] } ] } , @@ -69,19 +69,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.055298, 41.244772 ], [ -111.055298, 41.029643 ], [ -109.050293, 41.000630 ] ], [ [ -109.044800, 36.998166 ], [ -107.479248, 36.998166 ], [ -105.897217, 36.998166 ], [ -104.199829, 36.993778 ], [ -103.002319, 36.993778 ] ], [ [ -91.153564, 33.008663 ], [ -91.082153, 32.953368 ], [ -91.175537, 32.810362 ], [ -91.032715, 32.602362 ], [ -91.071167, 32.477329 ], [ -90.944824, 32.305706 ], [ -91.082153, 32.203505 ], [ -91.126099, 32.017392 ], [ -91.318359, 31.858897 ], [ -91.411743, 31.648705 ], [ -91.499634, 31.409912 ], [ -91.625977, 31.297328 ], [ -91.582031, 31.048228 ], [ -90.703125, 31.015279 ], [ -89.758301, 31.015279 ], [ -89.785767, 30.845647 ], [ -89.851685, 30.685164 ], [ -89.791260, 30.557531 ], [ -89.659424, 30.439202 ], [ -89.648438, 30.391830 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.055298, 41.244772 ], [ -111.055298, 41.029643 ], [ -109.050293, 41.000630 ] ], [ [ -104.046021, 41.244772 ], [ -104.046021, 41.004775 ] ], [ [ -109.044800, 36.998166 ], [ -110.494995, 37.006939 ], [ -112.417603, 37.011326 ], [ -112.851562, 37.006939 ] ], [ [ -109.044800, 36.998166 ], [ -109.044800, 31.339563 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.000325 ], [ -112.851562, 41.996243 ] ], [ [ -104.024048, 45.954969 ], [ -102.117920, 45.962606 ], [ -100.068970, 45.966425 ], [ -98.442993, 45.962606 ], [ -96.536865, 46.016039 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.000325 ], [ -112.851562, 41.996243 ] ], [ [ -104.051514, 43.000630 ], [ -104.046021, 41.004775 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.664917, 36.022447 ], [ -90.313110, 36.022447 ], [ -90.252686, 36.120128 ], [ -90.142822, 36.230981 ], [ -90.027466, 36.337253 ], [ -90.109863, 36.461054 ], [ -90.351562, 36.474307 ] ], [ [ -89.604492, 30.178373 ], [ -89.620972, 30.273300 ], [ -89.659424, 30.439202 ], [ -89.791260, 30.557531 ], [ -89.851685, 30.685164 ], [ -89.785767, 30.845647 ], [ -89.758301, 31.015279 ], [ -90.351562, 31.015279 ] ], [ [ -88.165283, 34.998504 ], [ -86.907349, 34.998504 ], [ -85.627441, 34.985003 ] ], [ [ -87.528076, 30.273300 ], [ -87.456665, 30.410782 ], [ -87.407227, 30.609550 ], [ -87.632446, 30.850363 ], [ -87.615967, 30.925789 ], [ -87.044678, 30.982319 ], [ -85.006714, 30.991737 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.664917, 36.022447 ], [ -90.313110, 36.022447 ], [ -90.252686, 36.120128 ], [ -90.142822, 36.230981 ], [ -90.027466, 36.337253 ], [ -90.109863, 36.461054 ], [ -90.351562, 36.474307 ] ], [ [ -89.104614, 36.949892 ], [ -89.132080, 36.853252 ], [ -89.115601, 36.694851 ], [ -89.274902, 36.611118 ], [ -89.500122, 36.505221 ] ], [ [ -83.078613, 34.980502 ], [ -83.182983, 34.894942 ], [ -83.347778, 34.705493 ], [ -83.078613, 34.538238 ], [ -82.902832, 34.479392 ], [ -82.716064, 34.161818 ], [ -82.595215, 33.984364 ], [ -82.249146, 33.747180 ], [ -82.177734, 33.623768 ], [ -81.941528, 33.458943 ], [ -81.826172, 33.224903 ], [ -81.507568, 33.022482 ], [ -81.436157, 32.791892 ], [ -81.375732, 32.680996 ], [ -81.408691, 32.606989 ], [ -81.221924, 32.500496 ], [ -81.128540, 32.310349 ], [ -81.128540, 32.119801 ], [ -81.035156, 32.082575 ], [ -80.864868, 32.031363 ] ], [ [ -79.475098, 39.719863 ], [ -79.486084, 39.215231 ], [ -79.332275, 39.304550 ], [ -79.161987, 39.419221 ], [ -78.964233, 39.457403 ], [ -78.826904, 39.563353 ], [ -78.535767, 39.520992 ], [ -78.425903, 39.597223 ], [ -78.233643, 39.673370 ], [ -77.920532, 39.592990 ], [ -77.799683, 39.448919 ], [ -77.722778, 39.321550 ] ] ] } } ] } ] } , @@ -99,37 +99,37 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -114.642334, 35.052484 ], [ -116.320496, 36.321764 ], [ -118.114014, 37.644685 ], [ -120.000916, 38.995707 ], [ -119.998169, 41.112469 ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.642334, 35.052484 ], [ -116.320496, 36.321764 ], [ -118.114014, 37.644685 ], [ -120.000916, 38.995707 ], [ -119.998169, 41.112469 ] ], [ [ -114.029846, 36.993778 ], [ -112.417603, 37.009133 ], [ -112.324219, 37.009133 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -119.998169, 41.992160 ], [ -123.925781, 41.998284 ] ], [ [ -112.324219, 44.559163 ], [ -112.335205, 44.561120 ], [ -112.362671, 44.461231 ], [ -112.689514, 44.498464 ], [ -112.873535, 44.359206 ], [ -113.052063, 44.619799 ], [ -113.175659, 44.764287 ], [ -113.378906, 44.789633 ], [ -113.439331, 44.861710 ], [ -113.502502, 45.123929 ], [ -113.681030, 45.249755 ], [ -113.793640, 45.564064 ], [ -113.914490, 45.702343 ], [ -114.035339, 45.729191 ], [ -114.136963, 45.589056 ], [ -114.334717, 45.469762 ], [ -114.513245, 45.569832 ], [ -114.524231, 45.824971 ], [ -114.406128, 45.890008 ], [ -114.491272, 46.147492 ], [ -114.392395, 46.409458 ], [ -114.285278, 46.632465 ], [ -114.584656, 46.641894 ], [ -114.842834, 46.786897 ], [ -115.120239, 47.094435 ], [ -115.287781, 47.249407 ], [ -115.518494, 47.344406 ], [ -115.705261, 47.504214 ], [ -115.705261, 47.683881 ], [ -115.966187, 47.949466 ], [ -116.048584, 49.000042 ] ], [ [ -119.998169, 41.992160 ], [ -119.998169, 40.847060 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -119.998169, 41.992160 ], [ -123.925781, 41.998284 ] ], [ [ -117.029114, 42.000325 ], [ -114.032593, 41.992160 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.031860, 48.998240 ], [ -117.029114, 48.806863 ] ], [ [ -116.048584, 49.000042 ], [ -116.032104, 48.806863 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.031860, 48.998240 ], [ -117.029114, 48.806863 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -106.506958, 31.753861 ], [ -106.619568, 31.914868 ], [ -106.630554, 31.998759 ], [ -105.729675, 31.998759 ], [ -103.930664, 31.998759 ], [ -103.002319, 31.998759 ], [ -103.002319, 32.101190 ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -106.506958, 31.753861 ], [ -106.619568, 31.914868 ], [ -106.630554, 31.998759 ], [ -105.729675, 31.998759 ], [ -103.930664, 31.998759 ], [ -103.002319, 31.998759 ], [ -103.002319, 32.101190 ] ], [ [ -109.042053, 31.339563 ], [ -109.044800, 32.101190 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.055298, 41.112469 ], [ -111.055298, 41.027571 ], [ -109.053040, 41.002703 ] ], [ [ -109.044800, 37.000359 ], [ -107.479248, 37.000359 ], [ -105.899963, 36.995972 ], [ -104.199829, 36.995972 ], [ -103.002319, 36.995972 ], [ -102.041016, 36.991585 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.055298, 41.112469 ], [ -111.055298, 41.027571 ], [ -109.053040, 41.002703 ] ], [ [ -104.046021, 41.112469 ], [ -104.046021, 41.004775 ] ], [ [ -109.044800, 37.000359 ], [ -110.494995, 37.006939 ], [ -112.417603, 37.009133 ], [ -112.675781, 37.006939 ] ], [ [ -103.002319, 36.995972 ], [ -102.041016, 36.991585 ] ], [ [ -109.044800, 37.000359 ], [ -109.044800, 31.802893 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.000325 ], [ -112.675781, 41.996243 ] ], [ [ -111.085510, 44.506300 ], [ -111.192627, 44.561120 ], [ -111.291504, 44.701850 ], [ -111.398621, 44.729174 ], [ -111.541443, 44.529801 ], [ -111.772156, 44.498464 ], [ -112.335205, 44.561120 ], [ -112.362671, 44.461231 ], [ -112.675781, 44.496505 ] ], [ [ -104.026794, 45.956878 ], [ -104.076233, 47.171044 ], [ -104.092712, 49.005447 ] ], [ [ -104.026794, 45.956878 ], [ -102.115173, 45.960697 ], [ -101.074219, 45.962606 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.000325 ], [ -112.675781, 41.996243 ] ], [ [ -104.026794, 45.956878 ], [ -104.076233, 47.171044 ], [ -104.092712, 49.005447 ] ], [ [ -104.051514, 43.000630 ], [ -104.046021, 41.004775 ] ] ] } } ] } ] } , @@ -147,13 +147,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.795288, 40.582671 ], [ -95.861206, 40.763901 ], [ -95.833740, 40.942564 ], [ -95.855713, 41.112469 ] ], [ [ -95.795288, 40.582671 ], [ -94.897156, 40.582671 ], [ -94.001770, 40.584757 ], [ -92.850952, 40.593100 ], [ -91.757812, 40.613952 ], [ -91.568298, 40.451127 ], [ -91.430969, 40.367474 ] ], [ [ -91.156311, 33.008663 ], [ -91.084900, 32.953368 ], [ -91.175537, 32.808053 ], [ -91.029968, 32.602362 ], [ -91.071167, 32.477329 ], [ -90.942078, 32.305706 ], [ -91.082153, 32.203505 ], [ -91.128845, 32.015063 ], [ -91.321106, 31.858897 ], [ -91.345825, 31.802893 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.795288, 40.582671 ], [ -95.861206, 40.763901 ], [ -95.833740, 40.942564 ], [ -95.855713, 41.112469 ] ], [ [ -90.249939, 35.021000 ], [ -89.824219, 35.021000 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.539612, 46.017946 ], [ -96.539612, 46.198844 ], [ -96.600037, 46.350719 ], [ -96.685181, 46.513516 ], [ -96.734619, 46.715386 ], [ -96.745605, 46.944637 ], [ -96.778564, 46.998988 ], [ -96.819763, 47.292271 ], [ -96.825256, 47.426229 ], [ -96.844482, 47.546872 ], [ -96.893921, 47.748558 ], [ -97.014771, 47.953145 ], [ -97.130127, 48.136767 ], [ -97.149353, 48.317908 ], [ -97.160339, 48.514785 ], [ -97.127380, 48.641984 ], [ -97.119141, 48.757999 ], [ -97.212524, 48.902643 ], [ -97.229004, 49.001844 ] ], [ [ -96.539612, 46.017946 ], [ -98.440247, 45.962606 ], [ -100.066223, 45.964515 ], [ -101.425781, 45.962606 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.539612, 46.017946 ], [ -96.539612, 46.198844 ], [ -96.600037, 46.350719 ], [ -96.685181, 46.513516 ], [ -96.734619, 46.715386 ], [ -96.745605, 46.944637 ], [ -96.778564, 46.998988 ], [ -96.819763, 47.292271 ], [ -96.825256, 47.426229 ], [ -96.844482, 47.546872 ], [ -96.893921, 47.748558 ], [ -97.014771, 47.953145 ], [ -97.130127, 48.136767 ], [ -97.149353, 48.317908 ], [ -97.160339, 48.514785 ], [ -97.127380, 48.641984 ], [ -97.119141, 48.757999 ], [ -97.212524, 48.902643 ], [ -97.229004, 49.001844 ] ], [ [ -91.227722, 43.500752 ], [ -91.213989, 43.446937 ], [ -91.082153, 43.287203 ], [ -91.172791, 43.211182 ], [ -91.170044, 43.002639 ], [ -91.128845, 42.912183 ], [ -91.065674, 42.753063 ], [ -90.738831, 42.658202 ], [ -90.639954, 42.504503 ] ] ] } } ] } ] } , @@ -165,31 +165,31 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.604492, 30.175999 ], [ -89.623718, 30.275672 ], [ -89.659424, 30.441570 ], [ -89.791260, 30.557531 ], [ -89.854431, 30.682802 ], [ -89.788513, 30.848005 ], [ -89.758301, 31.012925 ], [ -90.175781, 31.015279 ] ], [ [ -87.530823, 30.273300 ], [ -87.456665, 30.410782 ], [ -87.404480, 30.607186 ], [ -87.632446, 30.850363 ], [ -87.615967, 30.928145 ], [ -87.044678, 30.984673 ], [ -85.003967, 30.989383 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.604492, 30.175999 ], [ -89.623718, 30.275672 ], [ -89.659424, 30.441570 ], [ -89.791260, 30.557531 ], [ -89.854431, 30.682802 ], [ -89.788513, 30.848005 ], [ -89.758301, 31.012925 ], [ -90.175781, 31.015279 ] ], [ [ -81.079102, 32.101190 ], [ -81.035156, 32.084902 ], [ -80.864868, 32.033692 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.175781, 36.465472 ], [ -90.112610, 36.461054 ], [ -90.030212, 36.337253 ], [ -90.142822, 36.230981 ], [ -90.175781, 36.197742 ] ], [ [ -90.175781, 36.022447 ], [ -89.662170, 36.022447 ] ], [ [ -84.822693, 39.106620 ], [ -84.817200, 39.800096 ], [ -84.808960, 40.772222 ], [ -84.808960, 41.112469 ] ], [ [ -88.049927, 37.818463 ], [ -87.920837, 37.792422 ], [ -87.909851, 37.903032 ], [ -87.654419, 37.827141 ], [ -87.440186, 37.935533 ], [ -87.129822, 37.783740 ], [ -87.055664, 37.881357 ], [ -86.824951, 37.976680 ], [ -86.610718, 37.857507 ], [ -86.498108, 37.970185 ], [ -86.325073, 38.169114 ], [ -86.261902, 38.045928 ], [ -86.058655, 37.961523 ], [ -85.838928, 38.257593 ], [ -85.698853, 38.289937 ], [ -85.567017, 38.462192 ], [ -85.424194, 38.535276 ], [ -85.404968, 38.726233 ], [ -85.166016, 38.689798 ], [ -85.012207, 38.779781 ], [ -84.841919, 38.779781 ], [ -84.800720, 38.854681 ], [ -84.880371, 39.059716 ], [ -84.822693, 39.106620 ] ], [ [ -88.165283, 34.998504 ], [ -86.910095, 34.998504 ], [ -85.624695, 34.985003 ] ], [ [ -80.518799, 40.641051 ], [ -80.518799, 41.112469 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.175781, 36.465472 ], [ -90.112610, 36.461054 ], [ -90.030212, 36.337253 ], [ -90.142822, 36.230981 ], [ -90.175781, 36.197742 ] ], [ [ -90.175781, 36.022447 ], [ -89.662170, 36.022447 ] ], [ [ -88.165283, 34.998504 ], [ -89.263916, 35.021000 ], [ -90.175781, 35.021000 ] ], [ [ -89.497375, 36.505221 ], [ -88.069153, 36.496390 ], [ -88.071899, 36.655200 ], [ -87.874146, 36.655200 ], [ -87.841187, 36.611118 ], [ -87.214966, 36.639774 ], [ -86.676636, 36.633162 ], [ -86.091614, 36.626550 ], [ -85.517578, 36.597889 ], [ -85.231934, 36.608914 ], [ -84.350281, 36.567012 ], [ -83.671875, 36.600094 ] ], [ [ -89.101868, 36.952087 ], [ -89.134827, 36.851054 ], [ -89.115601, 36.694851 ], [ -89.274902, 36.611118 ], [ -89.497375, 36.505221 ] ], [ [ -80.518799, 40.641051 ], [ -80.518799, 41.112469 ] ], [ [ -83.075867, 34.978252 ], [ -83.185730, 34.894942 ], [ -83.345032, 34.705493 ], [ -83.075867, 34.540500 ], [ -82.902832, 34.479392 ], [ -82.716064, 34.161818 ], [ -82.597961, 33.984364 ], [ -82.249146, 33.749464 ], [ -82.180481, 33.623768 ], [ -81.944275, 33.461234 ], [ -81.826172, 33.222605 ], [ -81.507568, 33.022482 ], [ -81.436157, 32.791892 ], [ -81.375732, 32.683308 ], [ -81.411438, 32.609303 ], [ -81.224670, 32.498180 ], [ -81.125793, 32.312670 ], [ -81.128540, 32.122127 ], [ -81.035156, 32.084902 ], [ -80.864868, 32.033692 ] ], [ [ -79.477844, 39.719863 ], [ -79.486084, 39.213103 ], [ -79.332275, 39.302425 ], [ -79.161987, 39.417099 ], [ -78.961487, 39.457403 ], [ -78.829651, 39.563353 ], [ -78.574219, 39.527348 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.175781, 42.120636 ], [ -90.156555, 42.104336 ], [ -90.175781, 42.006448 ] ], [ [ -84.806213, 41.677015 ], [ -84.808960, 40.847060 ] ], [ [ -80.516052, 41.957448 ], [ -80.518799, 40.847060 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.175781, 42.120636 ], [ -90.156555, 42.104336 ], [ -90.175781, 42.006448 ] ], [ [ -86.824951, 41.761069 ], [ -86.824951, 41.754922 ], [ -85.748291, 41.750824 ], [ -84.806213, 41.754922 ], [ -84.806213, 41.677015 ] ], [ [ -80.516052, 41.957448 ], [ -80.518799, 40.847060 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -73.913269, 40.959160 ], [ -74.207153, 41.112469 ] ], [ [ -77.041626, 38.788345 ], [ -77.058105, 38.709089 ], [ -77.228394, 38.614724 ], [ -77.343750, 38.391186 ], [ -77.209167, 38.337348 ], [ -77.047119, 38.380422 ], [ -76.989441, 38.240337 ] ], [ [ -75.404663, 39.795876 ], [ -75.552979, 39.690281 ], [ -75.528259, 39.497683 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -73.913269, 40.959160 ], [ -74.207153, 41.112469 ] ], [ [ -77.722778, 39.321550 ], [ -77.802429, 39.448919 ], [ -77.923279, 39.592990 ], [ -78.230896, 39.671256 ], [ -78.425903, 39.597223 ], [ -78.533020, 39.523111 ], [ -78.829651, 39.563353 ], [ -78.925781, 39.487085 ] ], [ [ -75.786438, 39.724089 ], [ -75.709534, 39.802206 ], [ -75.621643, 39.846504 ], [ -75.404663, 39.795876 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -74.679565, 41.356196 ], [ -74.838867, 41.426253 ], [ -75.009155, 41.496235 ], [ -75.075073, 41.640078 ], [ -75.047607, 41.750824 ], [ -75.168457, 41.840920 ], [ -75.385437, 41.998284 ], [ -76.742249, 42.000325 ], [ -78.200684, 42.000325 ], [ -78.925781, 42.000325 ] ], [ [ -73.281555, 42.742978 ], [ -72.457581, 42.726839 ] ], [ [ -71.801147, 42.012571 ], [ -71.792908, 41.465370 ], [ -71.853333, 41.319076 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -74.679565, 41.356196 ], [ -74.838867, 41.426253 ], [ -75.009155, 41.496235 ], [ -75.075073, 41.640078 ], [ -75.047607, 41.750824 ], [ -75.168457, 41.840920 ], [ -75.385437, 41.998284 ], [ -76.742249, 42.000325 ], [ -78.200684, 42.000325 ], [ -78.925781, 42.000325 ] ], [ [ -73.281555, 42.742978 ], [ -72.457581, 42.726839 ] ], [ [ -73.498535, 42.053372 ], [ -72.732239, 42.035014 ], [ -71.801147, 42.012571 ] ] ] } } ] } ] } , @@ -213,7 +213,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -119.998169, 41.992160 ], [ -123.837891, 41.998284 ] ], [ [ -119.998169, 41.992160 ], [ -118.037109, 41.995222 ] ], [ [ -119.998169, 41.992160 ], [ -119.999542, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -119.998169, 41.992160 ], [ -123.837891, 41.998284 ] ], [ [ -119.998169, 41.992160 ], [ -119.999542, 40.913513 ] ] ] } } ] } ] } , @@ -225,31 +225,31 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.642334, 35.052484 ], [ -116.320496, 36.321764 ], [ -116.787415, 36.668419 ] ], [ [ -114.642334, 35.052484 ], [ -114.580536, 35.248984 ], [ -114.629974, 35.445009 ], [ -114.650574, 35.638325 ], [ -114.649200, 35.853440 ], [ -114.739838, 35.991341 ], [ -114.671173, 36.114581 ], [ -114.461060, 36.114581 ], [ -114.268799, 36.043547 ], [ -114.132843, 36.003563 ], [ -114.065552, 36.155618 ], [ -114.022980, 36.189984 ], [ -114.027100, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.642334, 35.052484 ], [ -116.320496, 36.321764 ], [ -116.787415, 36.668419 ] ], [ [ -114.642334, 35.052484 ], [ -114.621735, 34.963623 ], [ -114.566803, 34.828459 ], [ -114.484406, 34.652415 ], [ -114.353943, 34.464674 ], [ -114.165802, 34.271971 ], [ -114.469299, 34.067450 ], [ -114.547577, 33.608901 ], [ -114.742584, 33.379853 ], [ -114.691772, 33.203073 ], [ -114.656067, 33.053565 ], [ -114.478912, 32.916485 ], [ -114.590149, 32.715666 ], [ -114.721985, 32.716822 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -116.596527, 36.527295 ], [ -118.114014, 37.644685 ], [ -118.212891, 37.715331 ] ], [ [ -114.029846, 36.993778 ], [ -114.027100, 36.527295 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -116.596527, 36.527295 ], [ -118.114014, 37.644685 ], [ -118.212891, 37.715331 ] ], [ [ -114.029846, 36.993778 ], [ -112.417603, 37.009133 ], [ -112.412109, 37.009133 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.027740, 41.999305 ], [ -117.014008, 43.796872 ], [ -116.926117, 44.080680 ], [ -117.007141, 44.210757 ], [ -117.193909, 44.278638 ], [ -117.192535, 44.438683 ], [ -117.051086, 44.665723 ], [ -116.835480, 44.863656 ], [ -116.709137, 45.151053 ] ], [ [ -117.027740, 41.999305 ], [ -117.027740, 41.997263 ], [ -118.212891, 41.995222 ] ], [ [ -112.412109, 44.468091 ], [ -112.689514, 44.498464 ], [ -112.874908, 44.360188 ], [ -113.052063, 44.619799 ], [ -113.174286, 44.765262 ], [ -113.378906, 44.789633 ], [ -113.439331, 44.862683 ], [ -113.502502, 45.124898 ], [ -113.540955, 45.151053 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.027740, 41.999305 ], [ -117.014008, 43.796872 ], [ -116.926117, 44.080680 ], [ -117.007141, 44.210757 ], [ -117.193909, 44.278638 ], [ -117.192535, 44.438683 ], [ -117.051086, 44.665723 ], [ -116.835480, 44.863656 ], [ -116.709137, 45.151053 ] ], [ [ -114.033966, 41.993181 ], [ -112.412109, 41.997263 ] ], [ [ -117.027740, 41.999305 ], [ -114.033966, 41.993181 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -116.915131, 45.999824 ], [ -116.905518, 46.177929 ], [ -116.997528, 46.329862 ], [ -117.026367, 47.722697 ], [ -117.030487, 48.980217 ] ], [ [ -116.915131, 45.999824 ], [ -118.212891, 45.995054 ] ], [ [ -113.479156, 45.026950 ], [ -113.502502, 45.123929 ], [ -113.679657, 45.248788 ], [ -113.793640, 45.565025 ], [ -113.913116, 45.702343 ], [ -114.035339, 45.730150 ], [ -114.136963, 45.589056 ], [ -114.334717, 45.469762 ], [ -114.513245, 45.568871 ], [ -114.522858, 45.824971 ], [ -114.407501, 45.890008 ], [ -114.491272, 46.146540 ], [ -114.393768, 46.409458 ], [ -114.283905, 46.631522 ], [ -114.584656, 46.640951 ], [ -114.842834, 46.785956 ], [ -115.121613, 47.095370 ], [ -115.287781, 47.250339 ], [ -115.518494, 47.345337 ], [ -115.703888, 47.505142 ], [ -115.703888, 47.684806 ], [ -115.967560, 47.950386 ], [ -116.045837, 48.980217 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -116.915131, 45.999824 ], [ -116.905518, 46.177929 ], [ -116.997528, 46.329862 ], [ -117.026367, 47.722697 ], [ -117.030487, 48.980217 ] ], [ [ -116.915131, 45.999824 ], [ -118.212891, 45.995054 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 21 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.030487, 48.999141 ], [ -117.030487, 48.864715 ] ], [ [ -116.047211, 49.000042 ], [ -116.037598, 48.864715 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.030487, 48.999141 ], [ -117.030487, 48.864715 ] ] } } ] } ] } , @@ -267,13 +267,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 12, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.053925, 41.046217 ], [ -111.053925, 41.028607 ], [ -109.053040, 41.002703 ] ], [ [ -109.044800, 36.999262 ], [ -107.479248, 36.999262 ], [ -106.787109, 36.998166 ] ], [ [ -109.044800, 36.999262 ], [ -109.044800, 36.527295 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.053925, 41.046217 ], [ -111.053925, 41.028607 ], [ -109.053040, 41.002703 ] ], [ [ -109.044800, 36.999262 ], [ -110.496368, 37.006939 ], [ -112.417603, 37.009133 ], [ -112.587891, 37.008036 ] ], [ [ -109.044800, 36.999262 ], [ -109.044800, 36.527295 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 12, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.001346 ], [ -112.587891, 41.997263 ] ], [ [ -111.085510, 44.506300 ], [ -111.194000, 44.561120 ], [ -111.291504, 44.700874 ], [ -111.399994, 44.728199 ], [ -111.541443, 44.529801 ], [ -111.770782, 44.497485 ], [ -112.335205, 44.560142 ], [ -112.362671, 44.462211 ], [ -112.587891, 44.487689 ] ], [ [ -111.085510, 44.506300 ], [ -111.049805, 44.487689 ], [ -111.049805, 42.001346 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.001346 ], [ -112.587891, 41.997263 ] ], [ [ -111.049805, 42.001346 ], [ -111.053925, 41.027571 ], [ -109.053040, 41.001666 ] ] ] } } ] } ] } , @@ -297,19 +297,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.044647, 41.046217 ], [ -104.044647, 41.004775 ] ], [ [ -103.002319, 36.994875 ], [ -104.199829, 36.995972 ], [ -105.899963, 36.997069 ], [ -106.962891, 36.999262 ] ], [ [ -102.049255, 40.000268 ], [ -102.047882, 40.000268 ], [ -101.162109, 40.000268 ] ], [ [ -103.002319, 36.994875 ], [ -102.041016, 36.991585 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.044647, 41.046217 ], [ -104.044647, 41.004775 ] ], [ [ -103.002319, 36.994875 ], [ -103.002319, 36.527295 ] ], [ [ -103.002319, 36.994875 ], [ -102.041016, 36.991585 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.077606, 45.040537 ], [ -105.746155, 45.051210 ], [ -106.962891, 45.047330 ] ], [ [ -104.077606, 45.040537 ], [ -104.052887, 42.999625 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.077606, 45.040537 ], [ -105.746155, 45.051210 ], [ -106.962891, 45.047330 ] ], [ [ -104.052887, 42.999625 ], [ -104.044647, 41.003739 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.077606, 45.040537 ], [ -105.746155, 45.051210 ], [ -106.962891, 45.047330 ] ], [ [ -104.026794, 45.955924 ], [ -104.077606, 47.171044 ], [ -104.092712, 48.980217 ] ], [ [ -104.077606, 45.040537 ], [ -104.077606, 45.026950 ] ], [ [ -104.026794, 45.955924 ], [ -102.116547, 45.960697 ], [ -101.162109, 45.963561 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.077606, 45.040537 ], [ -105.746155, 45.051210 ], [ -106.962891, 45.047330 ] ], [ [ -104.026794, 45.955924 ], [ -104.077606, 47.171044 ], [ -104.092712, 48.980217 ] ] ] } } ] } ] } , @@ -327,19 +327,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 14, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.796661, 40.583714 ], [ -95.861206, 40.764941 ], [ -95.833740, 40.943602 ], [ -95.846100, 41.046217 ] ], [ [ -95.537109, 40.001320 ], [ -96.698914, 40.001320 ], [ -98.999176, 40.000268 ], [ -100.299683, 40.000268 ], [ -101.337891, 40.000268 ] ], [ [ -95.796661, 40.583714 ], [ -95.776062, 40.501269 ], [ -95.607147, 40.343404 ], [ -95.537109, 40.284764 ] ], [ [ -95.796661, 40.583714 ], [ -95.537109, 40.583714 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.796661, 40.583714 ], [ -95.861206, 40.764941 ], [ -95.833740, 40.943602 ], [ -95.846100, 41.046217 ] ], [ [ -95.796661, 40.583714 ], [ -95.776062, 40.501269 ], [ -95.607147, 40.343404 ], [ -95.537109, 40.284764 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 14, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.451721, 43.501749 ], [ -96.439362, 44.435741 ], [ -96.529999, 45.151053 ] ], [ [ -96.454468, 42.488302 ], [ -96.410522, 42.388980 ], [ -96.345978, 42.224450 ], [ -96.348724, 42.142023 ], [ -96.167450, 41.953363 ], [ -96.104279, 41.787697 ], [ -96.096039, 41.555866 ], [ -96.024628, 41.524001 ], [ -95.958710, 41.404626 ], [ -95.855713, 41.115573 ], [ -95.833740, 40.943602 ], [ -95.837860, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.451721, 43.501749 ], [ -96.439362, 44.435741 ], [ -96.529999, 45.151053 ] ], [ [ -96.451721, 43.501749 ], [ -96.586304, 43.500752 ], [ -96.586304, 43.257206 ], [ -96.458588, 43.124041 ], [ -96.483307, 43.015693 ], [ -96.535492, 42.855833 ], [ -96.615143, 42.691521 ], [ -96.453094, 42.580388 ], [ -96.454468, 42.488302 ], [ -96.410522, 42.388980 ], [ -96.345978, 42.224450 ], [ -96.348724, 42.142023 ], [ -96.167450, 41.953363 ], [ -96.104279, 41.787697 ], [ -96.096039, 41.555866 ], [ -96.024628, 41.524001 ], [ -95.958710, 41.404626 ], [ -95.855713, 41.115573 ], [ -95.833740, 40.943602 ], [ -95.837860, 40.913513 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 14, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.539612, 46.017946 ], [ -96.538239, 46.198844 ], [ -96.601410, 46.350719 ], [ -96.685181, 46.513516 ], [ -96.733246, 46.716327 ], [ -96.745605, 46.944637 ], [ -96.779938, 46.998988 ], [ -96.819763, 47.292271 ], [ -96.823883, 47.426229 ], [ -96.844482, 47.545945 ], [ -96.893921, 47.748558 ], [ -97.014771, 47.954065 ], [ -97.130127, 48.136767 ], [ -97.147980, 48.318821 ], [ -97.160339, 48.514785 ], [ -97.127380, 48.641984 ], [ -97.120514, 48.757999 ], [ -97.213898, 48.902643 ], [ -97.226257, 48.980217 ] ], [ [ -96.539612, 46.017946 ], [ -98.441620, 45.963561 ], [ -100.066223, 45.965470 ], [ -101.337891, 45.962606 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -96.539612, 46.017946 ], [ -96.538239, 46.198844 ], [ -96.601410, 46.350719 ], [ -96.685181, 46.513516 ], [ -96.733246, 46.716327 ], [ -96.745605, 46.944637 ], [ -96.779938, 46.998988 ], [ -96.819763, 47.292271 ], [ -96.823883, 47.426229 ], [ -96.844482, 47.545945 ], [ -96.893921, 47.748558 ], [ -97.014771, 47.954065 ], [ -97.130127, 48.136767 ], [ -97.147980, 48.318821 ], [ -97.160339, 48.514785 ], [ -97.127380, 48.641984 ], [ -97.120514, 48.757999 ], [ -97.213898, 48.902643 ], [ -97.226257, 48.980217 ] ] } } ] } ] } , @@ -357,49 +357,49 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -94.479675, 33.635203 ], [ -94.909515, 33.831638 ], [ -95.189667, 33.937663 ], [ -95.417633, 33.870416 ], [ -95.712891, 33.879537 ] ], [ [ -94.479675, 33.635203 ], [ -94.427490, 33.570005 ], [ -94.232483, 33.583735 ], [ -94.001770, 33.579159 ], [ -94.059448, 33.012118 ] ], [ [ -94.627991, 36.540536 ], [ -93.412628, 36.526191 ], [ -92.307129, 36.522881 ], [ -91.251068, 36.522881 ], [ -90.111237, 36.461054 ], [ -90.028839, 36.337253 ], [ -90.141449, 36.229874 ], [ -90.254059, 36.122346 ], [ -90.314484, 36.022447 ], [ -89.912109, 36.022447 ] ], [ [ -91.156311, 33.009815 ], [ -91.084900, 32.952216 ], [ -91.175537, 32.808053 ], [ -91.029968, 32.602362 ], [ -91.071167, 32.478488 ], [ -90.942078, 32.306867 ], [ -91.080780, 32.204667 ], [ -91.127472, 32.015063 ], [ -91.299133, 31.877558 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -94.479675, 33.635203 ], [ -94.909515, 33.831638 ], [ -95.189667, 33.937663 ], [ -95.417633, 33.870416 ], [ -95.712891, 33.879537 ] ], [ [ -94.627991, 36.540536 ], [ -94.625244, 36.668419 ] ], [ [ -94.479675, 33.635203 ], [ -94.427490, 33.570005 ], [ -94.232483, 33.583735 ], [ -94.001770, 33.579159 ], [ -94.059448, 33.012118 ] ], [ [ -90.248566, 35.021000 ], [ -89.912109, 35.021000 ] ], [ [ -91.156311, 33.009815 ], [ -91.084900, 32.952216 ], [ -91.175537, 32.808053 ], [ -91.029968, 32.602362 ], [ -91.071167, 32.478488 ], [ -90.942078, 32.306867 ], [ -91.080780, 32.204667 ], [ -91.127472, 32.015063 ], [ -91.299133, 31.877558 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.429596, 40.368520 ], [ -91.410370, 40.551374 ], [ -91.153564, 40.699381 ], [ -91.087646, 40.851216 ], [ -90.955811, 41.025499 ], [ -90.962677, 41.046217 ] ], [ [ -95.322876, 40.001320 ], [ -95.712891, 40.001320 ] ], [ [ -95.322876, 40.001320 ], [ -95.451965, 40.214538 ], [ -95.607147, 40.343404 ], [ -95.712891, 40.441721 ] ], [ [ -91.429596, 40.368520 ], [ -91.566925, 40.452172 ], [ -91.757812, 40.613952 ], [ -92.850952, 40.592057 ], [ -94.001770, 40.584757 ], [ -94.898529, 40.582671 ], [ -95.712891, 40.583714 ] ], [ [ -94.627991, 36.540536 ], [ -93.506012, 36.527295 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.429596, 40.368520 ], [ -91.410370, 40.551374 ], [ -91.153564, 40.699381 ], [ -91.087646, 40.851216 ], [ -90.955811, 41.025499 ], [ -90.962677, 41.046217 ] ], [ [ -95.322876, 40.001320 ], [ -95.451965, 40.214538 ], [ -95.607147, 40.343404 ], [ -95.712891, 40.441721 ] ], [ [ -94.622498, 36.999262 ], [ -94.617004, 36.999262 ], [ -94.627991, 36.540536 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.227722, 43.500752 ], [ -92.539215, 43.519676 ], [ -94.000397, 43.512705 ], [ -95.359955, 43.499756 ], [ -95.712891, 43.500752 ] ], [ [ -91.227722, 43.500752 ], [ -91.253815, 43.614205 ], [ -91.256561, 43.854336 ], [ -91.289520, 43.937462 ], [ -91.627350, 44.085612 ], [ -91.878662, 44.257003 ], [ -91.950073, 44.364115 ], [ -92.061310, 44.432799 ], [ -92.385406, 44.574817 ], [ -92.504883, 44.583621 ], [ -92.796021, 44.775986 ], [ -92.765808, 44.995883 ], [ -92.765808, 45.151053 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.227722, 43.500752 ], [ -92.539215, 43.519676 ], [ -94.000397, 43.512705 ], [ -95.359955, 43.499756 ], [ -95.712891, 43.500752 ] ], [ [ -91.227722, 43.500752 ], [ -91.213989, 43.446937 ], [ -91.083527, 43.288202 ], [ -91.172791, 43.212182 ], [ -91.170044, 43.001634 ], [ -91.128845, 42.912183 ], [ -91.064301, 42.754071 ], [ -90.737457, 42.658202 ], [ -90.639954, 42.505515 ], [ -89.912109, 42.505515 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -92.011871, 46.711619 ], [ -92.274170, 46.656035 ], [ -92.264557, 46.095138 ], [ -92.296143, 46.096091 ], [ -92.543335, 45.985512 ], [ -92.756195, 45.890008 ], [ -92.899017, 45.705220 ], [ -92.688904, 45.517895 ], [ -92.764435, 45.267155 ], [ -92.765808, 45.026950 ] ], [ [ -90.396881, 46.575855 ], [ -90.335083, 46.596619 ], [ -90.333710, 46.593788 ], [ -90.175781, 46.560749 ], [ -90.096130, 46.381044 ], [ -89.912109, 46.343136 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -92.011871, 46.711619 ], [ -92.274170, 46.656035 ], [ -92.264557, 46.095138 ], [ -92.296143, 46.096091 ], [ -92.543335, 45.985512 ], [ -92.756195, 45.890008 ], [ -92.899017, 45.705220 ], [ -92.688904, 45.517895 ], [ -92.764435, 45.267155 ], [ -92.765808, 45.026950 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.604492, 30.175999 ], [ -89.622345, 30.274486 ], [ -89.658051, 30.440386 ], [ -89.789886, 30.556348 ], [ -89.853058, 30.682802 ], [ -89.787140, 30.846826 ], [ -89.758301, 31.012925 ], [ -90.087891, 31.014102 ] ], [ [ -87.529449, 30.274486 ], [ -87.458038, 30.410782 ], [ -87.404480, 30.608368 ], [ -87.632446, 30.851542 ], [ -87.617340, 30.926967 ], [ -87.044678, 30.984673 ], [ -85.005341, 30.990560 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -89.604492, 30.175999 ], [ -89.622345, 30.274486 ], [ -89.658051, 30.440386 ], [ -89.789886, 30.556348 ], [ -89.853058, 30.682802 ], [ -89.787140, 30.846826 ], [ -89.758301, 31.012925 ], [ -90.087891, 31.014102 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.087891, 36.425703 ], [ -90.028839, 36.337253 ], [ -90.087891, 36.281921 ] ], [ [ -90.087891, 36.022447 ], [ -89.662170, 36.022447 ] ], [ [ -89.497375, 36.506325 ], [ -89.523468, 36.409126 ], [ -89.585266, 36.266421 ], [ -89.662170, 36.022447 ] ], [ [ -88.166656, 34.999629 ], [ -86.908722, 34.998504 ], [ -85.624695, 34.986128 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.087891, 36.425703 ], [ -90.028839, 36.337253 ], [ -90.087891, 36.281921 ] ], [ [ -90.087891, 36.022447 ], [ -89.662170, 36.022447 ] ], [ [ -88.166656, 34.999629 ], [ -89.263916, 35.021000 ], [ -90.087891, 35.021000 ] ], [ [ -89.497375, 36.506325 ], [ -88.069153, 36.496390 ], [ -88.071899, 36.655200 ], [ -87.874146, 36.656301 ], [ -87.841187, 36.611118 ], [ -87.216339, 36.639774 ], [ -86.678009, 36.634264 ], [ -86.091614, 36.626550 ], [ -85.518951, 36.597889 ], [ -85.230560, 36.610016 ], [ -84.350281, 36.567012 ], [ -84.287109, 36.570321 ] ], [ [ -89.497375, 36.506325 ], [ -89.273529, 36.612221 ], [ -89.165039, 36.668419 ] ], [ [ -88.166656, 34.999629 ], [ -86.908722, 34.998504 ], [ -85.624695, 34.986128 ] ], [ [ -84.287109, 35.201867 ], [ -84.298096, 35.198500 ], [ -84.320068, 34.986128 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -84.822693, 39.106620 ], [ -84.817200, 39.799041 ], [ -84.808960, 40.772222 ], [ -84.808960, 41.046217 ] ], [ [ -88.051300, 37.819548 ], [ -88.018341, 38.021050 ], [ -87.878265, 38.289937 ], [ -87.670898, 38.508415 ], [ -87.598114, 38.673717 ], [ -87.514343, 38.734804 ], [ -87.506104, 38.869652 ], [ -87.559662, 39.040520 ], [ -87.642059, 39.114079 ], [ -87.528076, 39.391632 ], [ -87.526703, 40.550331 ], [ -87.526703, 41.046217 ] ], [ [ -89.103241, 36.952087 ], [ -89.141693, 37.103384 ], [ -89.073029, 37.199706 ], [ -88.807983, 37.146087 ], [ -88.566284, 37.054081 ], [ -88.434448, 37.136235 ], [ -88.472900, 37.354876 ], [ -88.247681, 37.437793 ], [ -88.071899, 37.510815 ], [ -88.157043, 37.605528 ], [ -88.044434, 37.744657 ], [ -88.051300, 37.819548 ], [ -87.920837, 37.793508 ], [ -87.911224, 37.904116 ], [ -87.653046, 37.826057 ], [ -87.438812, 37.935533 ], [ -87.131195, 37.783740 ], [ -87.055664, 37.880273 ], [ -86.824951, 37.975598 ], [ -86.609344, 37.858591 ], [ -86.499481, 37.969102 ], [ -86.325073, 38.169114 ], [ -86.261902, 38.045928 ], [ -86.060028, 37.960441 ], [ -85.838928, 38.258671 ], [ -85.697479, 38.289937 ], [ -85.565643, 38.462192 ], [ -85.425568, 38.535276 ], [ -85.403595, 38.727305 ], [ -85.167389, 38.690869 ], [ -85.010834, 38.778711 ], [ -84.843292, 38.780852 ], [ -84.799347, 38.854681 ], [ -84.880371, 39.058650 ], [ -84.822693, 39.106620 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -84.822693, 39.106620 ], [ -84.817200, 39.799041 ], [ -84.808960, 40.772222 ], [ -84.808960, 41.046217 ] ], [ [ -88.051300, 37.819548 ], [ -88.018341, 38.021050 ], [ -87.878265, 38.289937 ], [ -87.670898, 38.508415 ], [ -87.598114, 38.673717 ], [ -87.514343, 38.734804 ], [ -87.506104, 38.869652 ], [ -87.559662, 39.040520 ], [ -87.642059, 39.114079 ], [ -87.528076, 39.391632 ], [ -87.526703, 40.550331 ], [ -87.526703, 41.046217 ] ], [ [ -88.070526, 36.527295 ], [ -88.071899, 36.654098 ], [ -87.874146, 36.656301 ], [ -87.841187, 36.611118 ], [ -87.216339, 36.638672 ], [ -86.678009, 36.633162 ], [ -86.091614, 36.625448 ], [ -85.518951, 36.597889 ], [ -85.230560, 36.610016 ], [ -84.350281, 36.567012 ], [ -84.287109, 36.570321 ] ], [ [ -88.051300, 37.819548 ], [ -87.920837, 37.793508 ], [ -87.911224, 37.904116 ], [ -87.653046, 37.826057 ], [ -87.438812, 37.935533 ], [ -87.131195, 37.783740 ], [ -87.055664, 37.880273 ], [ -86.824951, 37.975598 ], [ -86.609344, 37.858591 ], [ -86.499481, 37.969102 ], [ -86.325073, 38.169114 ], [ -86.261902, 38.045928 ], [ -86.060028, 37.960441 ], [ -85.838928, 38.258671 ], [ -85.697479, 38.289937 ], [ -85.565643, 38.462192 ], [ -85.425568, 38.535276 ], [ -85.403595, 38.727305 ], [ -85.167389, 38.690869 ], [ -85.010834, 38.778711 ], [ -84.843292, 38.780852 ], [ -84.799347, 38.854681 ], [ -84.880371, 39.058650 ], [ -84.822693, 39.106620 ] ], [ [ -89.103241, 36.952087 ], [ -89.133453, 36.851054 ], [ -89.114227, 36.694851 ], [ -89.273529, 36.611118 ], [ -89.453430, 36.527295 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -87.661285, 45.151053 ], [ -87.613220, 45.109393 ], [ -87.613220, 45.110362 ], [ -87.598114, 45.106485 ] ], [ [ -84.806213, 41.677015 ], [ -84.808960, 40.913513 ] ], [ [ -87.521210, 41.707779 ], [ -87.525330, 41.707779 ], [ -87.526703, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -87.661285, 45.151053 ], [ -87.613220, 45.109393 ], [ -87.613220, 45.110362 ], [ -87.598114, 45.106485 ] ], [ [ -87.806854, 42.494378 ], [ -88.575897, 42.503490 ], [ -89.619598, 42.505515 ], [ -90.087891, 42.505515 ] ], [ [ -86.823578, 41.761069 ], [ -86.823578, 41.755947 ], [ -85.748291, 41.750824 ], [ -84.807587, 41.755947 ], [ -84.806213, 41.677015 ] ], [ [ -87.521210, 41.707779 ], [ -87.525330, 41.707779 ], [ -87.526703, 40.913513 ] ] ] } } ] } ] } , @@ -417,43 +417,43 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.673248, 36.600094 ], [ -84.350281, 36.567012 ], [ -84.462891, 36.572527 ] ], [ [ -81.679230, 36.585760 ], [ -82.185974, 36.565909 ], [ -83.673248, 36.600094 ] ], [ [ -81.679230, 36.585760 ], [ -79.991455, 36.541640 ], [ -78.662109, 36.539433 ] ], [ [ -83.075867, 34.978252 ], [ -82.975616, 35.008628 ], [ -82.435913, 35.179421 ], [ -81.514435, 35.171563 ], [ -81.046143, 35.125525 ], [ -81.037903, 35.036743 ], [ -80.937653, 35.103058 ], [ -80.781097, 34.933230 ], [ -80.783844, 34.817186 ], [ -79.672852, 34.807038 ], [ -78.662109, 33.953613 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.673248, 36.600094 ], [ -84.350281, 36.567012 ], [ -84.462891, 36.572527 ] ], [ [ -83.673248, 36.600094 ], [ -83.383484, 36.656301 ], [ -83.343658, 36.668419 ] ], [ [ -84.320068, 34.986128 ], [ -84.298096, 35.198500 ], [ -84.086609, 35.261319 ], [ -84.017944, 35.368895 ], [ -83.875122, 35.489747 ], [ -83.673248, 35.516579 ], [ -83.438416, 35.562395 ], [ -83.209076, 35.648369 ], [ -83.110199, 35.737595 ], [ -82.919312, 35.816700 ], [ -82.924805, 35.889050 ], [ -82.673492, 36.024668 ], [ -82.592468, 35.936876 ], [ -82.223053, 36.125674 ], [ -82.051392, 36.105705 ], [ -81.897583, 36.274172 ], [ -81.692963, 36.317338 ], [ -81.703949, 36.459950 ], [ -81.679230, 36.585760 ], [ -79.991455, 36.541640 ], [ -78.662109, 36.539433 ] ], [ [ -83.075867, 34.978252 ], [ -83.185730, 34.896069 ], [ -83.346405, 34.706622 ], [ -83.075867, 34.540500 ], [ -82.902832, 34.479392 ], [ -82.716064, 34.162954 ], [ -82.596588, 33.985502 ], [ -82.249146, 33.748322 ], [ -82.180481, 33.623768 ], [ -81.942902, 33.461234 ], [ -81.826172, 33.222605 ], [ -81.507568, 33.021330 ], [ -81.436157, 32.793047 ], [ -81.375732, 32.682152 ], [ -81.411438, 32.608146 ], [ -81.224670, 32.499338 ], [ -81.125793, 32.311509 ], [ -81.127167, 32.120964 ], [ -81.036530, 32.083738 ], [ -80.864868, 32.032527 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.673248, 36.600094 ], [ -84.350281, 36.567012 ], [ -84.462891, 36.572527 ] ], [ [ -83.673248, 36.600094 ], [ -82.185974, 36.565909 ], [ -81.679230, 36.585760 ] ], [ [ -80.518799, 40.641051 ], [ -80.517426, 41.046217 ] ], [ [ -82.588348, 38.414862 ], [ -82.341156, 38.440682 ], [ -82.210693, 38.579306 ], [ -82.194214, 38.801189 ], [ -82.054138, 39.018117 ], [ -81.918182, 38.993572 ], [ -81.905823, 38.881412 ], [ -81.816559, 38.922024 ], [ -81.784973, 39.019184 ], [ -81.745148, 39.199270 ], [ -81.521301, 39.371464 ], [ -81.400452, 39.349166 ], [ -81.265869, 39.376772 ], [ -81.150513, 39.425586 ], [ -80.878601, 39.654341 ], [ -80.862122, 39.756824 ], [ -80.764618, 39.972911 ], [ -80.661621, 40.233412 ], [ -80.614929, 40.463666 ], [ -80.657501, 40.591014 ], [ -80.518799, 40.641051 ] ], [ [ -81.679230, 36.585760 ], [ -79.991455, 36.541640 ], [ -78.662109, 36.539433 ] ], [ [ -79.477844, 39.720920 ], [ -79.486084, 39.213103 ], [ -79.332275, 39.302425 ], [ -79.160614, 39.418160 ], [ -78.962860, 39.457403 ], [ -78.828278, 39.562294 ], [ -78.662109, 39.540058 ] ], [ [ -81.971741, 37.535866 ], [ -81.927795, 37.365791 ], [ -81.815186, 37.275146 ], [ -81.662750, 37.195331 ], [ -81.348267, 37.315568 ], [ -81.227417, 37.245635 ], [ -80.855255, 37.328673 ], [ -80.833282, 37.418163 ], [ -80.719299, 37.383253 ], [ -80.595703, 37.456328 ], [ -80.457001, 37.441064 ], [ -80.297699, 37.518440 ], [ -80.275726, 37.609880 ], [ -80.292206, 37.727280 ], [ -80.157623, 37.900865 ], [ -79.963989, 38.031867 ], [ -79.914551, 38.178830 ], [ -79.742889, 38.356734 ], [ -79.648132, 38.573938 ], [ -79.514923, 38.497668 ], [ -79.366608, 38.425622 ], [ -79.222412, 38.464342 ], [ -79.174347, 38.555683 ], [ -79.075470, 38.680150 ], [ -78.965607, 38.821521 ], [ -78.892822, 38.779781 ], [ -78.744507, 38.909202 ], [ -78.662109, 38.964748 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.673248, 36.600094 ], [ -84.350281, 36.567012 ], [ -84.462891, 36.572527 ] ], [ [ -83.673248, 36.600094 ], [ -83.383484, 36.656301 ], [ -83.177490, 36.717972 ], [ -83.088226, 36.815881 ], [ -82.814941, 36.934525 ], [ -82.709198, 37.039832 ], [ -82.684479, 37.120906 ], [ -82.372742, 37.237982 ], [ -81.971741, 37.535866 ] ], [ [ -80.518799, 40.641051 ], [ -80.517426, 41.046217 ] ], [ [ -81.679230, 36.585760 ], [ -81.691589, 36.527295 ] ], [ [ -81.679230, 36.585760 ], [ -79.991455, 36.541640 ], [ -78.662109, 36.539433 ] ], [ [ -79.477844, 39.720920 ], [ -79.486084, 39.213103 ], [ -79.332275, 39.302425 ], [ -79.160614, 39.418160 ], [ -78.962860, 39.457403 ], [ -78.828278, 39.562294 ], [ -78.662109, 39.540058 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.461761, 41.693424 ], [ -83.839417, 41.685220 ], [ -84.295349, 41.685220 ], [ -84.462891, 41.683169 ] ], [ [ -79.759369, 42.237669 ], [ -79.759369, 41.999305 ], [ -78.662109, 41.999305 ] ], [ [ -80.516052, 41.957448 ], [ -80.518799, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.461761, 41.693424 ], [ -83.839417, 41.685220 ], [ -84.295349, 41.685220 ], [ -84.462891, 41.683169 ] ], [ [ -80.516052, 41.957448 ], [ -80.518799, 40.913513 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -75.867462, 36.550466 ], [ -76.941376, 36.546053 ], [ -77.998810, 36.537226 ], [ -78.837891, 36.539433 ] ], [ [ -78.553619, 33.861293 ], [ -78.837891, 34.101571 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -75.867462, 36.550466 ], [ -76.941376, 36.546053 ], [ -77.998810, 36.537226 ], [ -78.837891, 36.539433 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -73.911896, 40.960197 ], [ -74.079437, 41.046217 ] ], [ [ -73.674316, 41.046217 ], [ -73.656464, 40.985082 ] ], [ [ -75.867462, 36.550466 ], [ -76.941376, 36.546053 ], [ -77.998810, 36.537226 ], [ -78.837891, 36.539433 ] ], [ [ -77.722778, 39.322612 ], [ -77.801056, 39.449980 ], [ -77.923279, 39.592990 ], [ -78.232269, 39.672313 ], [ -78.424530, 39.596165 ], [ -78.533020, 39.522052 ], [ -78.829651, 39.562294 ], [ -78.837891, 39.555942 ] ], [ [ -77.722778, 39.322612 ], [ -77.834015, 39.134321 ], [ -78.344879, 39.405428 ], [ -78.424530, 39.138582 ], [ -78.548126, 39.039453 ], [ -78.744507, 38.909202 ], [ -78.837891, 38.827940 ] ], [ [ -77.040253, 38.789416 ], [ -77.059479, 38.708018 ], [ -77.229767, 38.613651 ], [ -77.342377, 38.391186 ], [ -77.210541, 38.337348 ], [ -77.047119, 38.380422 ], [ -76.989441, 38.239259 ] ], [ [ -75.404663, 39.794820 ], [ -75.200043, 39.886558 ], [ -75.128632, 39.949753 ], [ -74.891052, 40.081224 ], [ -74.763336, 40.190414 ], [ -75.077820, 40.449037 ], [ -75.095673, 40.555548 ], [ -75.204163, 40.586842 ], [ -75.198669, 40.747257 ], [ -75.081940, 40.869911 ], [ -75.135498, 41.000630 ], [ -75.051727, 41.046217 ] ], [ [ -75.404663, 39.794820 ], [ -75.554352, 39.691337 ], [ -75.526886, 39.498742 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -73.911896, 40.960197 ], [ -74.079437, 41.046217 ] ], [ [ -75.867462, 36.550466 ], [ -76.941376, 36.546053 ], [ -77.998810, 36.537226 ], [ -78.837891, 36.539433 ] ], [ [ -77.722778, 39.322612 ], [ -77.801056, 39.449980 ], [ -77.923279, 39.592990 ], [ -78.232269, 39.672313 ], [ -78.424530, 39.596165 ], [ -78.533020, 39.522052 ], [ -78.829651, 39.562294 ], [ -78.837891, 39.555942 ] ], [ [ -77.722778, 39.322612 ], [ -77.575836, 39.288608 ], [ -77.442627, 39.213103 ], [ -77.516785, 39.105554 ], [ -77.305298, 39.045853 ], [ -77.118530, 38.933776 ] ], [ [ -77.040253, 38.789416 ], [ -77.059479, 38.708018 ], [ -77.229767, 38.613651 ], [ -77.342377, 38.391186 ], [ -77.210541, 38.337348 ], [ -77.047119, 38.380422 ], [ -76.989441, 38.239259 ] ], [ [ -75.787811, 39.723032 ], [ -75.713654, 38.449287 ], [ -75.047607, 38.448211 ] ], [ [ -75.787811, 39.723032 ], [ -75.710907, 39.802206 ], [ -75.620270, 39.847558 ], [ -75.404663, 39.794820 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -74.678192, 41.355165 ], [ -74.840240, 41.426253 ], [ -75.010529, 41.495207 ], [ -75.075073, 41.641105 ], [ -75.048981, 41.750824 ], [ -75.167084, 41.841943 ], [ -75.385437, 41.998284 ], [ -76.743622, 42.000325 ], [ -78.200684, 41.999305 ], [ -78.837891, 41.999305 ] ], [ [ -73.281555, 42.742978 ], [ -73.037109, 42.738944 ] ], [ [ -73.497162, 42.054391 ], [ -73.553467, 41.289158 ], [ -73.475189, 41.204489 ], [ -73.692169, 41.107295 ], [ -73.656464, 40.985082 ] ], [ [ -74.678192, 41.355165 ], [ -74.800415, 41.310824 ], [ -74.976196, 41.087632 ], [ -75.135498, 40.999593 ], [ -75.099792, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -74.678192, 41.355165 ], [ -74.840240, 41.426253 ], [ -75.010529, 41.495207 ], [ -75.075073, 41.641105 ], [ -75.048981, 41.750824 ], [ -75.167084, 41.841943 ], [ -75.385437, 41.998284 ], [ -76.743622, 42.000325 ], [ -78.200684, 41.999305 ], [ -78.837891, 41.999305 ] ], [ [ -73.347473, 45.006564 ], [ -73.368073, 44.804250 ], [ -73.407898, 44.675489 ], [ -73.383179, 44.378840 ], [ -73.328247, 44.226504 ], [ -73.429871, 44.019484 ], [ -73.337860, 43.758201 ], [ -73.401031, 43.613211 ], [ -73.383179, 43.575417 ], [ -73.238983, 43.567457 ], [ -73.281555, 42.742978 ], [ -73.037109, 42.738944 ] ], [ [ -73.497162, 42.054391 ], [ -73.037109, 42.043174 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 19, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -72.456207, 42.726839 ], [ -73.212891, 42.741970 ] ], [ [ -70.644836, 43.089952 ], [ -70.815125, 42.864893 ] ], [ [ -71.801147, 42.012571 ], [ -71.792908, 41.466399 ], [ -71.853333, 41.320107 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -72.456207, 42.726839 ], [ -73.212891, 42.741970 ] ], [ [ -71.504517, 45.008506 ], [ -71.503143, 45.007535 ], [ -71.619873, 44.736003 ], [ -71.545715, 44.592423 ], [ -71.585541, 44.468091 ], [ -71.809387, 44.352332 ], [ -72.003021, 44.304196 ], [ -72.035980, 44.206819 ], [ -72.059326, 44.045154 ], [ -72.177429, 43.808765 ], [ -72.259827, 43.721490 ], [ -72.369690, 43.521668 ], [ -72.402649, 43.285203 ], [ -72.434235, 43.222190 ], [ -72.458954, 42.960443 ], [ -72.537231, 42.830660 ], [ -72.456207, 42.726839 ] ], [ [ -70.644836, 43.089952 ], [ -70.815125, 42.864893 ] ], [ [ -71.801147, 42.012571 ], [ -72.732239, 42.036034 ], [ -73.212891, 42.047253 ] ] ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/--extra-detail_30_--smallest-maximum-zoom-guess_3.json b/tests/ne_110m_populated_places/out/--extra-detail_30_--smallest-maximum-zoom-guess_3.json index c164cef93..6b9967e1a 100644 --- a/tests/ne_110m_populated_places/out/--extra-detail_30_--smallest-maximum-zoom-guess_3.json +++ b/tests/ne_110m_populated_places/out/--extra-detail_30_--smallest-maximum-zoom-guess_3.json @@ -9,7 +9,7 @@ "maxzoom": "3", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/--extra-detail_30_--smallest-maximum-zoom-guess_3.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":227},{\"dropped_by_rate\":227},{\"dropped_by_rate\":152},{}]", +"strategies": "[{\"dropped_by_rate\":227},{\"dropped_by_rate\":227},{\"dropped_by_rate\":154},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,35 +17,35 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.752725 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint George‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.699219, 12.039321 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856 }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.380028 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.175781 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genève", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 43.961191 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.457504 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358 }, "geometry": { "type": "Point", "coordinates": [ 7.558594, 9.102097 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060 }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.358062 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.449790 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.115234, 6.926427 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 33.750000, -14.008696 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 144.931641, -37.788081 ] } } ] } ] } , @@ -55,7 +55,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunción", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunción", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunción", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.656250, -25.284438 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasília", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasília", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } ] } ] } , @@ -63,23 +63,23 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de México", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de México", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.120154 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.747257 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885 }, "geometry": { "type": "Point", "coordinates": [ -69.916992, 18.479609 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint George‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.151367, 5.834616 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.602539, 33.614619 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856 }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.413496 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499, "MAX_POP20": 206499, "MAX_POP50": 206499, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 59, "MAX_AREAKM": 59, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 52, "MAX_PERKM": 52, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 194530, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.839170 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } ] } @@ -91,17 +91,15 @@ , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.966054 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.313113 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363 }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -109,47 +107,49 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genève", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.847573 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.536273 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 41.902277 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.682435 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.809122 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.673831 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.429518 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.879587 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358 }, "geometry": { "type": "Point", "coordinates": [ 7.514648, 9.102097 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athínai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athínai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.996163 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.346411 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060 }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.358062 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892 }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.579084 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.447150 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.613459 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356, "MAX_POP20": 742356, "MAX_POP50": 7482035, "MAX_POP300": 7482969, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 772, "MAX_AREAKM": 5463, "MIN_AREAMI": 298, "MAX_AREAMI": 2109, "MIN_PERKM": 545, "MAX_PERKM": 4154, "MIN_PERMI": 339, "MAX_PERMI": 2581, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 601600, "ELEVATION": 0, "GTOPO30": 497, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36, "POP1955": 41, "POP1960": 45, "POP1965": 56, "POP1970": 70, "POP1975": 107, "POP1980": 189, "POP1985": 260, "POP1990": 343, "POP1995": 452, "POP2000": 594, "POP2005": 732, "POP2010": 780, "POP2015": 851, "POP2020": 988, "POP2025": 1148, "POP2050": 1320 }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.687782 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.936523, 6.882800 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.488781 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "Former capital", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820, "MAX_POP20": 3301820, "MAX_POP50": 3301820, "MAX_POP300": 3301820, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 199, "MAX_PERKM": 199, "MIN_PERMI": 123, "MAX_PERMI": 123, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 4477638, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302, "POP1955": 1440, "POP1960": 1592, "POP1965": 1760, "POP1970": 1946, "POP1975": 2151, "POP1980": 2378, "POP1985": 2629, "POP1990": 2907, "POP1995": 3213, "POP2000": 3553, "POP2005": 3928, "POP2010": 4088, "POP2015": 4348, "POP2020": 4841, "POP2025": 5361, "POP2050": 5869, "CITYALT": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 16.804541 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461 }, "geometry": { "type": "Point", "coordinates": [ 96.108398, 19.766704 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797, "MAX_POP20": 2498797, "MAX_POP50": 2498797, "MAX_POP300": 2498797, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 446, "MAX_AREAKM": 447, "MIN_AREAMI": 172, "MAX_AREAMI": 173, "MIN_PERKM": 510, "MAX_PERKM": 511, "MIN_PERMI": 317, "MAX_PERMI": 318, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 3222000, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516, "POP1955": 577, "POP1960": 646, "POP1965": 769, "POP1970": 987, "POP1975": 1348, "POP1980": 1842, "POP1985": 2195, "POP1990": 2526, "POP1995": 2838, "POP2000": 3117, "POP2005": 3265, "POP2010": 3300, "POP2015": 3346, "POP2020": 3434, "POP2025": 3537, "POP2050": 3630 }, "geometry": { "type": "Point", "coordinates": [ 125.771484, 39.027719 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305 }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.045792 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.926427 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } ] } @@ -159,7 +159,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.145992 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -181.560059, -18.124971 ] } } ] } ] } , @@ -169,13 +169,11 @@ , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.190918, 33.998027 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo León", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413 }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.681137 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Houston", "DIFFASCII": 0, "NAMEASCII": "Houston", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Texas", "ISO_A2": "US", "LATITUDE": 29.819974, "LONGITUDE": -95.339979, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4459000, "POP_MIN": 3647574, "POP_OTHER": 3607616, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 4699066, "MEGANAME": "Houston", "LS_NAME": "Houston", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3647574, "MAX_POP20": 4287078, "MAX_POP50": 4352341, "MAX_POP300": 4352341, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2388, "MAX_AREAKM": 3041, "MIN_AREAMI": 922, "MAX_AREAMI": 1174, "MIN_PERKM": 1257, "MAX_PERKM": 1773, "MIN_PERMI": 781, "MAX_PERMI": 1101, "MIN_BBXMIN": -95.841667, "MAX_BBXMIN": -95.841667, "MIN_BBXMAX": -95.133333, "MAX_BBXMAX": -95, "MIN_BBYMIN": 29.475, "MAX_BBYMIN": 29.491667, "MIN_BBYMAX": 30.258915, "MAX_BBYMAX": 30.266667, "MEAN_BBXC": -95.431928, "MEAN_BBYC": 29.810477, "COMPARE": 0, "GN_ASCII": "Houston", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 542, "UN_ADM0": "United States of America", "UN_LAT": 29.77, "UN_LONG": -95.4, "POP1950": 709, "POP1955": 904, "POP1960": 1151, "POP1965": 1396, "POP1970": 1693, "POP1975": 2030, "POP1980": 2424, "POP1985": 2658, "POP1990": 2922, "POP1995": 3353, "POP2000": 3849, "POP2005": 4324, "POP2010": 4459, "POP2015": 4609, "POP2020": 4790, "POP2025": 4936, "POP2050": 5049 }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de México", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de México", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -183,11 +181,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "La Paz", "DIFFASCII": 0, "NAMEASCII": "La Paz", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "La Paz", "ISO_A2": "BO", "LATITUDE": -16.497974, "LONGITUDE": -68.149985, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1590000, "POP_MIN": 812799, "POP_OTHER": 4400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3911925, "MEGANAME": "La Paz", "LS_NAME": "La Paz3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590482, "MAX_POP20": 1590482, "MAX_POP50": 1590482, "MAX_POP300": 1590482, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 181, "MAX_AREAKM": 181, "MIN_AREAMI": 70, "MAX_AREAMI": 70, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": -68.258333, "MAX_BBXMIN": -68.258333, "MIN_BBXMAX": -68.05, "MAX_BBXMAX": -68.05, "MIN_BBYMIN": -16.575, "MAX_BBYMIN": -16.575, "MIN_BBYMAX": -16.433333, "MAX_BBYMAX": -16.433333, "MEAN_BBXC": -68.157765, "MEAN_BBYC": -16.506439, "COMPARE": 0, "GN_ASCII": "La Paz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 812799, "ELEVATION": 0, "GTOPO30": 3829, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 440, "UN_ADM0": "Bolivia", "UN_LAT": 24.15, "UN_LONG": -110.3, "POP1950": 319, "POP1955": 374, "POP1960": 438, "POP1965": 512, "POP1970": 600, "POP1975": 703, "POP1980": 809, "POP1985": 927, "POP1990": 1062, "POP1995": 1267, "POP2000": 1390, "POP2005": 1527, "POP2010": 1590, "POP2015": 1692, "POP2020": 1864, "POP2025": 2027, "POP2050": 2178 }, "geometry": { "type": "Point", "coordinates": [ -68.159180, -16.488765 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEALT": "Valparaíso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valparaíso", "ISO_A2": "CL", "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575, "MEGANAME": "Valparaíso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390, "MAX_POP20": 637860, "MAX_POP50": 637860, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 34, "MAX_AREAKM": 184, "MIN_AREAMI": 13, "MAX_AREAMI": 71, "MIN_PERKM": 33, "MAX_PERKM": 151, "MIN_PERMI": 21, "MAX_PERMI": 94, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27, "GN_POP": 15938, "ELEVATION": 0, "GTOPO30": 405, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328, "POP1955": 377, "POP1960": 433, "POP1965": 481, "POP1970": 532, "POP1975": 581, "POP1980": 635, "POP1985": 685, "POP1990": 733, "POP1995": 771, "POP2000": 803, "POP2005": 838, "POP2010": 854, "POP2015": 880, "POP2020": 922, "POP2025": 956, "POP2050": 982, "CITYALT": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.045508 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sucre", "DIFFASCII": 0, "NAMEASCII": "Sucre", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official (const", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "Chuquisaca", "ISO_A2": "BO", "LATITUDE": -19.040971, "LONGITUDE": -65.259516, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224838, "POP_MIN": 221736, "POP_OTHER": 221736, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3903987, "LS_NAME": "Sucre", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 221736, "MAX_POP20": 221736, "MAX_POP50": 221736, "MAX_POP300": 221736, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 34, "MAX_AREAKM": 34, "MIN_AREAMI": 13, "MAX_AREAMI": 13, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": -65.3, "MAX_BBXMIN": -65.3, "MIN_BBXMAX": -65.225, "MAX_BBXMAX": -65.225, "MIN_BBYMIN": -19.066667, "MAX_BBYMIN": -19.066667, "MIN_BBYMAX": -18.991667, "MAX_BBYMAX": -18.991667, "MEAN_BBXC": -65.260317, "MEAN_BBYC": -19.030556, "COMPARE": 0, "GN_ASCII": "Sucre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 224838, "ELEVATION": 0, "GTOPO30": 2759, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunción", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunción", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunción", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasília", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasília", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.771109 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Montevideo", "DIFFASCII": 0, "NAMEASCII": "Montevideo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uruguay", "SOV_A3": "URY", "ADM0NAME": "Uruguay", "ADM0_A3": "URY", "ADM1NAME": "Montevideo", "ISO_A2": "UY", "LATITUDE": -34.858042, "LONGITUDE": -56.171052, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1513000, "POP_MIN": 5324, "POP_OTHER": 1276128, "RANK_MAX": 12, "RANK_MIN": 5, "GEONAMEID": 5038018, "MEGANAME": "Montevideo", "LS_NAME": "Montevideo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1381747, "MAX_POP20": 1381747, "MAX_POP50": 1381747, "MAX_POP300": 1381747, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 347, "MAX_AREAKM": 347, "MIN_AREAMI": 134, "MAX_AREAMI": 134, "MIN_PERKM": 266, "MAX_PERKM": 266, "MIN_PERMI": 165, "MAX_PERMI": 165, "MIN_BBXMIN": -56.291667, "MAX_BBXMIN": -56.291667, "MIN_BBXMAX": -55.8, "MAX_BBXMAX": -55.8, "MIN_BBYMIN": -34.933333, "MAX_BBYMIN": -34.933333, "MIN_BBYMAX": -34.65, "MAX_BBYMAX": -34.65, "MEAN_BBXC": -56.12273, "MEAN_BBYC": -34.828337, "COMPARE": 0, "GN_ASCII": "Montevideo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5324, "ELEVATION": 284, "GTOPO30": 305, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 579, "UN_ADM0": "Uruguay", "UN_LAT": -34.92, "UN_LONG": -56.16, "POP1950": 1212, "POP1955": 1248, "POP1960": 1285, "POP1965": 1323, "POP1970": 1362, "POP1975": 1403, "POP1980": 1454, "POP1985": 1508, "POP1990": 1546, "POP1995": 1584, "POP2000": 1561, "POP2005": 1525, "POP2010": 1513, "POP2015": 1504, "POP2020": 1506, "POP2025": 1515, "POP2050": 1520 }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.849875 ] } } ] } @@ -197,47 +195,45 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421, "MAX_POP20": 4377344, "MAX_POP50": 5190755, "MAX_POP300": 5190755, "MAX_POP310": 5190755, "MAX_NATSCA": 300, "MIN_AREAKM": 1432, "MAX_AREAKM": 2286, "MIN_AREAMI": 553, "MAX_AREAMI": 883, "MIN_PERKM": 464, "MAX_PERKM": 1161, "MIN_PERMI": 289, "MAX_PERMI": 721, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 4612191, "ELEVATION": 0, "GTOPO30": 173, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068, "POP1955": 1365, "POP1960": 1744, "POP1965": 2093, "POP1970": 2535, "POP1975": 2770, "POP1980": 3008, "POP1985": 3355, "POP1990": 3807, "POP1995": 4197, "POP2000": 4607, "POP2005": 5035, "POP2010": 5213, "POP2015": 5447, "POP2020": 5687, "POP2025": 5827, "POP2050": 5946 }, "geometry": { "type": "Point", "coordinates": [ -79.431152, 43.707594 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780, "MAX_POP20": 885780, "MAX_POP50": 885780, "MAX_POP300": 885780, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 504, "MAX_AREAKM": 504, "MIN_AREAMI": 195, "MAX_AREAMI": 195, "MIN_PERKM": 442, "MAX_PERKM": 442, "MIN_PERMI": 274, "MAX_PERMI": 274, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 812129, "ELEVATION": 0, "GTOPO30": 61, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282, "POP1955": 342, "POP1960": 415, "POP1965": 482, "POP1970": 581, "POP1975": 676, "POP1980": 729, "POP1985": 803, "POP1990": 918, "POP1995": 988, "POP2000": 1079, "POP2005": 1119, "POP2010": 1145, "POP2015": 1182, "POP2020": 1232, "POP2025": 1274, "POP2050": 1315, "CITYALT": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.375488, 23.140360 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.908133 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Managua", "DIFFASCII": 0, "NAMEASCII": "Managua", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nicaragua", "SOV_A3": "NIC", "ADM0NAME": "Nicaragua", "ADM0_A3": "NIC", "ADM1NAME": "Managua", "ISO_A2": "NI", "LATITUDE": 12.153017, "LONGITUDE": -86.268492, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 920000, "POP_MIN": 920000, "POP_OTHER": 1088194, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3617763, "MEGANAME": "Managua", "LS_NAME": "Managua", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1105973, "MAX_POP20": 1105973, "MAX_POP50": 1105973, "MAX_POP300": 1105973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 131, "MIN_AREAMI": 51, "MAX_AREAMI": 51, "MIN_PERKM": 97, "MAX_PERKM": 97, "MIN_PERMI": 60, "MAX_PERMI": 60, "MIN_BBXMIN": -86.383333, "MAX_BBXMIN": -86.383333, "MIN_BBXMAX": -86.158333, "MAX_BBXMAX": -86.158333, "MIN_BBYMIN": 12.075, "MAX_BBYMIN": 12.075, "MIN_BBYMAX": 12.175, "MAX_BBYMAX": 12.175, "MEAN_BBXC": -86.263402, "MEAN_BBYC": 12.13336, "COMPARE": 0, "GN_ASCII": "Managua", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 973087, "ELEVATION": 0, "GTOPO30": 59, "TIMEZONE": "America/Managua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 382, "UN_ADM0": "Nicaragua", "UN_LAT": 12.15, "UN_LONG": -86.27, "POP1950": 110, "POP1955": 148, "POP1960": 199, "POP1965": 269, "POP1970": 366, "POP1975": 443, "POP1980": 525, "POP1985": 621, "POP1990": 735, "POP1995": 865, "POP2000": 887, "POP2005": 909, "POP2010": 920, "POP2015": 944, "POP2020": 1015, "POP2025": 1104, "POP2050": 1193 }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.146746 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Panama City", "NAMEALT": "Ciudad de Panamá|Panama City|Panama", "DIFFASCII": 0, "NAMEASCII": "Panama City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Panama", "SOV_A3": "PAN", "ADM0NAME": "Panama", "ADM0_A3": "PAN", "ADM1NAME": "Panama", "ISO_A2": "PA", "LATITUDE": 8.968017, "LONGITUDE": -79.533037, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1281000, "POP_MIN": 408168, "POP_OTHER": 939725, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 3703443, "MEGANAME": "Ciudad de Panamá (Panama City)", "LS_NAME": "Panama City1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 958016, "MAX_POP20": 958016, "MAX_POP50": 989053, "MAX_POP300": 989053, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 157, "MIN_AREAMI": 54, "MAX_AREAMI": 61, "MIN_PERKM": 98, "MAX_PERKM": 107, "MIN_PERMI": 61, "MAX_PERMI": 66, "MIN_BBXMIN": -79.591667, "MAX_BBXMIN": -79.576315, "MIN_BBXMAX": -79.4, "MAX_BBXMAX": -79.4, "MIN_BBYMIN": 8.933333, "MAX_BBYMIN": 8.943752, "MIN_BBYMAX": 9.1, "MAX_BBYMAX": 9.1, "MEAN_BBXC": -79.494919, "MEAN_BBYC": 9.035936, "COMPARE": 0, "GN_ASCII": "Panama City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 408168, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "America/Panama", "GEONAMESNO": "GeoNames match general.", "UN_FID": 408, "UN_ADM0": "Panama", "UN_LAT": 9, "UN_LONG": -79.51, "POP1950": 171, "POP1955": 220, "POP1960": 283, "POP1965": 360, "POP1970": 455, "POP1975": 528, "POP1980": 613, "POP1985": 721, "POP1990": 847, "POP1995": 953, "POP2000": 1072, "POP2005": 1216, "POP2010": 1281, "POP2015": 1379, "POP2020": 1527, "POP2025": 1653, "POP2050": 1759, "CITYALT": "Panama" }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.971897 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-au-Prince", "DIFFASCII": 0, "NAMEASCII": "Port-au-Prince", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Haiti", "SOV_A3": "HTI", "ADM0NAME": "Haiti", "ADM0_A3": "HTI", "ADM1NAME": "Ouest", "ISO_A2": "HT", "LATITUDE": 18.541025, "LONGITUDE": -72.336035, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1998000, "POP_MIN": 1234742, "POP_OTHER": 2385397, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3718426, "MEGANAME": "Port-au-Prince", "LS_NAME": "Port-au-Prince", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2445384, "MAX_POP20": 2445384, "MAX_POP50": 2445384, "MAX_POP300": 2445384, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 374, "MAX_AREAKM": 374, "MIN_AREAMI": 144, "MAX_AREAMI": 144, "MIN_PERKM": 287, "MAX_PERKM": 287, "MIN_PERMI": 179, "MAX_PERMI": 179, "MIN_BBXMIN": -72.441667, "MAX_BBXMIN": -72.441667, "MIN_BBXMAX": -72.033333, "MAX_BBXMAX": -72.033333, "MIN_BBYMIN": 18.491667, "MAX_BBYMIN": 18.491667, "MIN_BBYMAX": 18.666667, "MAX_BBYMAX": 18.666667, "MEAN_BBXC": -72.222424, "MEAN_BBYC": 18.56946, "COMPARE": 0, "GN_ASCII": "Port-au-Prince", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1234742, "ELEVATION": 0, "GTOPO30": 65, "TIMEZONE": "America/Port-au-Prince", "GEONAMESNO": "GeoNames match general.", "UN_FID": 208, "UN_ADM0": "Haiti", "UN_LAT": 18.52, "UN_LONG": -72.34, "POP1950": 133, "POP1955": 182, "POP1960": 247, "POP1965": 337, "POP1970": 460, "POP1975": 575, "POP1980": 701, "POP1985": 881, "POP1990": 1134, "POP1995": 1427, "POP2000": 1653, "POP2005": 1885, "POP2010": 1998, "POP2015": 2209, "POP2020": 2621, "POP2025": 3012, "POP2050": 3346 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885 }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.479609 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.305380 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Castries", "DIFFASCII": 0, "NAMEASCII": "Castries", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Lucia", "SOV_A3": "LCA", "ADM0NAME": "Saint Lucia", "ADM0_A3": "LCA", "ISO_A2": "LC", "LATITUDE": 14.001973, "LONGITUDE": -61.000008, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 37963, "POP_MIN": 10634, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3028258, "LS_NAME": "Castries", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 64343, "MAX_POP20": 64343, "MAX_POP50": 64343, "MAX_POP300": 64343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 16, "MAX_AREAKM": 16, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 22, "MAX_PERKM": 22, "MIN_PERMI": 14, "MAX_PERMI": 14, "MIN_BBXMIN": -61.008333, "MAX_BBXMIN": -61.008333, "MIN_BBXMAX": -60.966667, "MAX_BBXMAX": -60.966667, "MIN_BBYMIN": 13.975, "MAX_BBYMIN": 13.975, "MIN_BBYMAX": 14.025, "MAX_BBYMAX": 14.025, "MEAN_BBXC": -60.988377, "MEAN_BBYC": 14.005921, "COMPARE": 0, "GN_ASCII": "Castries", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5790, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Europe/Paris", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint George‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619 }, "geometry": { "type": "Point", "coordinates": [ -66.928711, 10.509417 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.508742 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laâyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.205566, 27.156920 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.624512, 33.596319 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.396764 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144, "MAX_POP20": 742144, "MAX_POP50": 742144, "MAX_POP300": 742144, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 98, "MAX_AREAKM": 98, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 661400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Banjul", "DIFFASCII": 0, "NAMEASCII": "Banjul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gambia, The", "SOV_A3": "GMB", "ADM0NAME": "The Gambia", "ADM0_A3": "GMB", "ADM1NAME": "Banjul", "ISO_A2": "GM", "LATITUDE": 13.453876, "LONGITUDE": -16.591701, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 43094, "POP_MIN": 34589, "POP_OTHER": 581300, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2413876, "LS_NAME": "Banjul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 43094, "MAX_POP20": 43094, "MAX_POP50": 43094, "MAX_POP300": 43094, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 13, "MAX_PERKM": 13, "MIN_PERMI": 8, "MAX_PERMI": 8, "MIN_BBXMIN": -16.6, "MAX_BBXMIN": -16.6, "MIN_BBXMAX": -16.566667, "MAX_BBXMAX": -16.566667, "MIN_BBYMIN": 13.441667, "MAX_BBYMIN": 13.441667, "MIN_BBYMAX": 13.466667, "MAX_BBYMAX": 13.466667, "MEAN_BBXC": -16.58125, "MEAN_BBYC": 13.455208, "COMPARE": 0, "GN_ASCII": "Banjul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 34589, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "Africa/Banjul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856 }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bamako", "DIFFASCII": 0, "NAMEASCII": "Bamako", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mali", "SOV_A3": "MLI", "ADM0NAME": "Mali", "ADM0_A3": "MLI", "ADM1NAME": "Bamako", "ISO_A2": "ML", "LATITUDE": 12.650015, "LONGITUDE": -8.000039, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1297281, "POP_OTHER": 1301407, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2460596, "MEGANAME": "Bamako", "LS_NAME": "Bamako", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1316564, "MAX_POP20": 1316564, "MAX_POP50": 1316564, "MAX_POP300": 1316564, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 172, "MAX_AREAKM": 172, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 106, "MAX_PERKM": 106, "MIN_PERMI": 66, "MAX_PERMI": 66, "MIN_BBXMIN": -8.058333, "MAX_BBXMIN": -8.058333, "MIN_BBXMAX": -7.908333, "MAX_BBXMAX": -7.908333, "MIN_BBYMIN": 12.541667, "MAX_BBYMIN": 12.541667, "MIN_BBYMAX": 12.716667, "MAX_BBYMAX": 12.716667, "MEAN_BBXC": -7.987419, "MEAN_BBYC": 12.626173, "COMPARE": 0, "GN_ASCII": "Bamako", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1297281, "ELEVATION": 0, "GTOPO30": 350, "TIMEZONE": "Africa/Bamako", "GEONAMESNO": "GeoNames match general.", "UN_FID": 349, "UN_ADM0": "Mali", "UN_LAT": 12.65, "UN_LONG": -7.98, "POP1950": 89, "POP1955": 111, "POP1960": 130, "POP1965": 158, "POP1970": 222, "POP1975": 363, "POP1980": 489, "POP1985": 608, "POP1990": 746, "POP1995": 910, "POP2000": 1110, "POP2005": 1368, "POP2010": 1494, "POP2015": 1708, "POP2020": 2130, "POP2025": 2633, "POP2050": 3214 }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.661778 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632 }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.382928 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499, "MAX_POP20": 206499, "MAX_POP50": 206499, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 59, "MAX_AREAKM": 59, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 52, "MAX_PERKM": 52, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 194530, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382 }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -247,25 +243,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.329588 ] } } , +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.329588 ] } } +, { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762 }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 17.072754, -22.573438 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cape Town", "DIFFASCII": 0, "NAMEASCII": "Cape Town", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Western Cape", "ISO_A2": "ZA", "LATITUDE": -33.920011, "LONGITUDE": 18.434988, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3215000, "POP_MIN": 2432858, "POP_OTHER": 2401318, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3369157, "MEGANAME": "Cape Town", "LS_NAME": "Cape Town", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2432858, "MAX_POP20": 2443605, "MAX_POP50": 2443605, "MAX_POP300": 2443605, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 534, "MAX_AREAKM": 542, "MIN_AREAMI": 206, "MAX_AREAMI": 209, "MIN_PERKM": 295, "MAX_PERKM": 300, "MIN_PERMI": 183, "MAX_PERMI": 187, "MIN_BBXMIN": 18.375, "MAX_BBXMIN": 18.375, "MIN_BBXMAX": 18.724745, "MAX_BBXMAX": 18.741667, "MIN_BBYMIN": -34.108333, "MAX_BBYMIN": -34.108333, "MIN_BBYMAX": -33.808333, "MAX_BBYMAX": -33.808333, "MEAN_BBXC": 18.557208, "MEAN_BBYC": -33.954979, "COMPARE": 0, "GN_ASCII": "Cape Town", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 11, "GN_POP": 3433441, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 455, "UN_ADM0": "South Africa", "UN_LAT": -33.97, "UN_LONG": 18.48, "POP1950": 618, "POP1955": 705, "POP1960": 803, "POP1965": 945, "POP1970": 1114, "POP1975": 1339, "POP1980": 1609, "POP1985": 1925, "POP1990": 2155, "POP1995": 2394, "POP2000": 2715, "POP2005": 3087, "POP2010": 3215, "POP2015": 3357, "POP2020": 3504, "POP2025": 3627, "POP2050": 3744 }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.925130 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Harare", "DIFFASCII": 0, "NAMEASCII": "Harare", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zimbabwe", "SOV_A3": "ZWE", "ADM0NAME": "Zimbabwe", "ADM0_A3": "ZWE", "ADM1NAME": "Harare", "ISO_A2": "ZW", "LATITUDE": -17.81779, "LONGITUDE": 31.044709, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1572000, "POP_MIN": 1542813, "POP_OTHER": 1831877, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 890299, "MEGANAME": "Harare", "LS_NAME": "Harare", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1833439, "MAX_POP20": 1833439, "MAX_POP50": 1833439, "MAX_POP300": 1839463, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 310, "MAX_AREAKM": 326, "MIN_AREAMI": 120, "MAX_AREAMI": 126, "MIN_PERKM": 186, "MAX_PERKM": 210, "MIN_PERMI": 115, "MAX_PERMI": 130, "MIN_BBXMIN": 30.908333, "MAX_BBXMIN": 30.908333, "MIN_BBXMAX": 31.175, "MAX_BBXMAX": 31.191667, "MIN_BBYMIN": -17.925, "MAX_BBYMIN": -17.925, "MIN_BBYMAX": -17.725, "MAX_BBYMAX": -17.725, "MEAN_BBXC": 31.045288, "MEAN_BBYC": -17.832399, "COMPARE": 0, "GN_ASCII": "Harare", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1542813, "ELEVATION": 0, "GTOPO30": 1481, "TIMEZONE": "Africa/Harare", "GEONAMESNO": "GeoNames match general.", "UN_FID": 462, "UN_ADM0": "Zimbabwe", "UN_LAT": -17.82, "UN_LONG": 31.02, "POP1950": 143, "POP1955": 192, "POP1960": 248, "POP1965": 319, "POP1970": 417, "POP1975": 532, "POP1980": 616, "POP1985": 778, "POP1990": 1047, "POP1995": 1255, "POP2000": 1379, "POP2005": 1515, "POP2010": 1572, "POP2015": 1663, "POP2020": 1839, "POP2025": 2037, "POP2050": 2247 }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.811456 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871 }, "geometry": { "type": "Point", "coordinates": [ 36.804199, -1.274309 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Dar es Salaam", "DIFFASCII": 0, "NAMEASCII": "Dar es Salaam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dar-Es-Salaam", "ISO_A2": "TZ", "LATITUDE": -6.800013, "LONGITUDE": 39.268342, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2930000, "POP_MIN": 2698652, "POP_OTHER": 2757835, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 160263, "MEGANAME": "Dar es Salaam", "LS_NAME": "Dar es Salaam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2757507, "MAX_POP20": 2757507, "MAX_POP50": 2757507, "MAX_POP300": 2757507, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 153, "MAX_PERKM": 153, "MIN_PERMI": 95, "MAX_PERMI": 95, "MIN_BBXMIN": 39.15, "MAX_BBXMIN": 39.15, "MIN_BBXMAX": 39.325, "MAX_BBXMAX": 39.325, "MIN_BBYMIN": -6.933333, "MAX_BBYMIN": -6.933333, "MIN_BBYMAX": -6.725, "MAX_BBYMAX": -6.725, "MEAN_BBXC": 39.23918, "MEAN_BBYC": -6.833434, "COMPARE": 0, "GN_ASCII": "Dar es Salaam", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 2698652, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 523, "UN_ADM0": "United Republic of Tanzania", "UN_LAT": -6.81, "UN_LONG": 39.25, "POP1950": 67, "POP1955": 110, "POP1960": 162, "POP1965": 233, "POP1970": 357, "POP1975": 572, "POP1980": 836, "POP1985": 1046, "POP1990": 1316, "POP1995": 1668, "POP2000": 2116, "POP2005": 2679, "POP2010": 2930, "POP2015": 3319, "POP2020": 4020, "POP2025": 4804, "POP2050": 5688 }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Bloemfontein", "DIFFASCII": 0, "NAMEASCII": "Bloemfontein", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Judicial capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Orange Free State", "ISO_A2": "ZA", "LATITUDE": -29.119994, "LONGITUDE": 26.229913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 463064, "POP_MIN": 456669, "POP_OTHER": 456513, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1018725, "LS_NAME": "Bloemfontein", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 456669, "MAX_POP20": 456669, "MAX_POP50": 456669, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 105, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 26.166667, "MAX_BBXMIN": 26.166667, "MIN_BBXMAX": 26.3, "MAX_BBXMAX": 26.3, "MIN_BBYMIN": -29.2, "MAX_BBYMIN": -29.2, "MIN_BBYMAX": -29.058333, "MAX_BBYMAX": -29.058333, "MEAN_BBXC": 26.225714, "MEAN_BBYC": -29.128155, "COMPARE": 0, "GN_ASCII": "Bloemfontein", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 463064, "ELEVATION": 0, "GTOPO30": 1398, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.113775 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Pretoria", "DIFFASCII": 0, "NAMEASCII": "Pretoria", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "LATITUDE": -25.706921, "LONGITUDE": 28.229429, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1338000, "POP_MIN": 1338000, "POP_OTHER": 1443084, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 964137, "MEGANAME": "Pretoria", "LS_NAME": "Pretoria", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1444949, "MAX_POP20": 1444949, "MAX_POP50": 1444949, "MAX_POP300": 1444949, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 502, "MAX_AREAKM": 502, "MIN_AREAMI": 194, "MAX_AREAMI": 194, "MIN_PERKM": 256, "MAX_PERKM": 256, "MIN_PERMI": 159, "MAX_PERMI": 159, "MIN_BBXMIN": 28.041667, "MAX_BBXMIN": 28.041667, "MIN_BBXMAX": 28.4, "MAX_BBXMAX": 28.4, "MIN_BBYMIN": -25.891667, "MAX_BBYMIN": -25.891667, "MIN_BBYMAX": -25.641667, "MAX_BBYMAX": -25.641667, "MEAN_BBXC": 28.214676, "MEAN_BBYC": -25.755716, "COMPARE": 0, "GN_ASCII": "Pretoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 1619438, "ELEVATION": 0, "GTOPO30": 1282, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 460, "UN_ADM0": "South Africa", "UN_LAT": -25.73, "UN_LONG": 28.21, "POP1950": 275, "POP1955": 340, "POP1960": 419, "POP1965": 488, "POP1970": 565, "POP1975": 624, "POP1980": 688, "POP1985": 763, "POP1990": 911, "POP1995": 951, "POP2000": 1084, "POP2005": 1273, "POP2010": 1338, "POP2015": 1409, "POP2020": 1482, "POP2025": 1544, "POP2050": 1604 }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.700938 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Antananarivo", "DIFFASCII": 0, "NAMEASCII": "Antananarivo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Madagascar", "SOV_A3": "MDG", "ADM0NAME": "Madagascar", "ADM0_A3": "MDG", "ADM1NAME": "Antananarivo", "ISO_A2": "MG", "LATITUDE": -18.916637, "LONGITUDE": 47.516624, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1697000, "POP_MIN": 1391433, "POP_OTHER": 1844658, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1070940, "MEGANAME": "Antananarivo", "LS_NAME": "Antananarivo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1727538, "MAX_POP20": 1727538, "MAX_POP50": 1727538, "MAX_POP300": 1727538, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 700, "MAX_AREAKM": 700, "MIN_AREAMI": 270, "MAX_AREAMI": 270, "MIN_PERKM": 699, "MAX_PERKM": 699, "MIN_PERMI": 434, "MAX_PERMI": 434, "MIN_BBXMIN": 47.233333, "MAX_BBXMIN": 47.233333, "MIN_BBXMAX": 47.625, "MAX_BBXMAX": 47.625, "MIN_BBYMIN": -19.166667, "MAX_BBYMIN": -19.166667, "MIN_BBYMAX": -18.625, "MAX_BBYMAX": -18.625, "MEAN_BBXC": 47.476707, "MEAN_BBYC": -18.875473, "COMPARE": 0, "GN_ASCII": "Antananarivo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1391433, "ELEVATION": 0, "GTOPO30": 1289, "TIMEZONE": "Indian/Antananarivo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 345, "UN_ADM0": "Madagascar", "UN_LAT": -18.9, "UN_LONG": 47.52, "POP1950": 177, "POP1955": 189, "POP1960": 252, "POP1965": 298, "POP1970": 363, "POP1975": 454, "POP1980": 580, "POP1985": 742, "POP1990": 948, "POP1995": 1169, "POP2000": 1361, "POP2005": 1590, "POP2010": 1697, "POP2015": 1877, "POP2020": 2229, "POP2025": 2642, "POP2050": 3118 }, "geometry": { "type": "Point", "coordinates": [ 47.504883, -18.916680 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Port Louis", "DIFFASCII": 0, "NAMEASCII": "Port Louis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritius", "SOV_A3": "MUS", "ADM0NAME": "Mauritius", "ADM0_A3": "MUS", "ISO_A2": "MU", "LATITUDE": -20.166639, "LONGITUDE": 57.499994, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 595491, "POP_MIN": 148416, "POP_OTHER": 304613, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 934154, "LS_NAME": "Port Louis", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 291837, "MAX_POP20": 595491, "MAX_POP50": 595491, "MAX_POP300": 595491, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 152, "MIN_AREAMI": 27, "MAX_AREAMI": 59, "MIN_PERKM": 85, "MAX_PERKM": 154, "MIN_PERMI": 53, "MAX_PERMI": 96, "MIN_BBXMIN": 57.425, "MAX_BBXMIN": 57.425, "MIN_BBXMAX": 57.541667, "MAX_BBXMAX": 57.575, "MIN_BBYMIN": -20.333333, "MAX_BBYMIN": -20.248073, "MIN_BBYMAX": -20.108333, "MAX_BBYMAX": -20.108333, "MEAN_BBXC": 57.491611, "MEAN_BBYC": -20.221833, "COMPARE": 0, "GN_ASCII": "Port Louis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 155226, "ELEVATION": 0, "GTOPO30": 133, "TIMEZONE": "Indian/Mauritius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.159098 ] } } ] } ] } , @@ -273,93 +271,93 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.508742 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382 }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632 }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.382928 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936 }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.921990 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Luxembourg", "DIFFASCII": 0, "NAMEASCII": "Luxembourg", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Luxembourg", "SOV_A3": "LUX", "ADM0NAME": "Luxembourg", "ADM0_A3": "LUX", "ADM1NAME": "Luxembourg", "ISO_A2": "LU", "LATITUDE": 49.61166, "LONGITUDE": 6.130003, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 107260, "POP_MIN": 76684, "POP_OTHER": 106219, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2960316, "LS_NAME": "Luxembourg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 107260, "MAX_POP20": 107260, "MAX_POP50": 107260, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 71, "MAX_PERKM": 71, "MIN_PERMI": 44, "MAX_PERMI": 44, "MIN_BBXMIN": 6.041667, "MAX_BBXMIN": 6.041667, "MIN_BBXMAX": 6.183333, "MAX_BBXMAX": 6.183333, "MIN_BBYMIN": 49.558333, "MAX_BBYMIN": 49.558333, "MIN_BBYMAX": 49.708333, "MAX_BBYMAX": 49.708333, "MEAN_BBXC": 6.125273, "MEAN_BBYC": 49.620833, "COMPARE": 0, "GN_ASCII": "Luxembourg", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 76684, "ELEVATION": 0, "GTOPO30": 259, "TIMEZONE": "Europe/Luxembourg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genève", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 46.210250 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Warsaw", "NAMEPAR": "Warszawa", "DIFFASCII": 0, "NAMEASCII": "Warsaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Poland", "SOV_A3": "POL", "ADM0NAME": "Poland", "ADM0_A3": "POL", "ADM1NAME": "Masovian", "ISO_A2": "PL", "LATITUDE": 52.250001, "LONGITUDE": 21, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1707000, "POP_MIN": 1702139, "POP_OTHER": 2012431, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 756135, "MEGANAME": "Warszawa", "LS_NAME": "Warsaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2129163, "MAX_POP20": 2129163, "MAX_POP50": 2129163, "MAX_POP300": 2129163, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 802, "MAX_AREAKM": 802, "MIN_AREAMI": 310, "MAX_AREAMI": 310, "MIN_PERKM": 759, "MAX_PERKM": 759, "MIN_PERMI": 471, "MAX_PERMI": 471, "MIN_BBXMIN": 20.666667, "MAX_BBXMIN": 20.666667, "MIN_BBXMAX": 21.358333, "MAX_BBXMAX": 21.358333, "MIN_BBYMIN": 52.033333, "MAX_BBYMIN": 52.033333, "MIN_BBYMAX": 52.433333, "MAX_BBYMAX": 52.433333, "MEAN_BBXC": 21.031458, "MEAN_BBYC": 52.230916, "COMPARE": 0, "GN_ASCII": "Warsaw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 78, "GN_POP": 1702139, "ELEVATION": 0, "GTOPO30": 94, "TIMEZONE": "Europe/Warsaw", "GEONAMESNO": "GeoNames match general.", "UN_FID": 418, "UN_ADM0": "Poland", "UN_LAT": 52.24, "UN_LONG": 21.01, "POP1950": 768, "POP1955": 942, "POP1960": 1119, "POP1965": 1212, "POP1970": 1300, "POP1975": 1444, "POP1980": 1565, "POP1985": 1596, "POP1990": 1628, "POP1995": 1652, "POP2000": 1666, "POP2005": 1693, "POP2010": 1707, "POP2015": 1724, "POP2020": 1735, "POP2025": 1736, "POP2050": 1736, "CITYALT": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.254709 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Vienna", "NAMEPAR": "Wien", "DIFFASCII": 0, "NAMEASCII": "Vienna", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Austria", "SOV_A3": "AUT", "ADM0NAME": "Austria", "ADM0_A3": "AUT", "ADM1NAME": "Wien", "ISO_A2": "AT", "LATITUDE": 48.200015, "LONGITUDE": 16.366639, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2400000, "POP_MIN": 1731000, "POP_OTHER": 1480886, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2761369, "MEGANAME": "Wien", "LS_NAME": "Vienna", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1561335, "MAX_POP20": 1610331, "MAX_POP50": 1610331, "MAX_POP300": 1610331, "MAX_POP310": 1610331, "MAX_NATSCA": 300, "MIN_AREAKM": 488, "MAX_AREAKM": 533, "MIN_AREAMI": 189, "MAX_AREAMI": 206, "MIN_PERKM": 444, "MAX_PERKM": 497, "MIN_PERMI": 276, "MAX_PERMI": 309, "MIN_BBXMIN": 16.133333, "MAX_BBXMIN": 16.133333, "MIN_BBXMAX": 16.583333, "MAX_BBXMAX": 16.583333, "MIN_BBYMIN": 47.916667, "MAX_BBYMIN": 48.008333, "MIN_BBYMAX": 48.383333, "MAX_BBYMAX": 48.383333, "MEAN_BBXC": 16.351672, "MEAN_BBYC": 48.18247, "COMPARE": 0, "GN_ASCII": "Vienna", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1691468, "ELEVATION": 171, "GTOPO30": 164, "TIMEZONE": "Europe/Vienna", "GEONAMESNO": "GeoNames match general.", "UN_FID": 321, "UN_ADM0": "Austria", "UN_LAT": 48.2, "UN_LONG": 16.32, "POP1950": 2086, "POP1955": 2087, "POP1960": 2089, "POP1965": 2080, "POP1970": 2070, "POP1975": 2059, "POP1980": 2049, "POP1985": 2069, "POP1990": 2096, "POP1995": 2127, "POP2000": 2158, "POP2005": 2264, "POP2010": 2315, "POP2015": 2385, "POP2020": 2451, "POP2025": 2476, "POP2050": 2496, "CITYALT": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.195387 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Budapest", "DIFFASCII": 0, "NAMEASCII": "Budapest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Hungary", "SOV_A3": "HUN", "ADM0NAME": "Hungary", "ADM0_A3": "HUN", "ADM1NAME": "Budapest", "ISO_A2": "HU", "LATITUDE": 47.500006, "LONGITUDE": 19.083321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1679000, "POP_MIN": 1679000, "POP_OTHER": 1718895, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3054643, "MEGANAME": "Budapest", "LS_NAME": "Budapest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1788020, "MAX_POP20": 1788020, "MAX_POP50": 1788020, "MAX_POP300": 1788020, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 556, "MAX_AREAKM": 556, "MIN_AREAMI": 215, "MAX_AREAMI": 215, "MIN_PERKM": 460, "MAX_PERKM": 460, "MIN_PERMI": 286, "MAX_PERMI": 286, "MIN_BBXMIN": 18.85, "MAX_BBXMIN": 18.85, "MIN_BBXMAX": 19.416667, "MAX_BBXMAX": 19.416667, "MIN_BBYMIN": 47.35, "MAX_BBYMIN": 47.35, "MIN_BBYMAX": 47.658333, "MAX_BBYMAX": 47.658333, "MEAN_BBXC": 19.106763, "MEAN_BBYC": 47.478602, "COMPARE": 0, "GN_ASCII": "Budapest", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1696128, "ELEVATION": 0, "GTOPO30": 100, "TIMEZONE": "Europe/Budapest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 211, "UN_ADM0": "Hungary", "UN_LAT": 47.51, "UN_LONG": 19.09, "POP1950": 1618, "POP1955": 1714, "POP1960": 1811, "POP1965": 1878, "POP1970": 1946, "POP1975": 2005, "POP1980": 2057, "POP1985": 2036, "POP1990": 2005, "POP1995": 1893, "POP2000": 1787, "POP2005": 1693, "POP2010": 1679, "POP2015": 1664, "POP2020": 1655, "POP2025": 1655, "POP2050": 1655 }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Podgorica", "DIFFASCII": 0, "NAMEASCII": "Podgorica", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Montenegro", "SOV_A3": "MNE", "ADM0NAME": "Montenegro", "ADM0_A3": "MNE", "ADM1NAME": "Podgorica", "ISO_A2": "ME", "LATITUDE": 42.465973, "LONGITUDE": 19.266307, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 145850, "POP_MIN": 136473, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3193044, "LS_NAME": "Podgorica", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 145850, "MAX_POP20": 145850, "MAX_POP50": 145850, "MAX_POP300": 145850, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 19.208333, "MAX_BBXMIN": 19.208333, "MIN_BBXMAX": 19.316667, "MAX_BBXMAX": 19.316667, "MIN_BBYMIN": 42.408333, "MAX_BBYMIN": 42.408333, "MIN_BBYMAX": 42.475, "MAX_BBYMAX": 42.475, "MEAN_BBXC": 19.263397, "MEAN_BBYC": 42.442115, "COMPARE": 0, "GN_ASCII": "Podgorica", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 136473, "ELEVATION": 0, "GTOPO30": 58, "TIMEZONE": "Europe/Podgorica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.472097 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.456543, 44.824708 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 21.159668, 42.666281 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220 }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tallinn", "DIFFASCII": 0, "NAMEASCII": "Tallinn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Estonia", "SOV_A3": "EST", "ADM0NAME": "Estonia", "ADM0_A3": "EST", "ADM1NAME": "Harju", "ISO_A2": "EE", "LATITUDE": 59.433877, "LONGITUDE": 24.728041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 394024, "POP_MIN": 340027, "POP_OTHER": 317949, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 588409, "LS_NAME": "Tallinn", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 340027, "MAX_POP20": 340027, "MAX_POP50": 340027, "MAX_POP300": 340027, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 130, "MAX_AREAKM": 130, "MIN_AREAMI": 50, "MAX_AREAMI": 50, "MIN_PERKM": 164, "MAX_PERKM": 164, "MIN_PERMI": 102, "MAX_PERMI": 102, "MIN_BBXMIN": 24.591667, "MAX_BBXMIN": 24.591667, "MIN_BBXMAX": 24.916667, "MAX_BBXMAX": 24.916667, "MIN_BBYMIN": 59.333333, "MAX_BBYMIN": 59.333333, "MIN_BBYMAX": 59.525, "MAX_BBYMAX": 59.525, "MEAN_BBXC": 24.746591, "MEAN_BBYC": 59.42709, "COMPARE": 0, "GN_ASCII": "Tallinn", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 394024, "ELEVATION": 0, "GTOPO30": 22, "TIMEZONE": "Europe/Tallinn", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.719238, 59.433903 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.722131 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tunis", "DIFFASCII": 0, "NAMEASCII": "Tunis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tunisia", "SOV_A3": "TUN", "ADM0NAME": "Tunisia", "ADM0_A3": "TUN", "ADM1NAME": "Tunis", "ISO_A2": "TN", "LATITUDE": 36.802778, "LONGITUDE": 10.179678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2412500, "POP_MIN": 728453, "POP_OTHER": 1675117, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2464470, "LS_NAME": "Tunis", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1831176, "MAX_POP20": 1831176, "MAX_POP50": 1838972, "MAX_POP300": 1838972, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 480, "MAX_AREAKM": 502, "MIN_AREAMI": 185, "MAX_AREAMI": 194, "MIN_PERKM": 485, "MAX_PERKM": 524, "MIN_PERMI": 302, "MAX_PERMI": 326, "MIN_BBXMIN": 9.95, "MAX_BBXMIN": 9.95, "MIN_BBXMAX": 10.497585, "MAX_BBXMAX": 10.575, "MIN_BBYMIN": 36.633333, "MAX_BBYMIN": 36.633333, "MIN_BBYMAX": 36.966667, "MAX_BBYMAX": 36.966667, "MEAN_BBXC": 10.202041, "MEAN_BBYC": 36.802974, "COMPARE": 0, "GN_ASCII": "Tunis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 38, "GN_POP": 693210, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Africa/Tunis", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 10.173340, 36.809285 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.906849 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.898038 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouémé", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411 }, "geometry": { "type": "Point", "coordinates": [ 2.526855, 6.402648 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lagos", "DIFFASCII": 0, "NAMEASCII": "Lagos", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Former capital", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Lagos", "ISO_A2": "NG", "LATITUDE": 6.443262, "LONGITUDE": 3.391531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 9466000, "POP_MIN": 1536, "POP_OTHER": 6567892, "RANK_MAX": 13, "RANK_MIN": 3, "GEONAMEID": 735497, "MEGANAME": "Lagos", "LS_NAME": "Lagos", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7147910, "MAX_POP20": 7105663, "MAX_POP50": 7411389, "MAX_POP300": 7453740, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1035, "MAX_AREAKM": 1332, "MIN_AREAMI": 400, "MAX_AREAMI": 514, "MIN_PERKM": 638, "MAX_PERKM": 882, "MIN_PERMI": 397, "MAX_PERMI": 548, "MIN_BBXMIN": 2.925412, "MAX_BBXMIN": 2.996332, "MIN_BBXMAX": 3.475, "MAX_BBXMAX": 3.475, "MIN_BBYMIN": 6.4, "MAX_BBYMIN": 6.4, "MIN_BBYMAX": 6.80087, "MAX_BBYMAX": 6.966667, "MEAN_BBXC": 3.231132, "MEAN_BBYC": 6.585848, "COMPARE": 0, "GN_ASCII": "Lagos", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1536, "ELEVATION": 0, "GTOPO30": 89, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 392, "UN_ADM0": "Nigeria", "UN_LAT": 6.45, "UN_LONG": 3.3, "POP1950": 305, "POP1955": 468, "POP1960": 762, "POP1965": 1135, "POP1970": 1414, "POP1975": 1890, "POP1980": 2572, "POP1985": 3500, "POP1990": 4764, "POP1995": 5966, "POP2000": 7233, "POP2005": 8767, "POP2010": 9466, "POP2015": 10572, "POP2020": 12403, "POP2025": 14134, "POP2050": 15796 }, "geometry": { "type": "Point", "coordinates": [ 3.383789, 6.446318 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358 }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ndjamena", "NAMEALT": "N'Djaména", "DIFFASCII": 0, "NAMEASCII": "Ndjamena", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chad", "SOV_A3": "TCD", "ADM0NAME": "Chad", "ADM0_A3": "TCD", "ADM1NAME": "Hadjer-Lamis", "ISO_A2": "TD", "LATITUDE": 12.113097, "LONGITUDE": 15.049148, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 989000, "POP_MIN": 681387, "POP_OTHER": 686347, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2427123, "MEGANAME": "N'Djaména", "LS_NAME": "Ndjamena", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 681387, "MAX_POP20": 681387, "MAX_POP50": 681387, "MAX_POP300": 681387, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 79, "MAX_AREAKM": 79, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": 15.025, "MAX_BBXMIN": 15.025, "MIN_BBXMAX": 15.133333, "MAX_BBXMAX": 15.133333, "MIN_BBYMIN": 12.066667, "MAX_BBYMIN": 12.066667, "MIN_BBYMAX": 12.183333, "MAX_BBYMAX": 12.183333, "MEAN_BBXC": 15.079167, "MEAN_BBYC": 12.120479, "COMPARE": 0, "GN_ASCII": "N'Djamena", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 721081, "ELEVATION": 0, "GTOPO30": 290, "TIMEZONE": "Africa/Ndjamena", "GEONAMESNO": "GeoNames match general.", "UN_FID": 16, "UN_ADM0": "Chad", "UN_LAT": 12.1, "UN_LONG": 15.24, "POP1950": 22, "POP1955": 40, "POP1960": 71, "POP1965": 109, "POP1970": 155, "POP1975": 231, "POP1980": 324, "POP1985": 393, "POP1990": 477, "POP1995": 579, "POP2000": 711, "POP2005": 902, "POP2010": 989, "POP2015": 1127, "POP2020": 1405, "POP2025": 1753, "POP2050": 2172, "CITYALT": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.125264 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Yaounde", "NAMEALT": "Yaoundé", "DIFFASCII": 0, "NAMEASCII": "Yaounde", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cameroon", "SOV_A3": "CMR", "ADM0NAME": "Cameroon", "ADM0_A3": "CMR", "ADM1NAME": "Centre", "ISO_A2": "CM", "LATITUDE": 3.866701, "LONGITUDE": 11.516651, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1611000, "POP_MIN": 1060587, "POP_OTHER": 1060747, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2220957, "MEGANAME": "Yaoundé", "LS_NAME": "Yaounde", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1060587, "MAX_POP20": 1060587, "MAX_POP50": 1060587, "MAX_POP300": 1060587, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 197, "MAX_AREAKM": 197, "MIN_AREAMI": 76, "MAX_AREAMI": 76, "MIN_PERKM": 116, "MAX_PERKM": 116, "MIN_PERMI": 72, "MAX_PERMI": 72, "MIN_BBXMIN": 11.433333, "MAX_BBXMIN": 11.433333, "MIN_BBXMAX": 11.6, "MAX_BBXMAX": 11.6, "MIN_BBYMIN": 3.775, "MAX_BBYMIN": 3.775, "MIN_BBYMAX": 3.983333, "MAX_BBYMAX": 3.983333, "MEAN_BBXC": 11.518344, "MEAN_BBYC": 3.865639, "COMPARE": 0, "GN_ASCII": "Yaounde", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1299369, "ELEVATION": 0, "GTOPO30": 733, "TIMEZONE": "Africa/Douala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 9, "UN_ADM0": "Cameroon", "UN_LAT": 3.86, "UN_LONG": 11.51, "POP1950": 32, "POP1955": 49, "POP1960": 75, "POP1965": 112, "POP1970": 183, "POP1975": 292, "POP1980": 415, "POP1985": 578, "POP1990": 754, "POP1995": 948, "POP2000": 1192, "POP2005": 1489, "POP2010": 1611, "POP2015": 1787, "POP2020": 2058, "POP2025": 2312, "POP2050": 2549, "CITYALT": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athínai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athínai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nicosia", "DIFFASCII": 0, "NAMEASCII": "Nicosia", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Capital of both", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cyprus", "SOV_A3": "CYP", "ADM0NAME": "Cyprus", "ADM0_A3": "CYP", "ISO_A2": "CY", "LATITUDE": 35.166676, "LONGITUDE": 33.366635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224300, "POP_MIN": 200452, "POP_OTHER": 222985, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 146268, "LS_NAME": "Nicosia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 224300, "MAX_POP20": 224300, "MAX_POP50": 224300, "MAX_POP300": 224300, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 128, "MAX_AREAKM": 128, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 68, "MAX_PERMI": 68, "MIN_BBXMIN": 33.275, "MAX_BBXMIN": 33.275, "MIN_BBXMAX": 33.425, "MAX_BBXMAX": 33.425, "MIN_BBYMIN": 35.041667, "MAX_BBYMIN": 35.041667, "MIN_BBYMAX": 35.225, "MAX_BBYMAX": 35.225, "MEAN_BBXC": 33.352244, "MEAN_BBYC": 35.15, "COMPARE": 0, "GN_ASCII": "Nicosia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 200452, "ELEVATION": 0, "GTOPO30": 128, "TIMEZONE": "Asia/Nicosia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 33.376465, 35.173808 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123, "MAX_POP20": 15091561, "MAX_POP50": 29872827, "MAX_POP300": 30682197, "MAX_POP310": 30696820, "MAX_NATSCA": 300, "MIN_AREAKM": 1479, "MAX_AREAKM": 4900, "MIN_AREAMI": 571, "MAX_AREAMI": 1892, "MIN_PERKM": 1365, "MAX_PERKM": 5010, "MIN_PERMI": 848, "MAX_PERMI": 3113, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 7734614, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494, "POP1955": 3029, "POP1960": 3680, "POP1965": 4738, "POP1970": 5585, "POP1975": 6450, "POP1980": 7349, "POP1985": 8328, "POP1990": 9061, "POP1995": 9707, "POP2000": 10534, "POP2005": 11487, "POP2010": 11893, "POP2015": 12503, "POP2020": 13465, "POP2025": 14451, "POP2050": 15561, "CITYALT": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.050077 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yerevan", "DIFFASCII": 0, "NAMEASCII": "Yerevan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Armenia", "SOV_A3": "ARM", "ADM0NAME": "Armenia", "ADM0_A3": "ARM", "ADM1NAME": "Erevan", "ISO_A2": "AM", "LATITUDE": 40.181151, "LONGITUDE": 44.513551, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1102000, "POP_MIN": 1093485, "POP_OTHER": 1154748, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 616052, "MEGANAME": "Yerevan", "LS_NAME": "Yerevan", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1200842, "MAX_POP20": 1200842, "MAX_POP50": 1200842, "MAX_POP300": 1200842, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 191, "MAX_AREAKM": 191, "MIN_AREAMI": 74, "MAX_AREAMI": 74, "MIN_PERKM": 166, "MAX_PERKM": 166, "MIN_PERMI": 103, "MAX_PERMI": 103, "MIN_BBXMIN": 44.391667, "MAX_BBXMIN": 44.391667, "MIN_BBXMAX": 44.6, "MAX_BBXMAX": 44.6, "MIN_BBYMIN": 39.925, "MAX_BBYMIN": 39.925, "MIN_BBYMAX": 40.241667, "MAX_BBYMAX": 40.241667, "MEAN_BBXC": 44.506293, "MEAN_BBYC": 40.127356, "COMPARE": 0, "GN_ASCII": "Yerevan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1093485, "ELEVATION": 0, "GTOPO30": 1002, "TIMEZONE": "Asia/Yerevan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 377, "UN_ADM0": "Armenia", "UN_LAT": 40.2, "UN_LONG": 44.53, "POP1950": 341, "POP1955": 431, "POP1960": 538, "POP1965": 648, "POP1970": 778, "POP1975": 911, "POP1980": 1042, "POP1985": 1123, "POP1990": 1175, "POP1995": 1142, "POP2000": 1111, "POP2005": 1103, "POP2010": 1102, "POP2015": 1102, "POP2020": 1102, "POP2025": 1102, "POP2050": 1102 }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060 }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amman", "DIFFASCII": 0, "NAMEASCII": "Amman", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Jordan", "SOV_A3": "JOR", "ADM0NAME": "Jordan", "ADM0_A3": "JOR", "ADM1NAME": "Amman", "ISO_A2": "JO", "LATITUDE": 31.950025, "LONGITUDE": 35.9333, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1060000, "POP_MIN": 1060000, "POP_OTHER": 2633729, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 250441, "MEGANAME": "Amman", "LS_NAME": "Amman", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2725138, "MAX_POP20": 3684787, "MAX_POP50": 3684787, "MAX_POP300": 3684787, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 403, "MAX_AREAKM": 545, "MIN_AREAMI": 156, "MAX_AREAMI": 210, "MIN_PERKM": 258, "MAX_PERKM": 361, "MIN_PERMI": 160, "MAX_PERMI": 224, "MIN_BBXMIN": 35.775, "MAX_BBXMIN": 35.775, "MIN_BBXMAX": 36.041667, "MAX_BBXMAX": 36.158333, "MIN_BBYMIN": 31.783333, "MAX_BBYMIN": 31.783333, "MIN_BBYMAX": 32.083333, "MAX_BBYMAX": 32.166667, "MEAN_BBXC": 35.928711, "MEAN_BBYC": 31.948606, "COMPARE": 0, "GN_ASCII": "Amman", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1275857, "ELEVATION": 0, "GTOPO30": 765, "TIMEZONE": "Asia/Amman", "GEONAMESNO": "GeoNames match general.", "UN_FID": 322, "UN_ADM0": "Jordan", "UN_LAT": 31.94, "UN_LONG": 35.93, "POP1950": 90, "POP1955": 140, "POP1960": 218, "POP1965": 299, "POP1970": 388, "POP1975": 500, "POP1980": 636, "POP1985": 736, "POP1990": 851, "POP1995": 973, "POP2000": 1007, "POP2005": 1042, "POP2010": 1060, "POP2015": 1106, "POP2020": 1185, "POP2025": 1268, "POP2050": 1359 }, "geometry": { "type": "Point", "coordinates": [ 35.925293, 31.952162 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.329588 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sanaa", "NAMEALT": "Sana'a'", "DIFFASCII": 0, "NAMEASCII": "Sanaa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Yemen", "SOV_A3": "YEM", "ADM0NAME": "Yemen", "ADM0_A3": "YEM", "ADM1NAME": "Amanat Al Asimah", "ISO_A2": "YE", "LATITUDE": 15.354733, "LONGITUDE": 44.206593, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2008000, "POP_MIN": 1835853, "POP_OTHER": 1742507, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 71137, "MEGANAME": "Sana'a'", "LS_NAME": "Sanaa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1835853, "MAX_POP20": 1835853, "MAX_POP50": 1835853, "MAX_POP300": 1835853, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 160, "MAX_AREAKM": 160, "MIN_AREAMI": 62, "MAX_AREAMI": 62, "MIN_PERKM": 132, "MAX_PERKM": 132, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": 44.15, "MAX_BBXMIN": 44.15, "MIN_BBXMAX": 44.258333, "MAX_BBXMAX": 44.258333, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.508333, "MAX_BBYMAX": 15.508333, "MEAN_BBXC": 44.206615, "MEAN_BBYC": 15.376031, "COMPARE": 0, "GN_ASCII": "Sanaa", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 587, "UN_ADM0": "Yemen", "UN_LAT": 15.36, "UN_LONG": 44.2, "POP1950": 46, "POP1955": 58, "POP1960": 72, "POP1965": 89, "POP1970": 111, "POP1975": 141, "POP1980": 238, "POP1985": 402, "POP1990": 653, "POP1995": 1034, "POP2000": 1365, "POP2005": 1801, "POP2010": 2008, "POP2015": 2345, "POP2020": 2955, "POP2025": 3636, "POP2050": 4382, "CITYALT": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.347762 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Addis Ababa", "DIFFASCII": 0, "NAMEASCII": "Addis Ababa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ethiopia", "SOV_A3": "ETH", "ADM0NAME": "Ethiopia", "ADM0_A3": "ETH", "ADM1NAME": "Addis Ababa", "ISO_A2": "ET", "LATITUDE": 9.03331, "LONGITUDE": 38.700004, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3100000, "POP_MIN": 2757729, "POP_OTHER": 3013653, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 344979, "MEGANAME": "Addis Ababa", "LS_NAME": "Addis Ababa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2984087, "MAX_POP20": 3176486, "MAX_POP50": 3491912, "MAX_POP300": 3450173, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 462, "MAX_AREAKM": 1182, "MIN_AREAMI": 178, "MAX_AREAMI": 457, "MIN_PERKM": 397, "MAX_PERKM": 1325, "MIN_PERMI": 247, "MAX_PERMI": 823, "MIN_BBXMIN": 38.575, "MAX_BBXMIN": 38.575, "MIN_BBXMAX": 38.966667, "MAX_BBXMAX": 39.483333, "MIN_BBYMIN": 8.033333, "MAX_BBYMIN": 8.67178, "MIN_BBYMAX": 9.125, "MAX_BBYMAX": 9.125, "MEAN_BBXC": 38.919464, "MEAN_BBYC": 8.825709, "COMPARE": 0, "GN_ASCII": "Addis Ababa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 2757729, "ELEVATION": 0, "GTOPO30": 2363, "TIMEZONE": "Africa/Addis_Ababa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 180, "UN_ADM0": "Ethiopia", "UN_LAT": 9.02, "UN_LONG": 38.7, "POP1950": 392, "POP1955": 451, "POP1960": 519, "POP1965": 597, "POP1970": 729, "POP1975": 926, "POP1980": 1175, "POP1985": 1476, "POP1990": 1791, "POP1995": 2157, "POP2000": 2493, "POP2005": 2902, "POP2010": 3100, "POP2015": 3453, "POP2020": 4184, "POP2025": 5083, "POP2050": 6156 }, "geometry": { "type": "Point", "coordinates": [ 38.693848, 9.037003 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 44.055176, 9.557417 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892 }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEALT": "Ürümqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102, "MEGANAME": "Ürümqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046, "MAX_POP20": 2066046, "MAX_POP50": 2066046, "MAX_POP300": 2066046, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 361, "MAX_AREAKM": 361, "MIN_AREAMI": 139, "MAX_AREAMI": 139, "MIN_PERKM": 318, "MAX_PERKM": 318, "MIN_PERMI": 198, "MAX_PERMI": 198, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13, "GN_POP": 1508225, "ELEVATION": 0, "GTOPO30": 915, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253, "POP1955": 312, "POP1960": 384, "POP1965": 472, "POP1970": 581, "POP1975": 715, "POP1980": 881, "POP1985": 1029, "POP1990": 1161, "POP1995": 1417, "POP2000": 1730, "POP2005": 2025, "POP2010": 2151, "POP2015": 2340, "POP2020": 2620, "POP2025": 2851, "POP2050": 3038, "CITYALT": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.583008, 43.802819 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Baku", "DIFFASCII": 0, "NAMEASCII": "Baku", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Azerbaijan", "SOV_A3": "AZE", "ADM0NAME": "Azerbaijan", "ADM0_A3": "AZE", "ADM1NAME": "Baki", "ISO_A2": "AZ", "LATITUDE": 40.395272, "LONGITUDE": 49.862217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2122300, "POP_MIN": 1892000, "POP_OTHER": 1518801, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 587084, "MEGANAME": "Baku", "LS_NAME": "Baku", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1581087, "MAX_POP20": 1581475, "MAX_POP50": 1581475, "MAX_POP300": 1581475, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 249, "MIN_AREAMI": 95, "MAX_AREAMI": 96, "MIN_PERKM": 174, "MAX_PERKM": 179, "MIN_PERMI": 108, "MAX_PERMI": 111, "MIN_BBXMIN": 49.7, "MAX_BBXMIN": 49.716667, "MIN_BBXMAX": 50.016667, "MAX_BBXMAX": 50.016667, "MIN_BBYMIN": 40.316667, "MAX_BBYMIN": 40.316667, "MIN_BBYMAX": 40.5, "MAX_BBYMAX": 40.5, "MEAN_BBXC": 49.881373, "MEAN_BBYC": 40.41632, "COMPARE": 0, "GN_ASCII": "Baku", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1116513, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Baku", "GEONAMESNO": "GeoNames match general.", "UN_FID": 200, "UN_ADM0": "Azerbaijan", "UN_LAT": 40.32, "UN_LONG": 49.81, "POP1950": 897, "POP1955": 940, "POP1960": 1005, "POP1965": 1132, "POP1970": 1274, "POP1975": 1429, "POP1980": 1574, "POP1985": 1660, "POP1990": 1733, "POP1995": 1766, "POP2000": 1806, "POP2005": 1867, "POP2010": 1892, "POP2015": 1931, "POP2020": 2006, "POP2025": 2097, "POP2050": 2187 }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.396764 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.966309, 29.363027 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Manama", "DIFFASCII": 0, "NAMEASCII": "Manama", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahrain", "SOV_A3": "BHR", "ADM0NAME": "Bahrain", "ADM0_A3": "BHR", "ISO_A2": "BH", "LATITUDE": 26.236136, "LONGITUDE": 50.583052, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 563920, "POP_MIN": 157474, "POP_OTHER": 563666, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 290340, "LS_NAME": "Manama", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 563920, "MAX_POP20": 563920, "MAX_POP50": 563920, "MAX_POP300": 563920, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 178, "MAX_AREAKM": 178, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 115, "MAX_PERMI": 115, "MIN_BBXMIN": 50.441667, "MAX_BBXMIN": 50.441667, "MIN_BBXMAX": 50.633333, "MAX_BBXMAX": 50.633333, "MIN_BBYMIN": 26.05, "MAX_BBYMIN": 26.05, "MIN_BBYMAX": 26.25, "MAX_BBYMAX": 26.25, "MEAN_BBXC": 50.542529, "MEAN_BBYC": 26.164763, "COMPARE": 0, "GN_ASCII": "Manama", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 147074, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Bahrain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Doha", "DIFFASCII": 0, "NAMEASCII": "Doha", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Qatar", "SOV_A3": "QAT", "ADM0NAME": "Qatar", "ADM0_A3": "QAT", "ADM1NAME": "Ad Dawhah", "ISO_A2": "QA", "LATITUDE": 25.286556, "LONGITUDE": 51.532968, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 1450000, "POP_MIN": 731310, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 290030, "LS_NAME": "Doha", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 731310, "MAX_POP20": 731310, "MAX_POP50": 731310, "MAX_POP300": 731310, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 270, "MAX_AREAKM": 270, "MIN_AREAMI": 104, "MAX_AREAMI": 104, "MIN_PERKM": 205, "MAX_PERKM": 205, "MIN_PERMI": 127, "MAX_PERMI": 127, "MIN_BBXMIN": 51.358333, "MAX_BBXMIN": 51.358333, "MIN_BBXMAX": 51.583333, "MAX_BBXMAX": 51.583333, "MIN_BBYMIN": 25.158333, "MAX_BBYMIN": 25.158333, "MIN_BBYMAX": 25.408333, "MAX_BBYMAX": 25.408333, "MEAN_BBXC": 51.468439, "MEAN_BBYC": 25.281154, "COMPARE": 0, "GN_ASCII": "Doha", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 344939, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Asia/Qatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 51.525879, 25.284438 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.467151 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861, "MAX_POP20": 586861, "MAX_POP50": 586861, "MAX_POP300": 586861, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 797000, "ELEVATION": 0, "GTOPO30": 69, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.604262 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.373535, 2.064982 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kabul", "DIFFASCII": 0, "NAMEASCII": "Kabul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Afghanistan", "SOV_A3": "AFG", "ADM0NAME": "Afghanistan", "ADM0_A3": "AFG", "ADM1NAME": "Kabul", "ISO_A2": "AF", "LATITUDE": 34.51669, "LONGITUDE": 69.18326, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3277000, "POP_MIN": 3043532, "POP_OTHER": 3475519, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1138958, "MEGANAME": "Kabul", "LS_NAME": "Kabul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3720671, "MAX_POP20": 3720671, "MAX_POP50": 4803365, "MAX_POP300": 4793793, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 1471, "MIN_AREAMI": 229, "MAX_AREAMI": 568, "MIN_PERKM": 409, "MAX_PERKM": 1100, "MIN_PERMI": 254, "MAX_PERMI": 683, "MIN_BBXMIN": 68.866667, "MAX_BBXMIN": 68.866667, "MIN_BBXMAX": 69.308333, "MAX_BBXMAX": 69.783333, "MIN_BBYMIN": 34.433333, "MAX_BBYMIN": 34.433333, "MIN_BBYMAX": 34.768813, "MAX_BBYMAX": 35.166667, "MEAN_BBXC": 69.144173, "MEAN_BBYC": 34.688498, "COMPARE": 0, "GN_ASCII": "Kabul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 3043532, "ELEVATION": 0, "GTOPO30": 1808, "TIMEZONE": "Asia/Kabul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 320, "UN_ADM0": "Afghanistan", "UN_LAT": 34.53, "UN_LONG": 69.13, "POP1950": 129, "POP1955": 184, "POP1960": 263, "POP1965": 369, "POP1970": 472, "POP1975": 674, "POP1980": 978, "POP1985": 1160, "POP1990": 1306, "POP1995": 1616, "POP2000": 1963, "POP2005": 2994, "POP2010": 3277, "POP2015": 3768, "POP2020": 4730, "POP2025": 5836, "POP2050": 7175 }, "geometry": { "type": "Point", "coordinates": [ 69.191895, 34.524661 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 77.189941, 28.594169 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356, "MAX_POP20": 742356, "MAX_POP50": 7482035, "MAX_POP300": 7482969, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 772, "MAX_AREAKM": 5463, "MIN_AREAMI": 298, "MAX_AREAMI": 2109, "MIN_PERKM": 545, "MAX_PERKM": 4154, "MIN_PERMI": 339, "MAX_PERMI": 2581, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 601600, "ELEVATION": 0, "GTOPO30": 497, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36, "POP1955": 41, "POP1960": 45, "POP1965": 56, "POP1970": 70, "POP1975": 107, "POP1980": 189, "POP1985": 260, "POP1990": 343, "POP1995": 452, "POP2000": 594, "POP2005": 732, "POP2010": 780, "POP2015": 851, "POP2020": 988, "POP2025": 1148, "POP2050": 1320 }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Bangalore", "NAMEALT": "Bengaluru", "DIFFASCII": 0, "NAMEASCII": "Bangalore", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Karnataka", "ISO_A2": "IN", "LATITUDE": 12.969995, "LONGITUDE": 77.56001, "CHANGED": 3, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 6787000, "POP_MIN": 5104047, "POP_OTHER": 8102712, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1277333, "MEGANAME": "Bangalore", "LS_NAME": "Bangalore", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8181096, "MAX_POP20": 8181096, "MAX_POP50": 8553953, "MAX_POP300": 8553953, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2443, "MAX_AREAKM": 2836, "MIN_AREAMI": 943, "MAX_AREAMI": 1095, "MIN_PERKM": 1908, "MAX_PERKM": 2412, "MIN_PERMI": 1186, "MAX_PERMI": 1499, "MIN_BBXMIN": 77.275, "MAX_BBXMIN": 77.275, "MIN_BBXMAX": 77.996673, "MAX_BBXMAX": 78.15, "MIN_BBYMIN": 12.325, "MAX_BBYMIN": 12.325, "MIN_BBYMAX": 13.333333, "MAX_BBYMAX": 13.333333, "MEAN_BBXC": 77.703019, "MEAN_BBYC": 12.841733, "COMPARE": 1, "GN_ASCII": "Bengaluru", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 5104047, "ELEVATION": 920, "GTOPO30": 914, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 219, "UN_ADM0": "India", "UN_LAT": 12.97, "UN_LONG": 77.58, "POP1950": 746, "POP1955": 939, "POP1960": 1166, "POP1965": 1377, "POP1970": 1615, "POP1975": 2111, "POP1980": 2812, "POP1985": 3395, "POP1990": 4036, "POP1995": 4744, "POP2000": 5567, "POP2005": 6465, "POP2010": 6787, "POP2015": 7229, "POP2020": 7967, "POP2025": 8795, "POP2050": 9719 }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.961736 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Male", "DIFFASCII": 0, "NAMEASCII": "Male", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Maldives", "SOV_A3": "MDV", "ADM0NAME": "Maldives", "ADM0_A3": "MDV", "ISO_A2": "MV", "LATITUDE": 4.166708, "LONGITUDE": 73.499947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 112927, "POP_MIN": 103693, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3174186, "LS_NAME": "Male", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 112927, "MAX_POP20": 112927, "MAX_POP50": 112927, "MAX_POP300": 112927, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 73.5, "MAX_BBXMIN": 73.5, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.516667, "MIN_BBYMIN": 4.166667, "MAX_BBYMIN": 4.166667, "MIN_BBYMAX": 4.183333, "MAX_BBYMAX": 4.183333, "MEAN_BBXC": 73.508333, "MEAN_BBYC": 4.175, "COMPARE": 0, "GN_ASCII": "Male", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 17, "GN_POP": 2138, "ELEVATION": 0, "GTOPO30": 672, "TIMEZONE": "Europe/Rome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.171115 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015 }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871 }, "geometry": { "type": "Point", "coordinates": [ 36.804199, -1.274309 ] } } ] } ] } , @@ -367,13 +365,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104 }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363 }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.162401 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 159.938965, -9.427387 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.515836 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.124971 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Wellington", "DIFFASCII": 0, "NAMEASCII": "Wellington", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Manawatu-Wanganui", "ISO_A2": "NZ", "LATITUDE": -41.299974, "LONGITUDE": 174.783274, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 393400, "POP_MIN": 199200, "POP_OTHER": 140594, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2144168, "LS_NAME": "Wellington", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144164, "MAX_POP20": 144164, "MAX_POP50": 144164, "MAX_POP300": 144164, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 79, "MAX_PERKM": 79, "MIN_PERMI": 49, "MAX_PERMI": 49, "MIN_BBXMIN": 174.725, "MAX_BBXMIN": 174.725, "MIN_BBXMAX": 174.841667, "MAX_BBXMAX": 174.841667, "MIN_BBYMIN": -41.35, "MAX_BBYMIN": -41.35, "MIN_BBYMAX": -41.2, "MAX_BBYMAX": -41.2, "MEAN_BBXC": 174.78792, "MEAN_BBYC": -41.285539, "COMPARE": 0, "GN_ASCII": "Wellington", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 5428, "ELEVATION": 0, "GTOPO30": 304, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 174.792480, -41.294317 ] } } ] } @@ -383,29 +381,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015 }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Chengdu", "DIFFASCII": 0, "NAMEASCII": "Chengdu", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Sichuan", "ISO_A2": "CN", "LATITUDE": 30.67, "LONGITUDE": 104.070019, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4123000, "POP_MIN": 3950437, "POP_OTHER": 11622929, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1815286, "MEGANAME": "Chengdu", "LS_NAME": "Chengdu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9954810, "MAX_POP20": 11359674, "MAX_POP50": 24374217, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 5912, "MAX_AREAKM": 24244, "MIN_AREAMI": 2283, "MAX_AREAMI": 9361, "MIN_PERKM": 2296, "MAX_PERKM": 11900, "MIN_PERMI": 1427, "MAX_PERMI": 7394, "MIN_BBXMIN": 103.125, "MAX_BBXMIN": 103.383333, "MIN_BBXMAX": 104.433333, "MAX_BBXMAX": 105.375, "MIN_BBYMIN": 28.738768, "MAX_BBYMIN": 30.065456, "MIN_BBYMAX": 31.083333, "MAX_BBYMAX": 31.341667, "MEAN_BBXC": 104.039242, "MEAN_BBYC": 30.486458, "COMPARE": 0, "GN_ASCII": "Chengdu", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 3950437, "ELEVATION": 0, "GTOPO30": 529, "TIMEZONE": "Asia/Chongqing", "GEONAMESNO": "GeoNames match general.", "UN_FID": 31, "UN_ADM0": "China", "UN_LAT": 30.67, "UN_LONG": 104.07, "POP1950": 768, "POP1955": 922, "POP1960": 1106, "POP1965": 1327, "POP1970": 1592, "POP1975": 1911, "POP1980": 2293, "POP1985": 2639, "POP1990": 2955, "POP1995": 3403, "POP2000": 3919, "POP2005": 4065, "POP2010": 4123, "POP2015": 4266, "POP2020": 4634, "POP2025": 5014, "POP2050": 5320 }, "geometry": { "type": "Point", "coordinates": [ 104.062500, 30.675715 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "Former capital", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820, "MAX_POP20": 3301820, "MAX_POP50": 3301820, "MAX_POP300": 3301820, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 199, "MAX_PERKM": 199, "MIN_PERMI": 123, "MAX_PERMI": 123, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 4477638, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302, "POP1955": 1440, "POP1960": 1592, "POP1965": 1760, "POP1970": 1946, "POP1975": 2151, "POP1980": 2378, "POP1985": 2629, "POP1990": 2907, "POP1995": 3213, "POP2000": 3553, "POP2005": 3928, "POP2010": 4088, "POP2015": 4348, "POP2020": 4841, "POP2025": 5361, "POP2050": 5869, "CITYALT": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461 }, "geometry": { "type": "Point", "coordinates": [ 96.108398, 19.766704 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vientiane", "DIFFASCII": 0, "NAMEASCII": "Vientiane", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Laos", "SOV_A3": "LAO", "ADM0NAME": "Laos", "ADM0_A3": "LAO", "ADM1NAME": "Vientiane [prefecture]", "ISO_A2": "LA", "LATITUDE": 17.966693, "LONGITUDE": 102.59998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 754000, "POP_MIN": 570348, "POP_OTHER": 469811, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1651944, "LS_NAME": "Vientiane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 471927, "MAX_POP20": 471927, "MAX_POP50": 570348, "MAX_POP300": 570348, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 166, "MAX_AREAKM": 243, "MIN_AREAMI": 64, "MAX_AREAMI": 94, "MIN_PERKM": 170, "MAX_PERKM": 283, "MIN_PERMI": 106, "MAX_PERMI": 176, "MIN_BBXMIN": 102.491667, "MAX_BBXMIN": 102.491667, "MIN_BBXMAX": 102.725, "MAX_BBXMAX": 102.816667, "MIN_BBYMIN": 17.8, "MAX_BBYMIN": 17.875, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": 102.648054, "MEAN_BBYC": 17.967124, "COMPARE": 0, "GN_ASCII": "Vientiane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 27, "GN_POP": 196731, "ELEVATION": 0, "GTOPO30": 174, "TIMEZONE": "Asia/Vientiane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 102.590332, 17.957832 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Hanoi", "NAMEALT": "Hà Noi", "DIFFASCII": 0, "NAMEASCII": "Hanoi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Vietnam", "SOV_A3": "VNM", "ADM0NAME": "Vietnam", "ADM0_A3": "VNM", "ADM1NAME": "Thái Nguyên", "ISO_A2": "VN", "LATITUDE": 21.033327, "LONGITUDE": 105.850014, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4378000, "POP_MIN": 1431270, "POP_OTHER": 5466347, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1581130, "MEGANAME": "Hà Noi", "LS_NAME": "Hanoi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5620806, "MAX_POP20": 7346227, "MAX_POP50": 16406759, "MAX_POP300": 23700631, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2512, "MAX_AREAKM": 14049, "MIN_AREAMI": 970, "MAX_AREAMI": 5424, "MIN_PERKM": 1175, "MAX_PERKM": 10267, "MIN_PERMI": 730, "MAX_PERMI": 6380, "MIN_BBXMIN": 104.975, "MAX_BBXMIN": 105.616287, "MIN_BBXMAX": 106.2294, "MAX_BBXMAX": 106.808333, "MIN_BBYMIN": 19.283333, "MAX_BBYMIN": 20.620237, "MIN_BBYMAX": 21.319209, "MAX_BBYMAX": 21.783333, "MEAN_BBXC": 105.892881, "MEAN_BBYC": 20.873406, "COMPARE": 0, "GN_ASCII": "Ha Noi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 1431270, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Asia/Ho_Chi_Minh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 451, "UN_ADM0": "Viet Nam", "UN_LAT": 21.03, "UN_LONG": 105.82, "POP1950": 280, "POP1955": 425, "POP1960": 644, "POP1965": 917, "POP1970": 1307, "POP1975": 1884, "POP1980": 2606, "POP1985": 2854, "POP1990": 3126, "POP1995": 3424, "POP2000": 3752, "POP2005": 4170, "POP2010": 4378, "POP2015": 4723, "POP2020": 5357, "POP2025": 6036, "POP2050": 6754, "CITYALT": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.842285, 21.043491 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104 }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861, "MAX_POP20": 11120470, "MAX_POP50": 16510327, "MAX_POP300": 23647944, "MAX_POP310": 137121250, "MAX_NATSCA": 300, "MIN_AREAKM": 2512, "MAX_AREAKM": 118844, "MIN_AREAMI": 970, "MAX_AREAMI": 45886, "MIN_PERKM": 1837, "MAX_PERKM": 93615, "MIN_PERMI": 1141, "MAX_PERMI": 58169, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22, "GN_POP": 7480601, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331, "POP1955": 4628, "POP1960": 4945, "POP1965": 5284, "POP1970": 5646, "POP1975": 6034, "POP1980": 6448, "POP1985": 6890, "POP1990": 7362, "POP1995": 8486, "POP2000": 9782, "POP2005": 10717, "POP2010": 11106, "POP2015": 11741, "POP2020": 12842, "POP2025": 13807, "POP2050": 14545 }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Shanghai", "DIFFASCII": 0, "NAMEASCII": "Shanghai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Shanghai", "ISO_A2": "CN", "LATITUDE": 31.216452, "LONGITUDE": 121.436505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 14987000, "POP_MIN": 14608512, "POP_OTHER": 16803572, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1796236, "MEGANAME": "Shanghai", "LS_NAME": "Shanghai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 16172884, "MAX_POP20": 16172884, "MAX_POP50": 26630672, "MAX_POP300": 26631586, "MAX_POP310": 40576904, "MAX_NATSCA": 300, "MIN_AREAKM": 3792, "MAX_AREAKM": 16400, "MIN_AREAMI": 1464, "MAX_AREAMI": 6332, "MIN_PERKM": 2219, "MAX_PERKM": 12342, "MIN_PERMI": 1379, "MAX_PERMI": 7669, "MIN_BBXMIN": 119.016667, "MAX_BBXMIN": 121.013757, "MIN_BBXMAX": 121.9, "MAX_BBXMAX": 121.9, "MIN_BBYMIN": 30.191667, "MAX_BBYMIN": 30.7, "MIN_BBYMAX": 31.65, "MAX_BBYMAX": 32.308333, "MEAN_BBXC": 121.053901, "MEAN_BBYC": 31.253289, "COMPARE": 0, "GN_ASCII": "Shanghai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 14608512, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Asia/Shanghai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 98, "UN_ADM0": "China", "UN_LAT": 31.24, "UN_LONG": 121.47, "POP1950": 6066, "POP1955": 6299, "POP1960": 6542, "POP1965": 6793, "POP1970": 7055, "POP1975": 7326, "POP1980": 7608, "POP1985": 7901, "POP1990": 8205, "POP1995": 10423, "POP2000": 13243, "POP2005": 14503, "POP2010": 14987, "POP2015": 15789, "POP2020": 17214, "POP2025": 18466, "POP2050": 19412 }, "geometry": { "type": "Point", "coordinates": [ 121.442871, 31.222197 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797, "MAX_POP20": 2498797, "MAX_POP50": 2498797, "MAX_POP300": 2498797, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 446, "MAX_AREAKM": 447, "MIN_AREAMI": 172, "MAX_AREAMI": 173, "MIN_PERKM": 510, "MAX_PERKM": 511, "MIN_PERMI": 317, "MAX_PERMI": 318, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 3222000, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516, "POP1955": 577, "POP1960": 646, "POP1965": 769, "POP1970": 987, "POP1975": 1348, "POP1980": 1842, "POP1985": 2195, "POP1990": 2526, "POP1995": 2838, "POP2000": 3117, "POP2005": 3265, "POP2010": 3300, "POP2015": 3346, "POP2020": 3434, "POP2025": 3537, "POP2050": 3630 }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.027719 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305 }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, de fa", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575, "MAX_POP20": 3077575, "MAX_POP50": 3077575, "MAX_POP300": 23366503, "MAX_POP310": 26749011, "MAX_NATSCA": 300, "MIN_AREAKM": 67, "MAX_AREAKM": 8820, "MIN_AREAMI": 26, "MAX_AREAMI": 3405, "MIN_PERKM": 46, "MAX_PERKM": 5298, "MIN_PERMI": 29, "MAX_PERMI": 3292, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 10444527, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544, "POP1955": 1872, "POP1960": 2274, "POP1965": 2829, "POP1970": 3534, "POP1975": 4999, "POP1980": 5955, "POP1985": 6888, "POP1990": 7973, "POP1995": 9401, "POP2000": 9958, "POP2005": 10761, "POP2010": 11100, "POP2015": 11662, "POP2020": 12786, "POP2025": 13892, "POP2050": 14808 }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.493196 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.759666 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ISO_A2": "MH", "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084, "MAX_POP20": 2084, "MAX_POP50": 2084, "MAX_POP300": 2084, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 20500, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.926427 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_2_-Bf20_-rf20_-pb.json b/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_2_-Bf20_-rf20_-pb.json index be9f7a0c9..e19ac5ae8 100644 --- a/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_2_-Bf20_-rf20_-pb.json +++ b/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_2_-Bf20_-rf20_-pb.json @@ -18,13 +18,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.380028 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.754083 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.828799 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436 }, "geometry": { "type": "Point", "coordinates": [ 13.359375, 52.536273 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.390229 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Yaounde", "NAMEALT": "Yaoundé", "DIFFASCII": 0, "NAMEASCII": "Yaounde", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cameroon", "SOV_A3": "CMR", "ADM0NAME": "Cameroon", "ADM0_A3": "CMR", "ADM1NAME": "Centre", "ISO_A2": "CM", "LATITUDE": 3.866701, "LONGITUDE": 11.516651, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1611000, "POP_MIN": 1060587, "POP_OTHER": 1060747, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2220957, "MEGANAME": "Yaoundé", "LS_NAME": "Yaounde", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1060587, "MAX_POP20": 1060587, "MAX_POP50": 1060587, "MAX_POP300": 1060587, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 197, "MAX_AREAKM": 197, "MIN_AREAMI": 76, "MAX_AREAMI": 76, "MIN_PERKM": 116, "MAX_PERKM": 116, "MIN_PERMI": 72, "MAX_PERMI": 72, "MIN_BBXMIN": 11.433333, "MAX_BBXMIN": 11.433333, "MIN_BBXMAX": 11.6, "MAX_BBXMAX": 11.6, "MIN_BBYMIN": 3.775, "MAX_BBYMIN": 3.775, "MIN_BBYMAX": 3.983333, "MAX_BBYMAX": 3.983333, "MEAN_BBXC": 11.518344, "MEAN_BBYC": 3.865639, "COMPARE": 0, "GN_ASCII": "Yaounde", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1299369, "ELEVATION": 0, "GTOPO30": 733, "TIMEZONE": "Africa/Douala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 9, "UN_ADM0": "Cameroon", "UN_LAT": 3.86, "UN_LONG": 11.51, "POP1950": 32, "POP1955": 49, "POP1960": 75, "POP1965": 112, "POP1970": 183, "POP1975": 292, "POP1980": 415, "POP1985": 578, "POP1990": 754, "POP1995": 948, "POP2000": 1192, "POP2005": 1489, "POP2010": 1611, "POP2015": 1787, "POP2020": 2058, "POP2025": 2312, "POP2050": 2549, "CITYALT": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112 }, "geometry": { "type": "Point", "coordinates": [ 106.875000, 47.931066 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Bangalore", "NAMEALT": "Bengaluru", "DIFFASCII": 0, "NAMEASCII": "Bangalore", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Karnataka", "ISO_A2": "IN", "LATITUDE": 12.969995, "LONGITUDE": 77.56001, "CHANGED": 3, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 6787000, "POP_MIN": 5104047, "POP_OTHER": 8102712, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1277333, "MEGANAME": "Bangalore", "LS_NAME": "Bangalore", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8181096, "MAX_POP20": 8181096, "MAX_POP50": 8553953, "MAX_POP300": 8553953, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2443, "MAX_AREAKM": 2836, "MIN_AREAMI": 943, "MAX_AREAMI": 1095, "MIN_PERKM": 1908, "MAX_PERKM": 2412, "MIN_PERMI": 1186, "MAX_PERMI": 1499, "MIN_BBXMIN": 77.275, "MAX_BBXMIN": 77.275, "MIN_BBXMAX": 77.996673, "MAX_BBXMAX": 78.15, "MIN_BBYMIN": 12.325, "MAX_BBYMIN": 12.325, "MIN_BBYMAX": 13.333333, "MAX_BBYMAX": 13.333333, "MEAN_BBXC": 77.703019, "MEAN_BBYC": 12.841733, "COMPARE": 1, "GN_ASCII": "Bengaluru", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 5104047, "ELEVATION": 920, "GTOPO30": 914, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 219, "UN_ADM0": "India", "UN_LAT": 12.97, "UN_LONG": 77.58, "POP1950": 746, "POP1955": 939, "POP1960": 1166, "POP1965": 1377, "POP1970": 1615, "POP1975": 2111, "POP1980": 2812, "POP1985": 3395, "POP1990": 4036, "POP1995": 4744, "POP2000": 5567, "POP2005": 6465, "POP2010": 6787, "POP2015": 7229, "POP2020": 7967, "POP2025": 8795, "POP2050": 9719 }, "geometry": { "type": "Point", "coordinates": [ 77.519531, 12.983148 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Dar es Salaam", "DIFFASCII": 0, "NAMEASCII": "Dar es Salaam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dar-Es-Salaam", "ISO_A2": "TZ", "LATITUDE": -6.800013, "LONGITUDE": 39.268342, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2930000, "POP_MIN": 2698652, "POP_OTHER": 2757835, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 160263, "MEGANAME": "Dar es Salaam", "LS_NAME": "Dar es Salaam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2757507, "MAX_POP20": 2757507, "MAX_POP50": 2757507, "MAX_POP300": 2757507, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 153, "MAX_PERKM": 153, "MIN_PERMI": 95, "MAX_PERMI": 95, "MIN_BBXMIN": 39.15, "MAX_BBXMIN": 39.15, "MIN_BBXMAX": 39.325, "MAX_BBXMAX": 39.325, "MIN_BBYMIN": -6.933333, "MAX_BBYMIN": -6.933333, "MIN_BBYMAX": -6.725, "MAX_BBYMAX": -6.725, "MEAN_BBXC": 39.23918, "MEAN_BBYC": -6.833434, "COMPARE": 0, "GN_ASCII": "Dar es Salaam", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 2698652, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 523, "UN_ADM0": "United Republic of Tanzania", "UN_LAT": -6.81, "UN_LONG": 39.25, "POP1950": 67, "POP1955": 110, "POP1960": 162, "POP1965": 233, "POP1970": 357, "POP1975": 572, "POP1980": 836, "POP1985": 1046, "POP1990": 1316, "POP1995": 1668, "POP2000": 2116, "POP2005": 2679, "POP2010": 2930, "POP2015": 3319, "POP2020": 4020, "POP2025": 4804, "POP2050": 5688 }, "geometry": { "type": "Point", "coordinates": [ 39.287109, -6.839170 ] } } ] } @@ -56,7 +56,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.413496 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856 }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } , @@ -92,7 +92,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 7.426758, 43.739352 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.536273 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Sarajevo", "DIFFASCII": 0, "NAMEASCII": "Sarajevo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bosnia and Herzegovina", "SOV_A3": "BIH", "ADM0NAME": "Bosnia and Herzegovina", "ADM0_A3": "BIH", "ADM1NAME": "Sarajevo", "ISO_A2": "BA", "LATITUDE": 43.850022, "LONGITUDE": 18.383002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 696731, "POP_MIN": 628902, "POP_OTHER": 627065, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3191281, "LS_NAME": "Sarajevo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 628902, "MAX_POP20": 628902, "MAX_POP50": 628902, "MAX_POP300": 628902, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 112, "MAX_PERKM": 112, "MIN_PERMI": 70, "MAX_PERMI": 70, "MIN_BBXMIN": 18.216667, "MAX_BBXMIN": 18.216667, "MIN_BBXMAX": 18.466667, "MAX_BBXMAX": 18.466667, "MIN_BBYMIN": 43.783333, "MAX_BBYMIN": 43.783333, "MIN_BBYMAX": 43.9, "MAX_BBYMAX": 43.9, "MEAN_BBXC": 18.351272, "MEAN_BBYC": 43.846183, "COMPARE": 0, "GN_ASCII": "Sarajevo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 696731, "ELEVATION": 0, "GTOPO30": 545, "TIMEZONE": "Europe/Sarajevo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.369141, 43.834527 ] } } , @@ -104,7 +104,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358 }, "geometry": { "type": "Point", "coordinates": [ 7.514648, 9.102097 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.346411 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Yaounde", "NAMEALT": "Yaoundé", "DIFFASCII": 0, "NAMEASCII": "Yaounde", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cameroon", "SOV_A3": "CMR", "ADM0NAME": "Cameroon", "ADM0_A3": "CMR", "ADM1NAME": "Centre", "ISO_A2": "CM", "LATITUDE": 3.866701, "LONGITUDE": 11.516651, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1611000, "POP_MIN": 1060587, "POP_OTHER": 1060747, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2220957, "MEGANAME": "Yaoundé", "LS_NAME": "Yaounde", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1060587, "MAX_POP20": 1060587, "MAX_POP50": 1060587, "MAX_POP300": 1060587, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 197, "MAX_AREAKM": 197, "MIN_AREAMI": 76, "MAX_AREAMI": 76, "MIN_PERKM": 116, "MAX_PERKM": 116, "MIN_PERMI": 72, "MAX_PERMI": 72, "MIN_BBXMIN": 11.433333, "MAX_BBXMIN": 11.433333, "MIN_BBXMAX": 11.6, "MAX_BBXMAX": 11.6, "MIN_BBYMIN": 3.775, "MAX_BBYMIN": 3.775, "MIN_BBYMAX": 3.983333, "MAX_BBYMAX": 3.983333, "MEAN_BBXC": 11.518344, "MEAN_BBYC": 3.865639, "COMPARE": 0, "GN_ASCII": "Yaounde", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1299369, "ELEVATION": 0, "GTOPO30": 733, "TIMEZONE": "Africa/Douala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 9, "UN_ADM0": "Cameroon", "UN_LAT": 3.86, "UN_LONG": 11.51, "POP1950": 32, "POP1955": 49, "POP1960": 75, "POP1965": 112, "POP1970": 183, "POP1975": 292, "POP1980": 415, "POP1985": 578, "POP1990": 754, "POP1995": 948, "POP2000": 1192, "POP2005": 1489, "POP2010": 1611, "POP2015": 1787, "POP2020": 2058, "POP2025": 2312, "POP2050": 2549, "CITYALT": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Damascus", "NAMEALT": "Dimashq", "DIFFASCII": 0, "NAMEASCII": "Damascus", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Syria", "SOV_A3": "SYR", "ADM0NAME": "Syria", "ADM0_A3": "SYR", "ADM1NAME": "Damascus", "ISO_A2": "SY", "LATITUDE": 33.500034, "LONGITUDE": 36.299996, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2466000, "POP_MIN": 2466000, "POP_OTHER": 3344577, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 170654, "MEGANAME": "Dimashq", "LS_NAME": "Damascus", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3398649, "MAX_POP20": 3865606, "MAX_POP50": 3865606, "MAX_POP300": 3865606, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 532, "MAX_AREAKM": 705, "MIN_AREAMI": 205, "MAX_AREAMI": 272, "MIN_PERKM": 608, "MAX_PERKM": 768, "MIN_PERMI": 378, "MAX_PERMI": 477, "MIN_BBXMIN": 36.05, "MAX_BBXMIN": 36.05, "MIN_BBXMAX": 36.474923, "MAX_BBXMAX": 36.55, "MIN_BBYMIN": 33.283333, "MAX_BBYMIN": 33.283333, "MIN_BBYMAX": 33.611711, "MAX_BBYMAX": 33.625, "MEAN_BBXC": 36.275119, "MEAN_BBYC": 33.474283, "COMPARE": 0, "GN_ASCII": "Damascus", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 493, "UN_ADM0": "Syrian Arab Republic", "UN_LAT": 33.49, "UN_LONG": 36.29, "POP1950": 367, "POP1955": 461, "POP1960": 579, "POP1965": 727, "POP1970": 914, "POP1975": 1122, "POP1980": 1376, "POP1985": 1546, "POP1990": 1691, "POP1995": 1849, "POP2000": 2044, "POP2005": 2330, "POP2010": 2466, "POP2015": 2675, "POP2020": 2981, "POP2025": 3293, "POP2050": 3605, "CITYALT": "Damascus" }, "geometry": { "type": "Point", "coordinates": [ 36.298828, 33.504759 ] } } , @@ -118,7 +118,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.488781 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112 }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.931066 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Bangalore", "NAMEALT": "Bengaluru", "DIFFASCII": 0, "NAMEASCII": "Bangalore", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Karnataka", "ISO_A2": "IN", "LATITUDE": 12.969995, "LONGITUDE": 77.56001, "CHANGED": 3, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 6787000, "POP_MIN": 5104047, "POP_OTHER": 8102712, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1277333, "MEGANAME": "Bangalore", "LS_NAME": "Bangalore", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8181096, "MAX_POP20": 8181096, "MAX_POP50": 8553953, "MAX_POP300": 8553953, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2443, "MAX_AREAKM": 2836, "MIN_AREAMI": 943, "MAX_AREAMI": 1095, "MIN_PERKM": 1908, "MAX_PERKM": 2412, "MIN_PERMI": 1186, "MAX_PERMI": 1499, "MIN_BBXMIN": 77.275, "MAX_BBXMIN": 77.275, "MIN_BBXMAX": 77.996673, "MAX_BBXMAX": 78.15, "MIN_BBYMIN": 12.325, "MAX_BBYMIN": 12.325, "MIN_BBYMAX": 13.333333, "MAX_BBYMAX": 13.333333, "MEAN_BBXC": 77.703019, "MEAN_BBYC": 12.841733, "COMPARE": 1, "GN_ASCII": "Bengaluru", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 5104047, "ELEVATION": 920, "GTOPO30": 914, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 219, "UN_ADM0": "India", "UN_LAT": 12.97, "UN_LONG": 77.58, "POP1950": 746, "POP1955": 939, "POP1960": 1166, "POP1965": 1377, "POP1970": 1615, "POP1975": 2111, "POP1980": 2812, "POP1985": 3395, "POP1990": 4036, "POP1995": 4744, "POP2000": 5567, "POP2005": 6465, "POP2010": 6787, "POP2015": 7229, "POP2020": 7967, "POP2025": 8795, "POP2050": 9719 }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.983148 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vientiane", "DIFFASCII": 0, "NAMEASCII": "Vientiane", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Laos", "SOV_A3": "LAO", "ADM0NAME": "Laos", "ADM0_A3": "LAO", "ADM1NAME": "Vientiane [prefecture]", "ISO_A2": "LA", "LATITUDE": 17.966693, "LONGITUDE": 102.59998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 754000, "POP_MIN": 570348, "POP_OTHER": 469811, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1651944, "LS_NAME": "Vientiane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 471927, "MAX_POP20": 471927, "MAX_POP50": 570348, "MAX_POP300": 570348, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 166, "MAX_AREAKM": 243, "MIN_AREAMI": 64, "MAX_AREAMI": 94, "MIN_PERKM": 170, "MAX_PERKM": 283, "MIN_PERMI": 106, "MAX_PERMI": 176, "MIN_BBXMIN": 102.491667, "MAX_BBXMIN": 102.491667, "MIN_BBXMAX": 102.725, "MAX_BBXMAX": 102.816667, "MIN_BBYMIN": 17.8, "MAX_BBYMIN": 17.875, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": 102.648054, "MEAN_BBYC": 17.967124, "COMPARE": 0, "GN_ASCII": "Vientiane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 27, "GN_POP": 196731, "ELEVATION": 0, "GTOPO30": 174, "TIMEZONE": "Asia/Vientiane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 102.612305, 17.978733 ] } } , diff --git a/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3.json b/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3.json index 1301a2c46..c06572321 100644 --- a/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3.json +++ b/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3.json @@ -9,7 +9,7 @@ "maxzoom": "3", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":227},{\"dropped_by_rate\":227},{\"dropped_by_rate\":152},{}]", +"strategies": "[{\"dropped_by_rate\":227},{\"dropped_by_rate\":227},{\"dropped_by_rate\":154},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,35 +17,35 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.752725 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint George‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.699219, 12.039321 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856 }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.380028 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.175781 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genève", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 43.961191 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.457504 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358 }, "geometry": { "type": "Point", "coordinates": [ 7.558594, 9.102097 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060 }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.358062 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.449790 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.115234, 6.926427 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 33.750000, -14.008696 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 144.931641, -37.788081 ] } } ] } ] } , @@ -55,7 +55,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunción", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunción", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunción", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.656250, -25.284438 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasília", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasília", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } ] } ] } , @@ -63,23 +63,23 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de México", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de México", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.120154 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.747257 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885 }, "geometry": { "type": "Point", "coordinates": [ -69.916992, 18.479609 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint George‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.151367, 5.834616 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.602539, 33.614619 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856 }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.413496 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499, "MAX_POP20": 206499, "MAX_POP50": 206499, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 59, "MAX_AREAKM": 59, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 52, "MAX_PERKM": 52, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 194530, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.839170 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } ] } @@ -91,17 +91,15 @@ , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.966054 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.313113 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363 }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -109,47 +107,49 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genève", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.847573 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.536273 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 41.902277 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.682435 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.809122 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.673831 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.429518 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.879587 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358 }, "geometry": { "type": "Point", "coordinates": [ 7.514648, 9.102097 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athínai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athínai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.996163 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.346411 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060 }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.358062 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892 }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.579084 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.447150 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.613459 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356, "MAX_POP20": 742356, "MAX_POP50": 7482035, "MAX_POP300": 7482969, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 772, "MAX_AREAKM": 5463, "MIN_AREAMI": 298, "MAX_AREAMI": 2109, "MIN_PERKM": 545, "MAX_PERKM": 4154, "MIN_PERMI": 339, "MAX_PERMI": 2581, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 601600, "ELEVATION": 0, "GTOPO30": 497, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36, "POP1955": 41, "POP1960": 45, "POP1965": 56, "POP1970": 70, "POP1975": 107, "POP1980": 189, "POP1985": 260, "POP1990": 343, "POP1995": 452, "POP2000": 594, "POP2005": 732, "POP2010": 780, "POP2015": 851, "POP2020": 988, "POP2025": 1148, "POP2050": 1320 }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.687782 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.936523, 6.882800 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.488781 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "Former capital", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820, "MAX_POP20": 3301820, "MAX_POP50": 3301820, "MAX_POP300": 3301820, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 199, "MAX_PERKM": 199, "MIN_PERMI": 123, "MAX_PERMI": 123, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 4477638, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302, "POP1955": 1440, "POP1960": 1592, "POP1965": 1760, "POP1970": 1946, "POP1975": 2151, "POP1980": 2378, "POP1985": 2629, "POP1990": 2907, "POP1995": 3213, "POP2000": 3553, "POP2005": 3928, "POP2010": 4088, "POP2015": 4348, "POP2020": 4841, "POP2025": 5361, "POP2050": 5869, "CITYALT": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 16.804541 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461 }, "geometry": { "type": "Point", "coordinates": [ 96.108398, 19.766704 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797, "MAX_POP20": 2498797, "MAX_POP50": 2498797, "MAX_POP300": 2498797, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 446, "MAX_AREAKM": 447, "MIN_AREAMI": 172, "MAX_AREAMI": 173, "MIN_PERKM": 510, "MAX_PERKM": 511, "MIN_PERMI": 317, "MAX_PERMI": 318, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 3222000, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516, "POP1955": 577, "POP1960": 646, "POP1965": 769, "POP1970": 987, "POP1975": 1348, "POP1980": 1842, "POP1985": 2195, "POP1990": 2526, "POP1995": 2838, "POP2000": 3117, "POP2005": 3265, "POP2010": 3300, "POP2015": 3346, "POP2020": 3434, "POP2025": 3537, "POP2050": 3630 }, "geometry": { "type": "Point", "coordinates": [ 125.771484, 39.027719 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305 }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.045792 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.926427 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } ] } @@ -159,7 +159,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.145992 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -181.560059, -18.124971 ] } } ] } ] } , @@ -169,13 +169,11 @@ , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.190918, 33.998027 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo León", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413 }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.681137 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Houston", "DIFFASCII": 0, "NAMEASCII": "Houston", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Texas", "ISO_A2": "US", "LATITUDE": 29.819974, "LONGITUDE": -95.339979, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4459000, "POP_MIN": 3647574, "POP_OTHER": 3607616, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 4699066, "MEGANAME": "Houston", "LS_NAME": "Houston", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3647574, "MAX_POP20": 4287078, "MAX_POP50": 4352341, "MAX_POP300": 4352341, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2388, "MAX_AREAKM": 3041, "MIN_AREAMI": 922, "MAX_AREAMI": 1174, "MIN_PERKM": 1257, "MAX_PERKM": 1773, "MIN_PERMI": 781, "MAX_PERMI": 1101, "MIN_BBXMIN": -95.841667, "MAX_BBXMIN": -95.841667, "MIN_BBXMAX": -95.133333, "MAX_BBXMAX": -95, "MIN_BBYMIN": 29.475, "MAX_BBYMIN": 29.491667, "MIN_BBYMAX": 30.258915, "MAX_BBYMAX": 30.266667, "MEAN_BBXC": -95.431928, "MEAN_BBYC": 29.810477, "COMPARE": 0, "GN_ASCII": "Houston", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 542, "UN_ADM0": "United States of America", "UN_LAT": 29.77, "UN_LONG": -95.4, "POP1950": 709, "POP1955": 904, "POP1960": 1151, "POP1965": 1396, "POP1970": 1693, "POP1975": 2030, "POP1980": 2424, "POP1985": 2658, "POP1990": 2922, "POP1995": 3353, "POP2000": 3849, "POP2005": 4324, "POP2010": 4459, "POP2015": 4609, "POP2020": 4790, "POP2025": 4936, "POP2050": 5049 }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de México", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de México", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -183,11 +181,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "La Paz", "DIFFASCII": 0, "NAMEASCII": "La Paz", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "La Paz", "ISO_A2": "BO", "LATITUDE": -16.497974, "LONGITUDE": -68.149985, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1590000, "POP_MIN": 812799, "POP_OTHER": 4400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3911925, "MEGANAME": "La Paz", "LS_NAME": "La Paz3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590482, "MAX_POP20": 1590482, "MAX_POP50": 1590482, "MAX_POP300": 1590482, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 181, "MAX_AREAKM": 181, "MIN_AREAMI": 70, "MAX_AREAMI": 70, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": -68.258333, "MAX_BBXMIN": -68.258333, "MIN_BBXMAX": -68.05, "MAX_BBXMAX": -68.05, "MIN_BBYMIN": -16.575, "MAX_BBYMIN": -16.575, "MIN_BBYMAX": -16.433333, "MAX_BBYMAX": -16.433333, "MEAN_BBXC": -68.157765, "MEAN_BBYC": -16.506439, "COMPARE": 0, "GN_ASCII": "La Paz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 812799, "ELEVATION": 0, "GTOPO30": 3829, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 440, "UN_ADM0": "Bolivia", "UN_LAT": 24.15, "UN_LONG": -110.3, "POP1950": 319, "POP1955": 374, "POP1960": 438, "POP1965": 512, "POP1970": 600, "POP1975": 703, "POP1980": 809, "POP1985": 927, "POP1990": 1062, "POP1995": 1267, "POP2000": 1390, "POP2005": 1527, "POP2010": 1590, "POP2015": 1692, "POP2020": 1864, "POP2025": 2027, "POP2050": 2178 }, "geometry": { "type": "Point", "coordinates": [ -68.159180, -16.488765 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEALT": "Valparaíso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valparaíso", "ISO_A2": "CL", "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575, "MEGANAME": "Valparaíso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390, "MAX_POP20": 637860, "MAX_POP50": 637860, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 34, "MAX_AREAKM": 184, "MIN_AREAMI": 13, "MAX_AREAMI": 71, "MIN_PERKM": 33, "MAX_PERKM": 151, "MIN_PERMI": 21, "MAX_PERMI": 94, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27, "GN_POP": 15938, "ELEVATION": 0, "GTOPO30": 405, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328, "POP1955": 377, "POP1960": 433, "POP1965": 481, "POP1970": 532, "POP1975": 581, "POP1980": 635, "POP1985": 685, "POP1990": 733, "POP1995": 771, "POP2000": 803, "POP2005": 838, "POP2010": 854, "POP2015": 880, "POP2020": 922, "POP2025": 956, "POP2050": 982, "CITYALT": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.045508 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sucre", "DIFFASCII": 0, "NAMEASCII": "Sucre", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official (const", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "Chuquisaca", "ISO_A2": "BO", "LATITUDE": -19.040971, "LONGITUDE": -65.259516, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224838, "POP_MIN": 221736, "POP_OTHER": 221736, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3903987, "LS_NAME": "Sucre", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 221736, "MAX_POP20": 221736, "MAX_POP50": 221736, "MAX_POP300": 221736, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 34, "MAX_AREAKM": 34, "MIN_AREAMI": 13, "MAX_AREAMI": 13, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": -65.3, "MAX_BBXMIN": -65.3, "MIN_BBXMAX": -65.225, "MAX_BBXMAX": -65.225, "MIN_BBYMIN": -19.066667, "MAX_BBYMIN": -19.066667, "MIN_BBYMAX": -18.991667, "MAX_BBYMAX": -18.991667, "MEAN_BBXC": -65.260317, "MEAN_BBYC": -19.030556, "COMPARE": 0, "GN_ASCII": "Sucre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 224838, "ELEVATION": 0, "GTOPO30": 2759, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunción", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunción", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunción", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasília", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasília", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.771109 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Montevideo", "DIFFASCII": 0, "NAMEASCII": "Montevideo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uruguay", "SOV_A3": "URY", "ADM0NAME": "Uruguay", "ADM0_A3": "URY", "ADM1NAME": "Montevideo", "ISO_A2": "UY", "LATITUDE": -34.858042, "LONGITUDE": -56.171052, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1513000, "POP_MIN": 5324, "POP_OTHER": 1276128, "RANK_MAX": 12, "RANK_MIN": 5, "GEONAMEID": 5038018, "MEGANAME": "Montevideo", "LS_NAME": "Montevideo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1381747, "MAX_POP20": 1381747, "MAX_POP50": 1381747, "MAX_POP300": 1381747, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 347, "MAX_AREAKM": 347, "MIN_AREAMI": 134, "MAX_AREAMI": 134, "MIN_PERKM": 266, "MAX_PERKM": 266, "MIN_PERMI": 165, "MAX_PERMI": 165, "MIN_BBXMIN": -56.291667, "MAX_BBXMIN": -56.291667, "MIN_BBXMAX": -55.8, "MAX_BBXMAX": -55.8, "MIN_BBYMIN": -34.933333, "MAX_BBYMIN": -34.933333, "MIN_BBYMAX": -34.65, "MAX_BBYMAX": -34.65, "MEAN_BBXC": -56.12273, "MEAN_BBYC": -34.828337, "COMPARE": 0, "GN_ASCII": "Montevideo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5324, "ELEVATION": 284, "GTOPO30": 305, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 579, "UN_ADM0": "Uruguay", "UN_LAT": -34.92, "UN_LONG": -56.16, "POP1950": 1212, "POP1955": 1248, "POP1960": 1285, "POP1965": 1323, "POP1970": 1362, "POP1975": 1403, "POP1980": 1454, "POP1985": 1508, "POP1990": 1546, "POP1995": 1584, "POP2000": 1561, "POP2005": 1525, "POP2010": 1513, "POP2015": 1504, "POP2020": 1506, "POP2025": 1515, "POP2050": 1520 }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.849875 ] } } ] } @@ -197,47 +195,45 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421, "MAX_POP20": 4377344, "MAX_POP50": 5190755, "MAX_POP300": 5190755, "MAX_POP310": 5190755, "MAX_NATSCA": 300, "MIN_AREAKM": 1432, "MAX_AREAKM": 2286, "MIN_AREAMI": 553, "MAX_AREAMI": 883, "MIN_PERKM": 464, "MAX_PERKM": 1161, "MIN_PERMI": 289, "MAX_PERMI": 721, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 4612191, "ELEVATION": 0, "GTOPO30": 173, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068, "POP1955": 1365, "POP1960": 1744, "POP1965": 2093, "POP1970": 2535, "POP1975": 2770, "POP1980": 3008, "POP1985": 3355, "POP1990": 3807, "POP1995": 4197, "POP2000": 4607, "POP2005": 5035, "POP2010": 5213, "POP2015": 5447, "POP2020": 5687, "POP2025": 5827, "POP2050": 5946 }, "geometry": { "type": "Point", "coordinates": [ -79.431152, 43.707594 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780, "MAX_POP20": 885780, "MAX_POP50": 885780, "MAX_POP300": 885780, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 504, "MAX_AREAKM": 504, "MIN_AREAMI": 195, "MAX_AREAMI": 195, "MIN_PERKM": 442, "MAX_PERKM": 442, "MIN_PERMI": 274, "MAX_PERMI": 274, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 812129, "ELEVATION": 0, "GTOPO30": 61, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282, "POP1955": 342, "POP1960": 415, "POP1965": 482, "POP1970": 581, "POP1975": 676, "POP1980": 729, "POP1985": 803, "POP1990": 918, "POP1995": 988, "POP2000": 1079, "POP2005": 1119, "POP2010": 1145, "POP2015": 1182, "POP2020": 1232, "POP2025": 1274, "POP2050": 1315, "CITYALT": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.375488, 23.140360 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.908133 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Managua", "DIFFASCII": 0, "NAMEASCII": "Managua", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nicaragua", "SOV_A3": "NIC", "ADM0NAME": "Nicaragua", "ADM0_A3": "NIC", "ADM1NAME": "Managua", "ISO_A2": "NI", "LATITUDE": 12.153017, "LONGITUDE": -86.268492, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 920000, "POP_MIN": 920000, "POP_OTHER": 1088194, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3617763, "MEGANAME": "Managua", "LS_NAME": "Managua", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1105973, "MAX_POP20": 1105973, "MAX_POP50": 1105973, "MAX_POP300": 1105973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 131, "MIN_AREAMI": 51, "MAX_AREAMI": 51, "MIN_PERKM": 97, "MAX_PERKM": 97, "MIN_PERMI": 60, "MAX_PERMI": 60, "MIN_BBXMIN": -86.383333, "MAX_BBXMIN": -86.383333, "MIN_BBXMAX": -86.158333, "MAX_BBXMAX": -86.158333, "MIN_BBYMIN": 12.075, "MAX_BBYMIN": 12.075, "MIN_BBYMAX": 12.175, "MAX_BBYMAX": 12.175, "MEAN_BBXC": -86.263402, "MEAN_BBYC": 12.13336, "COMPARE": 0, "GN_ASCII": "Managua", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 973087, "ELEVATION": 0, "GTOPO30": 59, "TIMEZONE": "America/Managua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 382, "UN_ADM0": "Nicaragua", "UN_LAT": 12.15, "UN_LONG": -86.27, "POP1950": 110, "POP1955": 148, "POP1960": 199, "POP1965": 269, "POP1970": 366, "POP1975": 443, "POP1980": 525, "POP1985": 621, "POP1990": 735, "POP1995": 865, "POP2000": 887, "POP2005": 909, "POP2010": 920, "POP2015": 944, "POP2020": 1015, "POP2025": 1104, "POP2050": 1193 }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.146746 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Panama City", "NAMEALT": "Ciudad de Panamá|Panama City|Panama", "DIFFASCII": 0, "NAMEASCII": "Panama City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Panama", "SOV_A3": "PAN", "ADM0NAME": "Panama", "ADM0_A3": "PAN", "ADM1NAME": "Panama", "ISO_A2": "PA", "LATITUDE": 8.968017, "LONGITUDE": -79.533037, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1281000, "POP_MIN": 408168, "POP_OTHER": 939725, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 3703443, "MEGANAME": "Ciudad de Panamá (Panama City)", "LS_NAME": "Panama City1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 958016, "MAX_POP20": 958016, "MAX_POP50": 989053, "MAX_POP300": 989053, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 157, "MIN_AREAMI": 54, "MAX_AREAMI": 61, "MIN_PERKM": 98, "MAX_PERKM": 107, "MIN_PERMI": 61, "MAX_PERMI": 66, "MIN_BBXMIN": -79.591667, "MAX_BBXMIN": -79.576315, "MIN_BBXMAX": -79.4, "MAX_BBXMAX": -79.4, "MIN_BBYMIN": 8.933333, "MAX_BBYMIN": 8.943752, "MIN_BBYMAX": 9.1, "MAX_BBYMAX": 9.1, "MEAN_BBXC": -79.494919, "MEAN_BBYC": 9.035936, "COMPARE": 0, "GN_ASCII": "Panama City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 408168, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "America/Panama", "GEONAMESNO": "GeoNames match general.", "UN_FID": 408, "UN_ADM0": "Panama", "UN_LAT": 9, "UN_LONG": -79.51, "POP1950": 171, "POP1955": 220, "POP1960": 283, "POP1965": 360, "POP1970": 455, "POP1975": 528, "POP1980": 613, "POP1985": 721, "POP1990": 847, "POP1995": 953, "POP2000": 1072, "POP2005": 1216, "POP2010": 1281, "POP2015": 1379, "POP2020": 1527, "POP2025": 1653, "POP2050": 1759, "CITYALT": "Panama" }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.971897 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-au-Prince", "DIFFASCII": 0, "NAMEASCII": "Port-au-Prince", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Haiti", "SOV_A3": "HTI", "ADM0NAME": "Haiti", "ADM0_A3": "HTI", "ADM1NAME": "Ouest", "ISO_A2": "HT", "LATITUDE": 18.541025, "LONGITUDE": -72.336035, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1998000, "POP_MIN": 1234742, "POP_OTHER": 2385397, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3718426, "MEGANAME": "Port-au-Prince", "LS_NAME": "Port-au-Prince", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2445384, "MAX_POP20": 2445384, "MAX_POP50": 2445384, "MAX_POP300": 2445384, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 374, "MAX_AREAKM": 374, "MIN_AREAMI": 144, "MAX_AREAMI": 144, "MIN_PERKM": 287, "MAX_PERKM": 287, "MIN_PERMI": 179, "MAX_PERMI": 179, "MIN_BBXMIN": -72.441667, "MAX_BBXMIN": -72.441667, "MIN_BBXMAX": -72.033333, "MAX_BBXMAX": -72.033333, "MIN_BBYMIN": 18.491667, "MAX_BBYMIN": 18.491667, "MIN_BBYMAX": 18.666667, "MAX_BBYMAX": 18.666667, "MEAN_BBXC": -72.222424, "MEAN_BBYC": 18.56946, "COMPARE": 0, "GN_ASCII": "Port-au-Prince", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1234742, "ELEVATION": 0, "GTOPO30": 65, "TIMEZONE": "America/Port-au-Prince", "GEONAMESNO": "GeoNames match general.", "UN_FID": 208, "UN_ADM0": "Haiti", "UN_LAT": 18.52, "UN_LONG": -72.34, "POP1950": 133, "POP1955": 182, "POP1960": 247, "POP1965": 337, "POP1970": 460, "POP1975": 575, "POP1980": 701, "POP1985": 881, "POP1990": 1134, "POP1995": 1427, "POP2000": 1653, "POP2005": 1885, "POP2010": 1998, "POP2015": 2209, "POP2020": 2621, "POP2025": 3012, "POP2050": 3346 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885 }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.479609 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.305380 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Castries", "DIFFASCII": 0, "NAMEASCII": "Castries", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Lucia", "SOV_A3": "LCA", "ADM0NAME": "Saint Lucia", "ADM0_A3": "LCA", "ISO_A2": "LC", "LATITUDE": 14.001973, "LONGITUDE": -61.000008, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 37963, "POP_MIN": 10634, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3028258, "LS_NAME": "Castries", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 64343, "MAX_POP20": 64343, "MAX_POP50": 64343, "MAX_POP300": 64343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 16, "MAX_AREAKM": 16, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 22, "MAX_PERKM": 22, "MIN_PERMI": 14, "MAX_PERMI": 14, "MIN_BBXMIN": -61.008333, "MAX_BBXMIN": -61.008333, "MIN_BBXMAX": -60.966667, "MAX_BBXMAX": -60.966667, "MIN_BBYMIN": 13.975, "MAX_BBYMIN": 13.975, "MIN_BBYMAX": 14.025, "MAX_BBYMAX": 14.025, "MEAN_BBXC": -60.988377, "MEAN_BBYC": 14.005921, "COMPARE": 0, "GN_ASCII": "Castries", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5790, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Europe/Paris", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint George‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619 }, "geometry": { "type": "Point", "coordinates": [ -66.928711, 10.509417 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.508742 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laâyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.205566, 27.156920 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.624512, 33.596319 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.396764 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144, "MAX_POP20": 742144, "MAX_POP50": 742144, "MAX_POP300": 742144, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 98, "MAX_AREAKM": 98, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 661400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Banjul", "DIFFASCII": 0, "NAMEASCII": "Banjul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gambia, The", "SOV_A3": "GMB", "ADM0NAME": "The Gambia", "ADM0_A3": "GMB", "ADM1NAME": "Banjul", "ISO_A2": "GM", "LATITUDE": 13.453876, "LONGITUDE": -16.591701, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 43094, "POP_MIN": 34589, "POP_OTHER": 581300, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2413876, "LS_NAME": "Banjul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 43094, "MAX_POP20": 43094, "MAX_POP50": 43094, "MAX_POP300": 43094, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 13, "MAX_PERKM": 13, "MIN_PERMI": 8, "MAX_PERMI": 8, "MIN_BBXMIN": -16.6, "MAX_BBXMIN": -16.6, "MIN_BBXMAX": -16.566667, "MAX_BBXMAX": -16.566667, "MIN_BBYMIN": 13.441667, "MAX_BBYMIN": 13.441667, "MIN_BBYMAX": 13.466667, "MAX_BBYMAX": 13.466667, "MEAN_BBXC": -16.58125, "MEAN_BBYC": 13.455208, "COMPARE": 0, "GN_ASCII": "Banjul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 34589, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "Africa/Banjul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856 }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bamako", "DIFFASCII": 0, "NAMEASCII": "Bamako", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mali", "SOV_A3": "MLI", "ADM0NAME": "Mali", "ADM0_A3": "MLI", "ADM1NAME": "Bamako", "ISO_A2": "ML", "LATITUDE": 12.650015, "LONGITUDE": -8.000039, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1297281, "POP_OTHER": 1301407, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2460596, "MEGANAME": "Bamako", "LS_NAME": "Bamako", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1316564, "MAX_POP20": 1316564, "MAX_POP50": 1316564, "MAX_POP300": 1316564, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 172, "MAX_AREAKM": 172, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 106, "MAX_PERKM": 106, "MIN_PERMI": 66, "MAX_PERMI": 66, "MIN_BBXMIN": -8.058333, "MAX_BBXMIN": -8.058333, "MIN_BBXMAX": -7.908333, "MAX_BBXMAX": -7.908333, "MIN_BBYMIN": 12.541667, "MAX_BBYMIN": 12.541667, "MIN_BBYMAX": 12.716667, "MAX_BBYMAX": 12.716667, "MEAN_BBXC": -7.987419, "MEAN_BBYC": 12.626173, "COMPARE": 0, "GN_ASCII": "Bamako", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1297281, "ELEVATION": 0, "GTOPO30": 350, "TIMEZONE": "Africa/Bamako", "GEONAMESNO": "GeoNames match general.", "UN_FID": 349, "UN_ADM0": "Mali", "UN_LAT": 12.65, "UN_LONG": -7.98, "POP1950": 89, "POP1955": 111, "POP1960": 130, "POP1965": 158, "POP1970": 222, "POP1975": 363, "POP1980": 489, "POP1985": 608, "POP1990": 746, "POP1995": 910, "POP2000": 1110, "POP2005": 1368, "POP2010": 1494, "POP2015": 1708, "POP2020": 2130, "POP2025": 2633, "POP2050": 3214 }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.661778 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632 }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.382928 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499, "MAX_POP20": 206499, "MAX_POP50": 206499, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 59, "MAX_AREAKM": 59, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 52, "MAX_PERKM": 52, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 194530, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382 }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -247,25 +243,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.329588 ] } } , +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.329588 ] } } +, { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762 }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 17.072754, -22.573438 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cape Town", "DIFFASCII": 0, "NAMEASCII": "Cape Town", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Western Cape", "ISO_A2": "ZA", "LATITUDE": -33.920011, "LONGITUDE": 18.434988, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3215000, "POP_MIN": 2432858, "POP_OTHER": 2401318, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3369157, "MEGANAME": "Cape Town", "LS_NAME": "Cape Town", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2432858, "MAX_POP20": 2443605, "MAX_POP50": 2443605, "MAX_POP300": 2443605, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 534, "MAX_AREAKM": 542, "MIN_AREAMI": 206, "MAX_AREAMI": 209, "MIN_PERKM": 295, "MAX_PERKM": 300, "MIN_PERMI": 183, "MAX_PERMI": 187, "MIN_BBXMIN": 18.375, "MAX_BBXMIN": 18.375, "MIN_BBXMAX": 18.724745, "MAX_BBXMAX": 18.741667, "MIN_BBYMIN": -34.108333, "MAX_BBYMIN": -34.108333, "MIN_BBYMAX": -33.808333, "MAX_BBYMAX": -33.808333, "MEAN_BBXC": 18.557208, "MEAN_BBYC": -33.954979, "COMPARE": 0, "GN_ASCII": "Cape Town", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 11, "GN_POP": 3433441, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 455, "UN_ADM0": "South Africa", "UN_LAT": -33.97, "UN_LONG": 18.48, "POP1950": 618, "POP1955": 705, "POP1960": 803, "POP1965": 945, "POP1970": 1114, "POP1975": 1339, "POP1980": 1609, "POP1985": 1925, "POP1990": 2155, "POP1995": 2394, "POP2000": 2715, "POP2005": 3087, "POP2010": 3215, "POP2015": 3357, "POP2020": 3504, "POP2025": 3627, "POP2050": 3744 }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.925130 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Harare", "DIFFASCII": 0, "NAMEASCII": "Harare", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zimbabwe", "SOV_A3": "ZWE", "ADM0NAME": "Zimbabwe", "ADM0_A3": "ZWE", "ADM1NAME": "Harare", "ISO_A2": "ZW", "LATITUDE": -17.81779, "LONGITUDE": 31.044709, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1572000, "POP_MIN": 1542813, "POP_OTHER": 1831877, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 890299, "MEGANAME": "Harare", "LS_NAME": "Harare", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1833439, "MAX_POP20": 1833439, "MAX_POP50": 1833439, "MAX_POP300": 1839463, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 310, "MAX_AREAKM": 326, "MIN_AREAMI": 120, "MAX_AREAMI": 126, "MIN_PERKM": 186, "MAX_PERKM": 210, "MIN_PERMI": 115, "MAX_PERMI": 130, "MIN_BBXMIN": 30.908333, "MAX_BBXMIN": 30.908333, "MIN_BBXMAX": 31.175, "MAX_BBXMAX": 31.191667, "MIN_BBYMIN": -17.925, "MAX_BBYMIN": -17.925, "MIN_BBYMAX": -17.725, "MAX_BBYMAX": -17.725, "MEAN_BBXC": 31.045288, "MEAN_BBYC": -17.832399, "COMPARE": 0, "GN_ASCII": "Harare", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1542813, "ELEVATION": 0, "GTOPO30": 1481, "TIMEZONE": "Africa/Harare", "GEONAMESNO": "GeoNames match general.", "UN_FID": 462, "UN_ADM0": "Zimbabwe", "UN_LAT": -17.82, "UN_LONG": 31.02, "POP1950": 143, "POP1955": 192, "POP1960": 248, "POP1965": 319, "POP1970": 417, "POP1975": 532, "POP1980": 616, "POP1985": 778, "POP1990": 1047, "POP1995": 1255, "POP2000": 1379, "POP2005": 1515, "POP2010": 1572, "POP2015": 1663, "POP2020": 1839, "POP2025": 2037, "POP2050": 2247 }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.811456 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871 }, "geometry": { "type": "Point", "coordinates": [ 36.804199, -1.274309 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Dar es Salaam", "DIFFASCII": 0, "NAMEASCII": "Dar es Salaam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dar-Es-Salaam", "ISO_A2": "TZ", "LATITUDE": -6.800013, "LONGITUDE": 39.268342, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2930000, "POP_MIN": 2698652, "POP_OTHER": 2757835, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 160263, "MEGANAME": "Dar es Salaam", "LS_NAME": "Dar es Salaam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2757507, "MAX_POP20": 2757507, "MAX_POP50": 2757507, "MAX_POP300": 2757507, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 153, "MAX_PERKM": 153, "MIN_PERMI": 95, "MAX_PERMI": 95, "MIN_BBXMIN": 39.15, "MAX_BBXMIN": 39.15, "MIN_BBXMAX": 39.325, "MAX_BBXMAX": 39.325, "MIN_BBYMIN": -6.933333, "MAX_BBYMIN": -6.933333, "MIN_BBYMAX": -6.725, "MAX_BBYMAX": -6.725, "MEAN_BBXC": 39.23918, "MEAN_BBYC": -6.833434, "COMPARE": 0, "GN_ASCII": "Dar es Salaam", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 2698652, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 523, "UN_ADM0": "United Republic of Tanzania", "UN_LAT": -6.81, "UN_LONG": 39.25, "POP1950": 67, "POP1955": 110, "POP1960": 162, "POP1965": 233, "POP1970": 357, "POP1975": 572, "POP1980": 836, "POP1985": 1046, "POP1990": 1316, "POP1995": 1668, "POP2000": 2116, "POP2005": 2679, "POP2010": 2930, "POP2015": 3319, "POP2020": 4020, "POP2025": 4804, "POP2050": 5688 }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Bloemfontein", "DIFFASCII": 0, "NAMEASCII": "Bloemfontein", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Judicial capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Orange Free State", "ISO_A2": "ZA", "LATITUDE": -29.119994, "LONGITUDE": 26.229913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 463064, "POP_MIN": 456669, "POP_OTHER": 456513, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1018725, "LS_NAME": "Bloemfontein", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 456669, "MAX_POP20": 456669, "MAX_POP50": 456669, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 105, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 26.166667, "MAX_BBXMIN": 26.166667, "MIN_BBXMAX": 26.3, "MAX_BBXMAX": 26.3, "MIN_BBYMIN": -29.2, "MAX_BBYMIN": -29.2, "MIN_BBYMAX": -29.058333, "MAX_BBYMAX": -29.058333, "MEAN_BBXC": 26.225714, "MEAN_BBYC": -29.128155, "COMPARE": 0, "GN_ASCII": "Bloemfontein", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 463064, "ELEVATION": 0, "GTOPO30": 1398, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.113775 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Pretoria", "DIFFASCII": 0, "NAMEASCII": "Pretoria", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "LATITUDE": -25.706921, "LONGITUDE": 28.229429, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1338000, "POP_MIN": 1338000, "POP_OTHER": 1443084, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 964137, "MEGANAME": "Pretoria", "LS_NAME": "Pretoria", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1444949, "MAX_POP20": 1444949, "MAX_POP50": 1444949, "MAX_POP300": 1444949, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 502, "MAX_AREAKM": 502, "MIN_AREAMI": 194, "MAX_AREAMI": 194, "MIN_PERKM": 256, "MAX_PERKM": 256, "MIN_PERMI": 159, "MAX_PERMI": 159, "MIN_BBXMIN": 28.041667, "MAX_BBXMIN": 28.041667, "MIN_BBXMAX": 28.4, "MAX_BBXMAX": 28.4, "MIN_BBYMIN": -25.891667, "MAX_BBYMIN": -25.891667, "MIN_BBYMAX": -25.641667, "MAX_BBYMAX": -25.641667, "MEAN_BBXC": 28.214676, "MEAN_BBYC": -25.755716, "COMPARE": 0, "GN_ASCII": "Pretoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 1619438, "ELEVATION": 0, "GTOPO30": 1282, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 460, "UN_ADM0": "South Africa", "UN_LAT": -25.73, "UN_LONG": 28.21, "POP1950": 275, "POP1955": 340, "POP1960": 419, "POP1965": 488, "POP1970": 565, "POP1975": 624, "POP1980": 688, "POP1985": 763, "POP1990": 911, "POP1995": 951, "POP2000": 1084, "POP2005": 1273, "POP2010": 1338, "POP2015": 1409, "POP2020": 1482, "POP2025": 1544, "POP2050": 1604 }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.700938 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Antananarivo", "DIFFASCII": 0, "NAMEASCII": "Antananarivo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Madagascar", "SOV_A3": "MDG", "ADM0NAME": "Madagascar", "ADM0_A3": "MDG", "ADM1NAME": "Antananarivo", "ISO_A2": "MG", "LATITUDE": -18.916637, "LONGITUDE": 47.516624, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1697000, "POP_MIN": 1391433, "POP_OTHER": 1844658, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1070940, "MEGANAME": "Antananarivo", "LS_NAME": "Antananarivo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1727538, "MAX_POP20": 1727538, "MAX_POP50": 1727538, "MAX_POP300": 1727538, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 700, "MAX_AREAKM": 700, "MIN_AREAMI": 270, "MAX_AREAMI": 270, "MIN_PERKM": 699, "MAX_PERKM": 699, "MIN_PERMI": 434, "MAX_PERMI": 434, "MIN_BBXMIN": 47.233333, "MAX_BBXMIN": 47.233333, "MIN_BBXMAX": 47.625, "MAX_BBXMAX": 47.625, "MIN_BBYMIN": -19.166667, "MAX_BBYMIN": -19.166667, "MIN_BBYMAX": -18.625, "MAX_BBYMAX": -18.625, "MEAN_BBXC": 47.476707, "MEAN_BBYC": -18.875473, "COMPARE": 0, "GN_ASCII": "Antananarivo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1391433, "ELEVATION": 0, "GTOPO30": 1289, "TIMEZONE": "Indian/Antananarivo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 345, "UN_ADM0": "Madagascar", "UN_LAT": -18.9, "UN_LONG": 47.52, "POP1950": 177, "POP1955": 189, "POP1960": 252, "POP1965": 298, "POP1970": 363, "POP1975": 454, "POP1980": 580, "POP1985": 742, "POP1990": 948, "POP1995": 1169, "POP2000": 1361, "POP2005": 1590, "POP2010": 1697, "POP2015": 1877, "POP2020": 2229, "POP2025": 2642, "POP2050": 3118 }, "geometry": { "type": "Point", "coordinates": [ 47.504883, -18.916680 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Port Louis", "DIFFASCII": 0, "NAMEASCII": "Port Louis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritius", "SOV_A3": "MUS", "ADM0NAME": "Mauritius", "ADM0_A3": "MUS", "ISO_A2": "MU", "LATITUDE": -20.166639, "LONGITUDE": 57.499994, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 595491, "POP_MIN": 148416, "POP_OTHER": 304613, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 934154, "LS_NAME": "Port Louis", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 291837, "MAX_POP20": 595491, "MAX_POP50": 595491, "MAX_POP300": 595491, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 152, "MIN_AREAMI": 27, "MAX_AREAMI": 59, "MIN_PERKM": 85, "MAX_PERKM": 154, "MIN_PERMI": 53, "MAX_PERMI": 96, "MIN_BBXMIN": 57.425, "MAX_BBXMIN": 57.425, "MIN_BBXMAX": 57.541667, "MAX_BBXMAX": 57.575, "MIN_BBYMIN": -20.333333, "MAX_BBYMIN": -20.248073, "MIN_BBYMAX": -20.108333, "MAX_BBYMAX": -20.108333, "MEAN_BBXC": 57.491611, "MEAN_BBYC": -20.221833, "COMPARE": 0, "GN_ASCII": "Port Louis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 155226, "ELEVATION": 0, "GTOPO30": 133, "TIMEZONE": "Indian/Mauritius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.159098 ] } } ] } ] } , @@ -273,93 +271,93 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.508742 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382 }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632 }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.382928 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936 }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.921990 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Luxembourg", "DIFFASCII": 0, "NAMEASCII": "Luxembourg", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Luxembourg", "SOV_A3": "LUX", "ADM0NAME": "Luxembourg", "ADM0_A3": "LUX", "ADM1NAME": "Luxembourg", "ISO_A2": "LU", "LATITUDE": 49.61166, "LONGITUDE": 6.130003, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 107260, "POP_MIN": 76684, "POP_OTHER": 106219, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2960316, "LS_NAME": "Luxembourg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 107260, "MAX_POP20": 107260, "MAX_POP50": 107260, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 71, "MAX_PERKM": 71, "MIN_PERMI": 44, "MAX_PERMI": 44, "MIN_BBXMIN": 6.041667, "MAX_BBXMIN": 6.041667, "MIN_BBXMAX": 6.183333, "MAX_BBXMAX": 6.183333, "MIN_BBYMIN": 49.558333, "MAX_BBYMIN": 49.558333, "MIN_BBYMAX": 49.708333, "MAX_BBYMAX": 49.708333, "MEAN_BBXC": 6.125273, "MEAN_BBYC": 49.620833, "COMPARE": 0, "GN_ASCII": "Luxembourg", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 76684, "ELEVATION": 0, "GTOPO30": 259, "TIMEZONE": "Europe/Luxembourg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genève", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 46.210250 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Warsaw", "NAMEPAR": "Warszawa", "DIFFASCII": 0, "NAMEASCII": "Warsaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Poland", "SOV_A3": "POL", "ADM0NAME": "Poland", "ADM0_A3": "POL", "ADM1NAME": "Masovian", "ISO_A2": "PL", "LATITUDE": 52.250001, "LONGITUDE": 21, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1707000, "POP_MIN": 1702139, "POP_OTHER": 2012431, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 756135, "MEGANAME": "Warszawa", "LS_NAME": "Warsaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2129163, "MAX_POP20": 2129163, "MAX_POP50": 2129163, "MAX_POP300": 2129163, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 802, "MAX_AREAKM": 802, "MIN_AREAMI": 310, "MAX_AREAMI": 310, "MIN_PERKM": 759, "MAX_PERKM": 759, "MIN_PERMI": 471, "MAX_PERMI": 471, "MIN_BBXMIN": 20.666667, "MAX_BBXMIN": 20.666667, "MIN_BBXMAX": 21.358333, "MAX_BBXMAX": 21.358333, "MIN_BBYMIN": 52.033333, "MAX_BBYMIN": 52.033333, "MIN_BBYMAX": 52.433333, "MAX_BBYMAX": 52.433333, "MEAN_BBXC": 21.031458, "MEAN_BBYC": 52.230916, "COMPARE": 0, "GN_ASCII": "Warsaw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 78, "GN_POP": 1702139, "ELEVATION": 0, "GTOPO30": 94, "TIMEZONE": "Europe/Warsaw", "GEONAMESNO": "GeoNames match general.", "UN_FID": 418, "UN_ADM0": "Poland", "UN_LAT": 52.24, "UN_LONG": 21.01, "POP1950": 768, "POP1955": 942, "POP1960": 1119, "POP1965": 1212, "POP1970": 1300, "POP1975": 1444, "POP1980": 1565, "POP1985": 1596, "POP1990": 1628, "POP1995": 1652, "POP2000": 1666, "POP2005": 1693, "POP2010": 1707, "POP2015": 1724, "POP2020": 1735, "POP2025": 1736, "POP2050": 1736, "CITYALT": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.254709 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Vienna", "NAMEPAR": "Wien", "DIFFASCII": 0, "NAMEASCII": "Vienna", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Austria", "SOV_A3": "AUT", "ADM0NAME": "Austria", "ADM0_A3": "AUT", "ADM1NAME": "Wien", "ISO_A2": "AT", "LATITUDE": 48.200015, "LONGITUDE": 16.366639, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2400000, "POP_MIN": 1731000, "POP_OTHER": 1480886, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2761369, "MEGANAME": "Wien", "LS_NAME": "Vienna", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1561335, "MAX_POP20": 1610331, "MAX_POP50": 1610331, "MAX_POP300": 1610331, "MAX_POP310": 1610331, "MAX_NATSCA": 300, "MIN_AREAKM": 488, "MAX_AREAKM": 533, "MIN_AREAMI": 189, "MAX_AREAMI": 206, "MIN_PERKM": 444, "MAX_PERKM": 497, "MIN_PERMI": 276, "MAX_PERMI": 309, "MIN_BBXMIN": 16.133333, "MAX_BBXMIN": 16.133333, "MIN_BBXMAX": 16.583333, "MAX_BBXMAX": 16.583333, "MIN_BBYMIN": 47.916667, "MAX_BBYMIN": 48.008333, "MIN_BBYMAX": 48.383333, "MAX_BBYMAX": 48.383333, "MEAN_BBXC": 16.351672, "MEAN_BBYC": 48.18247, "COMPARE": 0, "GN_ASCII": "Vienna", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1691468, "ELEVATION": 171, "GTOPO30": 164, "TIMEZONE": "Europe/Vienna", "GEONAMESNO": "GeoNames match general.", "UN_FID": 321, "UN_ADM0": "Austria", "UN_LAT": 48.2, "UN_LONG": 16.32, "POP1950": 2086, "POP1955": 2087, "POP1960": 2089, "POP1965": 2080, "POP1970": 2070, "POP1975": 2059, "POP1980": 2049, "POP1985": 2069, "POP1990": 2096, "POP1995": 2127, "POP2000": 2158, "POP2005": 2264, "POP2010": 2315, "POP2015": 2385, "POP2020": 2451, "POP2025": 2476, "POP2050": 2496, "CITYALT": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.195387 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Budapest", "DIFFASCII": 0, "NAMEASCII": "Budapest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Hungary", "SOV_A3": "HUN", "ADM0NAME": "Hungary", "ADM0_A3": "HUN", "ADM1NAME": "Budapest", "ISO_A2": "HU", "LATITUDE": 47.500006, "LONGITUDE": 19.083321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1679000, "POP_MIN": 1679000, "POP_OTHER": 1718895, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3054643, "MEGANAME": "Budapest", "LS_NAME": "Budapest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1788020, "MAX_POP20": 1788020, "MAX_POP50": 1788020, "MAX_POP300": 1788020, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 556, "MAX_AREAKM": 556, "MIN_AREAMI": 215, "MAX_AREAMI": 215, "MIN_PERKM": 460, "MAX_PERKM": 460, "MIN_PERMI": 286, "MAX_PERMI": 286, "MIN_BBXMIN": 18.85, "MAX_BBXMIN": 18.85, "MIN_BBXMAX": 19.416667, "MAX_BBXMAX": 19.416667, "MIN_BBYMIN": 47.35, "MAX_BBYMIN": 47.35, "MIN_BBYMAX": 47.658333, "MAX_BBYMAX": 47.658333, "MEAN_BBXC": 19.106763, "MEAN_BBYC": 47.478602, "COMPARE": 0, "GN_ASCII": "Budapest", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1696128, "ELEVATION": 0, "GTOPO30": 100, "TIMEZONE": "Europe/Budapest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 211, "UN_ADM0": "Hungary", "UN_LAT": 47.51, "UN_LONG": 19.09, "POP1950": 1618, "POP1955": 1714, "POP1960": 1811, "POP1965": 1878, "POP1970": 1946, "POP1975": 2005, "POP1980": 2057, "POP1985": 2036, "POP1990": 2005, "POP1995": 1893, "POP2000": 1787, "POP2005": 1693, "POP2010": 1679, "POP2015": 1664, "POP2020": 1655, "POP2025": 1655, "POP2050": 1655 }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Podgorica", "DIFFASCII": 0, "NAMEASCII": "Podgorica", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Montenegro", "SOV_A3": "MNE", "ADM0NAME": "Montenegro", "ADM0_A3": "MNE", "ADM1NAME": "Podgorica", "ISO_A2": "ME", "LATITUDE": 42.465973, "LONGITUDE": 19.266307, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 145850, "POP_MIN": 136473, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3193044, "LS_NAME": "Podgorica", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 145850, "MAX_POP20": 145850, "MAX_POP50": 145850, "MAX_POP300": 145850, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 19.208333, "MAX_BBXMIN": 19.208333, "MIN_BBXMAX": 19.316667, "MAX_BBXMAX": 19.316667, "MIN_BBYMIN": 42.408333, "MAX_BBYMIN": 42.408333, "MIN_BBYMAX": 42.475, "MAX_BBYMAX": 42.475, "MEAN_BBXC": 19.263397, "MEAN_BBYC": 42.442115, "COMPARE": 0, "GN_ASCII": "Podgorica", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 136473, "ELEVATION": 0, "GTOPO30": 58, "TIMEZONE": "Europe/Podgorica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.472097 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.456543, 44.824708 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 21.159668, 42.666281 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220 }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tallinn", "DIFFASCII": 0, "NAMEASCII": "Tallinn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Estonia", "SOV_A3": "EST", "ADM0NAME": "Estonia", "ADM0_A3": "EST", "ADM1NAME": "Harju", "ISO_A2": "EE", "LATITUDE": 59.433877, "LONGITUDE": 24.728041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 394024, "POP_MIN": 340027, "POP_OTHER": 317949, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 588409, "LS_NAME": "Tallinn", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 340027, "MAX_POP20": 340027, "MAX_POP50": 340027, "MAX_POP300": 340027, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 130, "MAX_AREAKM": 130, "MIN_AREAMI": 50, "MAX_AREAMI": 50, "MIN_PERKM": 164, "MAX_PERKM": 164, "MIN_PERMI": 102, "MAX_PERMI": 102, "MIN_BBXMIN": 24.591667, "MAX_BBXMIN": 24.591667, "MIN_BBXMAX": 24.916667, "MAX_BBXMAX": 24.916667, "MIN_BBYMIN": 59.333333, "MAX_BBYMIN": 59.333333, "MIN_BBYMAX": 59.525, "MAX_BBYMAX": 59.525, "MEAN_BBXC": 24.746591, "MEAN_BBYC": 59.42709, "COMPARE": 0, "GN_ASCII": "Tallinn", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 394024, "ELEVATION": 0, "GTOPO30": 22, "TIMEZONE": "Europe/Tallinn", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.719238, 59.433903 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.722131 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tunis", "DIFFASCII": 0, "NAMEASCII": "Tunis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tunisia", "SOV_A3": "TUN", "ADM0NAME": "Tunisia", "ADM0_A3": "TUN", "ADM1NAME": "Tunis", "ISO_A2": "TN", "LATITUDE": 36.802778, "LONGITUDE": 10.179678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2412500, "POP_MIN": 728453, "POP_OTHER": 1675117, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2464470, "LS_NAME": "Tunis", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1831176, "MAX_POP20": 1831176, "MAX_POP50": 1838972, "MAX_POP300": 1838972, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 480, "MAX_AREAKM": 502, "MIN_AREAMI": 185, "MAX_AREAMI": 194, "MIN_PERKM": 485, "MAX_PERKM": 524, "MIN_PERMI": 302, "MAX_PERMI": 326, "MIN_BBXMIN": 9.95, "MAX_BBXMIN": 9.95, "MIN_BBXMAX": 10.497585, "MAX_BBXMAX": 10.575, "MIN_BBYMIN": 36.633333, "MAX_BBYMIN": 36.633333, "MIN_BBYMAX": 36.966667, "MAX_BBYMAX": 36.966667, "MEAN_BBXC": 10.202041, "MEAN_BBYC": 36.802974, "COMPARE": 0, "GN_ASCII": "Tunis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 38, "GN_POP": 693210, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Africa/Tunis", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 10.173340, 36.809285 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.906849 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.898038 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouémé", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411 }, "geometry": { "type": "Point", "coordinates": [ 2.526855, 6.402648 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lagos", "DIFFASCII": 0, "NAMEASCII": "Lagos", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Former capital", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Lagos", "ISO_A2": "NG", "LATITUDE": 6.443262, "LONGITUDE": 3.391531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 9466000, "POP_MIN": 1536, "POP_OTHER": 6567892, "RANK_MAX": 13, "RANK_MIN": 3, "GEONAMEID": 735497, "MEGANAME": "Lagos", "LS_NAME": "Lagos", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7147910, "MAX_POP20": 7105663, "MAX_POP50": 7411389, "MAX_POP300": 7453740, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1035, "MAX_AREAKM": 1332, "MIN_AREAMI": 400, "MAX_AREAMI": 514, "MIN_PERKM": 638, "MAX_PERKM": 882, "MIN_PERMI": 397, "MAX_PERMI": 548, "MIN_BBXMIN": 2.925412, "MAX_BBXMIN": 2.996332, "MIN_BBXMAX": 3.475, "MAX_BBXMAX": 3.475, "MIN_BBYMIN": 6.4, "MAX_BBYMIN": 6.4, "MIN_BBYMAX": 6.80087, "MAX_BBYMAX": 6.966667, "MEAN_BBXC": 3.231132, "MEAN_BBYC": 6.585848, "COMPARE": 0, "GN_ASCII": "Lagos", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1536, "ELEVATION": 0, "GTOPO30": 89, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 392, "UN_ADM0": "Nigeria", "UN_LAT": 6.45, "UN_LONG": 3.3, "POP1950": 305, "POP1955": 468, "POP1960": 762, "POP1965": 1135, "POP1970": 1414, "POP1975": 1890, "POP1980": 2572, "POP1985": 3500, "POP1990": 4764, "POP1995": 5966, "POP2000": 7233, "POP2005": 8767, "POP2010": 9466, "POP2015": 10572, "POP2020": 12403, "POP2025": 14134, "POP2050": 15796 }, "geometry": { "type": "Point", "coordinates": [ 3.383789, 6.446318 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358 }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ndjamena", "NAMEALT": "N'Djaména", "DIFFASCII": 0, "NAMEASCII": "Ndjamena", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chad", "SOV_A3": "TCD", "ADM0NAME": "Chad", "ADM0_A3": "TCD", "ADM1NAME": "Hadjer-Lamis", "ISO_A2": "TD", "LATITUDE": 12.113097, "LONGITUDE": 15.049148, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 989000, "POP_MIN": 681387, "POP_OTHER": 686347, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2427123, "MEGANAME": "N'Djaména", "LS_NAME": "Ndjamena", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 681387, "MAX_POP20": 681387, "MAX_POP50": 681387, "MAX_POP300": 681387, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 79, "MAX_AREAKM": 79, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": 15.025, "MAX_BBXMIN": 15.025, "MIN_BBXMAX": 15.133333, "MAX_BBXMAX": 15.133333, "MIN_BBYMIN": 12.066667, "MAX_BBYMIN": 12.066667, "MIN_BBYMAX": 12.183333, "MAX_BBYMAX": 12.183333, "MEAN_BBXC": 15.079167, "MEAN_BBYC": 12.120479, "COMPARE": 0, "GN_ASCII": "N'Djamena", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 721081, "ELEVATION": 0, "GTOPO30": 290, "TIMEZONE": "Africa/Ndjamena", "GEONAMESNO": "GeoNames match general.", "UN_FID": 16, "UN_ADM0": "Chad", "UN_LAT": 12.1, "UN_LONG": 15.24, "POP1950": 22, "POP1955": 40, "POP1960": 71, "POP1965": 109, "POP1970": 155, "POP1975": 231, "POP1980": 324, "POP1985": 393, "POP1990": 477, "POP1995": 579, "POP2000": 711, "POP2005": 902, "POP2010": 989, "POP2015": 1127, "POP2020": 1405, "POP2025": 1753, "POP2050": 2172, "CITYALT": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.125264 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Yaounde", "NAMEALT": "Yaoundé", "DIFFASCII": 0, "NAMEASCII": "Yaounde", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cameroon", "SOV_A3": "CMR", "ADM0NAME": "Cameroon", "ADM0_A3": "CMR", "ADM1NAME": "Centre", "ISO_A2": "CM", "LATITUDE": 3.866701, "LONGITUDE": 11.516651, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1611000, "POP_MIN": 1060587, "POP_OTHER": 1060747, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2220957, "MEGANAME": "Yaoundé", "LS_NAME": "Yaounde", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1060587, "MAX_POP20": 1060587, "MAX_POP50": 1060587, "MAX_POP300": 1060587, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 197, "MAX_AREAKM": 197, "MIN_AREAMI": 76, "MAX_AREAMI": 76, "MIN_PERKM": 116, "MAX_PERKM": 116, "MIN_PERMI": 72, "MAX_PERMI": 72, "MIN_BBXMIN": 11.433333, "MAX_BBXMIN": 11.433333, "MIN_BBXMAX": 11.6, "MAX_BBXMAX": 11.6, "MIN_BBYMIN": 3.775, "MAX_BBYMIN": 3.775, "MIN_BBYMAX": 3.983333, "MAX_BBYMAX": 3.983333, "MEAN_BBXC": 11.518344, "MEAN_BBYC": 3.865639, "COMPARE": 0, "GN_ASCII": "Yaounde", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1299369, "ELEVATION": 0, "GTOPO30": 733, "TIMEZONE": "Africa/Douala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 9, "UN_ADM0": "Cameroon", "UN_LAT": 3.86, "UN_LONG": 11.51, "POP1950": 32, "POP1955": 49, "POP1960": 75, "POP1965": 112, "POP1970": 183, "POP1975": 292, "POP1980": 415, "POP1985": 578, "POP1990": 754, "POP1995": 948, "POP2000": 1192, "POP2005": 1489, "POP2010": 1611, "POP2015": 1787, "POP2020": 2058, "POP2025": 2312, "POP2050": 2549, "CITYALT": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athínai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athínai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nicosia", "DIFFASCII": 0, "NAMEASCII": "Nicosia", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Capital of both", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cyprus", "SOV_A3": "CYP", "ADM0NAME": "Cyprus", "ADM0_A3": "CYP", "ISO_A2": "CY", "LATITUDE": 35.166676, "LONGITUDE": 33.366635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224300, "POP_MIN": 200452, "POP_OTHER": 222985, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 146268, "LS_NAME": "Nicosia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 224300, "MAX_POP20": 224300, "MAX_POP50": 224300, "MAX_POP300": 224300, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 128, "MAX_AREAKM": 128, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 68, "MAX_PERMI": 68, "MIN_BBXMIN": 33.275, "MAX_BBXMIN": 33.275, "MIN_BBXMAX": 33.425, "MAX_BBXMAX": 33.425, "MIN_BBYMIN": 35.041667, "MAX_BBYMIN": 35.041667, "MIN_BBYMAX": 35.225, "MAX_BBYMAX": 35.225, "MEAN_BBXC": 33.352244, "MEAN_BBYC": 35.15, "COMPARE": 0, "GN_ASCII": "Nicosia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 200452, "ELEVATION": 0, "GTOPO30": 128, "TIMEZONE": "Asia/Nicosia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 33.376465, 35.173808 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123, "MAX_POP20": 15091561, "MAX_POP50": 29872827, "MAX_POP300": 30682197, "MAX_POP310": 30696820, "MAX_NATSCA": 300, "MIN_AREAKM": 1479, "MAX_AREAKM": 4900, "MIN_AREAMI": 571, "MAX_AREAMI": 1892, "MIN_PERKM": 1365, "MAX_PERKM": 5010, "MIN_PERMI": 848, "MAX_PERMI": 3113, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 7734614, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494, "POP1955": 3029, "POP1960": 3680, "POP1965": 4738, "POP1970": 5585, "POP1975": 6450, "POP1980": 7349, "POP1985": 8328, "POP1990": 9061, "POP1995": 9707, "POP2000": 10534, "POP2005": 11487, "POP2010": 11893, "POP2015": 12503, "POP2020": 13465, "POP2025": 14451, "POP2050": 15561, "CITYALT": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.050077 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yerevan", "DIFFASCII": 0, "NAMEASCII": "Yerevan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Armenia", "SOV_A3": "ARM", "ADM0NAME": "Armenia", "ADM0_A3": "ARM", "ADM1NAME": "Erevan", "ISO_A2": "AM", "LATITUDE": 40.181151, "LONGITUDE": 44.513551, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1102000, "POP_MIN": 1093485, "POP_OTHER": 1154748, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 616052, "MEGANAME": "Yerevan", "LS_NAME": "Yerevan", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1200842, "MAX_POP20": 1200842, "MAX_POP50": 1200842, "MAX_POP300": 1200842, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 191, "MAX_AREAKM": 191, "MIN_AREAMI": 74, "MAX_AREAMI": 74, "MIN_PERKM": 166, "MAX_PERKM": 166, "MIN_PERMI": 103, "MAX_PERMI": 103, "MIN_BBXMIN": 44.391667, "MAX_BBXMIN": 44.391667, "MIN_BBXMAX": 44.6, "MAX_BBXMAX": 44.6, "MIN_BBYMIN": 39.925, "MAX_BBYMIN": 39.925, "MIN_BBYMAX": 40.241667, "MAX_BBYMAX": 40.241667, "MEAN_BBXC": 44.506293, "MEAN_BBYC": 40.127356, "COMPARE": 0, "GN_ASCII": "Yerevan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1093485, "ELEVATION": 0, "GTOPO30": 1002, "TIMEZONE": "Asia/Yerevan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 377, "UN_ADM0": "Armenia", "UN_LAT": 40.2, "UN_LONG": 44.53, "POP1950": 341, "POP1955": 431, "POP1960": 538, "POP1965": 648, "POP1970": 778, "POP1975": 911, "POP1980": 1042, "POP1985": 1123, "POP1990": 1175, "POP1995": 1142, "POP2000": 1111, "POP2005": 1103, "POP2010": 1102, "POP2015": 1102, "POP2020": 1102, "POP2025": 1102, "POP2050": 1102 }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060 }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amman", "DIFFASCII": 0, "NAMEASCII": "Amman", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Jordan", "SOV_A3": "JOR", "ADM0NAME": "Jordan", "ADM0_A3": "JOR", "ADM1NAME": "Amman", "ISO_A2": "JO", "LATITUDE": 31.950025, "LONGITUDE": 35.9333, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1060000, "POP_MIN": 1060000, "POP_OTHER": 2633729, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 250441, "MEGANAME": "Amman", "LS_NAME": "Amman", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2725138, "MAX_POP20": 3684787, "MAX_POP50": 3684787, "MAX_POP300": 3684787, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 403, "MAX_AREAKM": 545, "MIN_AREAMI": 156, "MAX_AREAMI": 210, "MIN_PERKM": 258, "MAX_PERKM": 361, "MIN_PERMI": 160, "MAX_PERMI": 224, "MIN_BBXMIN": 35.775, "MAX_BBXMIN": 35.775, "MIN_BBXMAX": 36.041667, "MAX_BBXMAX": 36.158333, "MIN_BBYMIN": 31.783333, "MAX_BBYMIN": 31.783333, "MIN_BBYMAX": 32.083333, "MAX_BBYMAX": 32.166667, "MEAN_BBXC": 35.928711, "MEAN_BBYC": 31.948606, "COMPARE": 0, "GN_ASCII": "Amman", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1275857, "ELEVATION": 0, "GTOPO30": 765, "TIMEZONE": "Asia/Amman", "GEONAMESNO": "GeoNames match general.", "UN_FID": 322, "UN_ADM0": "Jordan", "UN_LAT": 31.94, "UN_LONG": 35.93, "POP1950": 90, "POP1955": 140, "POP1960": 218, "POP1965": 299, "POP1970": 388, "POP1975": 500, "POP1980": 636, "POP1985": 736, "POP1990": 851, "POP1995": 973, "POP2000": 1007, "POP2005": 1042, "POP2010": 1060, "POP2015": 1106, "POP2020": 1185, "POP2025": 1268, "POP2050": 1359 }, "geometry": { "type": "Point", "coordinates": [ 35.925293, 31.952162 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.329588 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sanaa", "NAMEALT": "Sana'a'", "DIFFASCII": 0, "NAMEASCII": "Sanaa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Yemen", "SOV_A3": "YEM", "ADM0NAME": "Yemen", "ADM0_A3": "YEM", "ADM1NAME": "Amanat Al Asimah", "ISO_A2": "YE", "LATITUDE": 15.354733, "LONGITUDE": 44.206593, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2008000, "POP_MIN": 1835853, "POP_OTHER": 1742507, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 71137, "MEGANAME": "Sana'a'", "LS_NAME": "Sanaa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1835853, "MAX_POP20": 1835853, "MAX_POP50": 1835853, "MAX_POP300": 1835853, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 160, "MAX_AREAKM": 160, "MIN_AREAMI": 62, "MAX_AREAMI": 62, "MIN_PERKM": 132, "MAX_PERKM": 132, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": 44.15, "MAX_BBXMIN": 44.15, "MIN_BBXMAX": 44.258333, "MAX_BBXMAX": 44.258333, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.508333, "MAX_BBYMAX": 15.508333, "MEAN_BBXC": 44.206615, "MEAN_BBYC": 15.376031, "COMPARE": 0, "GN_ASCII": "Sanaa", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 587, "UN_ADM0": "Yemen", "UN_LAT": 15.36, "UN_LONG": 44.2, "POP1950": 46, "POP1955": 58, "POP1960": 72, "POP1965": 89, "POP1970": 111, "POP1975": 141, "POP1980": 238, "POP1985": 402, "POP1990": 653, "POP1995": 1034, "POP2000": 1365, "POP2005": 1801, "POP2010": 2008, "POP2015": 2345, "POP2020": 2955, "POP2025": 3636, "POP2050": 4382, "CITYALT": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.347762 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Addis Ababa", "DIFFASCII": 0, "NAMEASCII": "Addis Ababa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ethiopia", "SOV_A3": "ETH", "ADM0NAME": "Ethiopia", "ADM0_A3": "ETH", "ADM1NAME": "Addis Ababa", "ISO_A2": "ET", "LATITUDE": 9.03331, "LONGITUDE": 38.700004, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3100000, "POP_MIN": 2757729, "POP_OTHER": 3013653, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 344979, "MEGANAME": "Addis Ababa", "LS_NAME": "Addis Ababa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2984087, "MAX_POP20": 3176486, "MAX_POP50": 3491912, "MAX_POP300": 3450173, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 462, "MAX_AREAKM": 1182, "MIN_AREAMI": 178, "MAX_AREAMI": 457, "MIN_PERKM": 397, "MAX_PERKM": 1325, "MIN_PERMI": 247, "MAX_PERMI": 823, "MIN_BBXMIN": 38.575, "MAX_BBXMIN": 38.575, "MIN_BBXMAX": 38.966667, "MAX_BBXMAX": 39.483333, "MIN_BBYMIN": 8.033333, "MAX_BBYMIN": 8.67178, "MIN_BBYMAX": 9.125, "MAX_BBYMAX": 9.125, "MEAN_BBXC": 38.919464, "MEAN_BBYC": 8.825709, "COMPARE": 0, "GN_ASCII": "Addis Ababa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 2757729, "ELEVATION": 0, "GTOPO30": 2363, "TIMEZONE": "Africa/Addis_Ababa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 180, "UN_ADM0": "Ethiopia", "UN_LAT": 9.02, "UN_LONG": 38.7, "POP1950": 392, "POP1955": 451, "POP1960": 519, "POP1965": 597, "POP1970": 729, "POP1975": 926, "POP1980": 1175, "POP1985": 1476, "POP1990": 1791, "POP1995": 2157, "POP2000": 2493, "POP2005": 2902, "POP2010": 3100, "POP2015": 3453, "POP2020": 4184, "POP2025": 5083, "POP2050": 6156 }, "geometry": { "type": "Point", "coordinates": [ 38.693848, 9.037003 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 44.055176, 9.557417 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892 }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEALT": "Ürümqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102, "MEGANAME": "Ürümqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046, "MAX_POP20": 2066046, "MAX_POP50": 2066046, "MAX_POP300": 2066046, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 361, "MAX_AREAKM": 361, "MIN_AREAMI": 139, "MAX_AREAMI": 139, "MIN_PERKM": 318, "MAX_PERKM": 318, "MIN_PERMI": 198, "MAX_PERMI": 198, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13, "GN_POP": 1508225, "ELEVATION": 0, "GTOPO30": 915, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253, "POP1955": 312, "POP1960": 384, "POP1965": 472, "POP1970": 581, "POP1975": 715, "POP1980": 881, "POP1985": 1029, "POP1990": 1161, "POP1995": 1417, "POP2000": 1730, "POP2005": 2025, "POP2010": 2151, "POP2015": 2340, "POP2020": 2620, "POP2025": 2851, "POP2050": 3038, "CITYALT": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.583008, 43.802819 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Baku", "DIFFASCII": 0, "NAMEASCII": "Baku", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Azerbaijan", "SOV_A3": "AZE", "ADM0NAME": "Azerbaijan", "ADM0_A3": "AZE", "ADM1NAME": "Baki", "ISO_A2": "AZ", "LATITUDE": 40.395272, "LONGITUDE": 49.862217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2122300, "POP_MIN": 1892000, "POP_OTHER": 1518801, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 587084, "MEGANAME": "Baku", "LS_NAME": "Baku", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1581087, "MAX_POP20": 1581475, "MAX_POP50": 1581475, "MAX_POP300": 1581475, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 249, "MIN_AREAMI": 95, "MAX_AREAMI": 96, "MIN_PERKM": 174, "MAX_PERKM": 179, "MIN_PERMI": 108, "MAX_PERMI": 111, "MIN_BBXMIN": 49.7, "MAX_BBXMIN": 49.716667, "MIN_BBXMAX": 50.016667, "MAX_BBXMAX": 50.016667, "MIN_BBYMIN": 40.316667, "MAX_BBYMIN": 40.316667, "MIN_BBYMAX": 40.5, "MAX_BBYMAX": 40.5, "MEAN_BBXC": 49.881373, "MEAN_BBYC": 40.41632, "COMPARE": 0, "GN_ASCII": "Baku", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1116513, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Baku", "GEONAMESNO": "GeoNames match general.", "UN_FID": 200, "UN_ADM0": "Azerbaijan", "UN_LAT": 40.32, "UN_LONG": 49.81, "POP1950": 897, "POP1955": 940, "POP1960": 1005, "POP1965": 1132, "POP1970": 1274, "POP1975": 1429, "POP1980": 1574, "POP1985": 1660, "POP1990": 1733, "POP1995": 1766, "POP2000": 1806, "POP2005": 1867, "POP2010": 1892, "POP2015": 1931, "POP2020": 2006, "POP2025": 2097, "POP2050": 2187 }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.396764 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.966309, 29.363027 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Manama", "DIFFASCII": 0, "NAMEASCII": "Manama", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahrain", "SOV_A3": "BHR", "ADM0NAME": "Bahrain", "ADM0_A3": "BHR", "ISO_A2": "BH", "LATITUDE": 26.236136, "LONGITUDE": 50.583052, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 563920, "POP_MIN": 157474, "POP_OTHER": 563666, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 290340, "LS_NAME": "Manama", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 563920, "MAX_POP20": 563920, "MAX_POP50": 563920, "MAX_POP300": 563920, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 178, "MAX_AREAKM": 178, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 115, "MAX_PERMI": 115, "MIN_BBXMIN": 50.441667, "MAX_BBXMIN": 50.441667, "MIN_BBXMAX": 50.633333, "MAX_BBXMAX": 50.633333, "MIN_BBYMIN": 26.05, "MAX_BBYMIN": 26.05, "MIN_BBYMAX": 26.25, "MAX_BBYMAX": 26.25, "MEAN_BBXC": 50.542529, "MEAN_BBYC": 26.164763, "COMPARE": 0, "GN_ASCII": "Manama", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 147074, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Bahrain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Doha", "DIFFASCII": 0, "NAMEASCII": "Doha", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Qatar", "SOV_A3": "QAT", "ADM0NAME": "Qatar", "ADM0_A3": "QAT", "ADM1NAME": "Ad Dawhah", "ISO_A2": "QA", "LATITUDE": 25.286556, "LONGITUDE": 51.532968, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 1450000, "POP_MIN": 731310, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 290030, "LS_NAME": "Doha", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 731310, "MAX_POP20": 731310, "MAX_POP50": 731310, "MAX_POP300": 731310, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 270, "MAX_AREAKM": 270, "MIN_AREAMI": 104, "MAX_AREAMI": 104, "MIN_PERKM": 205, "MAX_PERKM": 205, "MIN_PERMI": 127, "MAX_PERMI": 127, "MIN_BBXMIN": 51.358333, "MAX_BBXMIN": 51.358333, "MIN_BBXMAX": 51.583333, "MAX_BBXMAX": 51.583333, "MIN_BBYMIN": 25.158333, "MAX_BBYMIN": 25.158333, "MIN_BBYMAX": 25.408333, "MAX_BBYMAX": 25.408333, "MEAN_BBXC": 51.468439, "MEAN_BBYC": 25.281154, "COMPARE": 0, "GN_ASCII": "Doha", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 344939, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Asia/Qatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 51.525879, 25.284438 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.467151 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861, "MAX_POP20": 586861, "MAX_POP50": 586861, "MAX_POP300": 586861, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 797000, "ELEVATION": 0, "GTOPO30": 69, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.604262 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.373535, 2.064982 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kabul", "DIFFASCII": 0, "NAMEASCII": "Kabul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Afghanistan", "SOV_A3": "AFG", "ADM0NAME": "Afghanistan", "ADM0_A3": "AFG", "ADM1NAME": "Kabul", "ISO_A2": "AF", "LATITUDE": 34.51669, "LONGITUDE": 69.18326, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3277000, "POP_MIN": 3043532, "POP_OTHER": 3475519, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1138958, "MEGANAME": "Kabul", "LS_NAME": "Kabul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3720671, "MAX_POP20": 3720671, "MAX_POP50": 4803365, "MAX_POP300": 4793793, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 1471, "MIN_AREAMI": 229, "MAX_AREAMI": 568, "MIN_PERKM": 409, "MAX_PERKM": 1100, "MIN_PERMI": 254, "MAX_PERMI": 683, "MIN_BBXMIN": 68.866667, "MAX_BBXMIN": 68.866667, "MIN_BBXMAX": 69.308333, "MAX_BBXMAX": 69.783333, "MIN_BBYMIN": 34.433333, "MAX_BBYMIN": 34.433333, "MIN_BBYMAX": 34.768813, "MAX_BBYMAX": 35.166667, "MEAN_BBXC": 69.144173, "MEAN_BBYC": 34.688498, "COMPARE": 0, "GN_ASCII": "Kabul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 3043532, "ELEVATION": 0, "GTOPO30": 1808, "TIMEZONE": "Asia/Kabul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 320, "UN_ADM0": "Afghanistan", "UN_LAT": 34.53, "UN_LONG": 69.13, "POP1950": 129, "POP1955": 184, "POP1960": 263, "POP1965": 369, "POP1970": 472, "POP1975": 674, "POP1980": 978, "POP1985": 1160, "POP1990": 1306, "POP1995": 1616, "POP2000": 1963, "POP2005": 2994, "POP2010": 3277, "POP2015": 3768, "POP2020": 4730, "POP2025": 5836, "POP2050": 7175 }, "geometry": { "type": "Point", "coordinates": [ 69.191895, 34.524661 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 77.189941, 28.594169 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356, "MAX_POP20": 742356, "MAX_POP50": 7482035, "MAX_POP300": 7482969, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 772, "MAX_AREAKM": 5463, "MIN_AREAMI": 298, "MAX_AREAMI": 2109, "MIN_PERKM": 545, "MAX_PERKM": 4154, "MIN_PERMI": 339, "MAX_PERMI": 2581, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 601600, "ELEVATION": 0, "GTOPO30": 497, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36, "POP1955": 41, "POP1960": 45, "POP1965": 56, "POP1970": 70, "POP1975": 107, "POP1980": 189, "POP1985": 260, "POP1990": 343, "POP1995": 452, "POP2000": 594, "POP2005": 732, "POP2010": 780, "POP2015": 851, "POP2020": 988, "POP2025": 1148, "POP2050": 1320 }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Bangalore", "NAMEALT": "Bengaluru", "DIFFASCII": 0, "NAMEASCII": "Bangalore", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Karnataka", "ISO_A2": "IN", "LATITUDE": 12.969995, "LONGITUDE": 77.56001, "CHANGED": 3, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 6787000, "POP_MIN": 5104047, "POP_OTHER": 8102712, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1277333, "MEGANAME": "Bangalore", "LS_NAME": "Bangalore", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8181096, "MAX_POP20": 8181096, "MAX_POP50": 8553953, "MAX_POP300": 8553953, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2443, "MAX_AREAKM": 2836, "MIN_AREAMI": 943, "MAX_AREAMI": 1095, "MIN_PERKM": 1908, "MAX_PERKM": 2412, "MIN_PERMI": 1186, "MAX_PERMI": 1499, "MIN_BBXMIN": 77.275, "MAX_BBXMIN": 77.275, "MIN_BBXMAX": 77.996673, "MAX_BBXMAX": 78.15, "MIN_BBYMIN": 12.325, "MAX_BBYMIN": 12.325, "MIN_BBYMAX": 13.333333, "MAX_BBYMAX": 13.333333, "MEAN_BBXC": 77.703019, "MEAN_BBYC": 12.841733, "COMPARE": 1, "GN_ASCII": "Bengaluru", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 5104047, "ELEVATION": 920, "GTOPO30": 914, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 219, "UN_ADM0": "India", "UN_LAT": 12.97, "UN_LONG": 77.58, "POP1950": 746, "POP1955": 939, "POP1960": 1166, "POP1965": 1377, "POP1970": 1615, "POP1975": 2111, "POP1980": 2812, "POP1985": 3395, "POP1990": 4036, "POP1995": 4744, "POP2000": 5567, "POP2005": 6465, "POP2010": 6787, "POP2015": 7229, "POP2020": 7967, "POP2025": 8795, "POP2050": 9719 }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.961736 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Male", "DIFFASCII": 0, "NAMEASCII": "Male", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Maldives", "SOV_A3": "MDV", "ADM0NAME": "Maldives", "ADM0_A3": "MDV", "ISO_A2": "MV", "LATITUDE": 4.166708, "LONGITUDE": 73.499947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 112927, "POP_MIN": 103693, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3174186, "LS_NAME": "Male", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 112927, "MAX_POP20": 112927, "MAX_POP50": 112927, "MAX_POP300": 112927, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 73.5, "MAX_BBXMIN": 73.5, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.516667, "MIN_BBYMIN": 4.166667, "MAX_BBYMIN": 4.166667, "MIN_BBYMAX": 4.183333, "MAX_BBYMAX": 4.183333, "MEAN_BBXC": 73.508333, "MEAN_BBYC": 4.175, "COMPARE": 0, "GN_ASCII": "Male", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 17, "GN_POP": 2138, "ELEVATION": 0, "GTOPO30": 672, "TIMEZONE": "Europe/Rome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.171115 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015 }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871 }, "geometry": { "type": "Point", "coordinates": [ 36.804199, -1.274309 ] } } ] } ] } , @@ -367,13 +365,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104 }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363 }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.162401 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 159.938965, -9.427387 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.515836 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.124971 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Wellington", "DIFFASCII": 0, "NAMEASCII": "Wellington", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Manawatu-Wanganui", "ISO_A2": "NZ", "LATITUDE": -41.299974, "LONGITUDE": 174.783274, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 393400, "POP_MIN": 199200, "POP_OTHER": 140594, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2144168, "LS_NAME": "Wellington", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144164, "MAX_POP20": 144164, "MAX_POP50": 144164, "MAX_POP300": 144164, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 79, "MAX_PERKM": 79, "MIN_PERMI": 49, "MAX_PERMI": 49, "MIN_BBXMIN": 174.725, "MAX_BBXMIN": 174.725, "MIN_BBXMAX": 174.841667, "MAX_BBXMAX": 174.841667, "MIN_BBYMIN": -41.35, "MAX_BBYMIN": -41.35, "MIN_BBYMAX": -41.2, "MAX_BBYMAX": -41.2, "MEAN_BBXC": 174.78792, "MEAN_BBYC": -41.285539, "COMPARE": 0, "GN_ASCII": "Wellington", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 5428, "ELEVATION": 0, "GTOPO30": 304, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 174.792480, -41.294317 ] } } ] } @@ -383,29 +381,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Chengdu", "DIFFASCII": 0, "NAMEASCII": "Chengdu", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Sichuan", "ISO_A2": "CN", "LATITUDE": 30.67, "LONGITUDE": 104.070019, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4123000, "POP_MIN": 3950437, "POP_OTHER": 11622929, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1815286, "MEGANAME": "Chengdu", "LS_NAME": "Chengdu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9954810, "MAX_POP20": 11359674, "MAX_POP50": 24374217, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 5912, "MAX_AREAKM": 24244, "MIN_AREAMI": 2283, "MAX_AREAMI": 9361, "MIN_PERKM": 2296, "MAX_PERKM": 11900, "MIN_PERMI": 1427, "MAX_PERMI": 7394, "MIN_BBXMIN": 103.125, "MAX_BBXMIN": 103.383333, "MIN_BBXMAX": 104.433333, "MAX_BBXMAX": 105.375, "MIN_BBYMIN": 28.738768, "MAX_BBYMIN": 30.065456, "MIN_BBYMAX": 31.083333, "MAX_BBYMAX": 31.341667, "MEAN_BBXC": 104.039242, "MEAN_BBYC": 30.486458, "COMPARE": 0, "GN_ASCII": "Chengdu", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 3950437, "ELEVATION": 0, "GTOPO30": 529, "TIMEZONE": "Asia/Chongqing", "GEONAMESNO": "GeoNames match general.", "UN_FID": 31, "UN_ADM0": "China", "UN_LAT": 30.67, "UN_LONG": 104.07, "POP1950": 768, "POP1955": 922, "POP1960": 1106, "POP1965": 1327, "POP1970": 1592, "POP1975": 1911, "POP1980": 2293, "POP1985": 2639, "POP1990": 2955, "POP1995": 3403, "POP2000": 3919, "POP2005": 4065, "POP2010": 4123, "POP2015": 4266, "POP2020": 4634, "POP2025": 5014, "POP2050": 5320 }, "geometry": { "type": "Point", "coordinates": [ 104.062500, 30.675715 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015 }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461 }, "geometry": { "type": "Point", "coordinates": [ 96.108398, 19.766704 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "Former capital", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820, "MAX_POP20": 3301820, "MAX_POP50": 3301820, "MAX_POP300": 3301820, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 199, "MAX_PERKM": 199, "MIN_PERMI": 123, "MAX_PERMI": 123, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 4477638, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302, "POP1955": 1440, "POP1960": 1592, "POP1965": 1760, "POP1970": 1946, "POP1975": 2151, "POP1980": 2378, "POP1985": 2629, "POP1990": 2907, "POP1995": 3213, "POP2000": 3553, "POP2005": 3928, "POP2010": 4088, "POP2015": 4348, "POP2020": 4841, "POP2025": 5361, "POP2050": 5869, "CITYALT": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vientiane", "DIFFASCII": 0, "NAMEASCII": "Vientiane", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Laos", "SOV_A3": "LAO", "ADM0NAME": "Laos", "ADM0_A3": "LAO", "ADM1NAME": "Vientiane [prefecture]", "ISO_A2": "LA", "LATITUDE": 17.966693, "LONGITUDE": 102.59998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 754000, "POP_MIN": 570348, "POP_OTHER": 469811, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1651944, "LS_NAME": "Vientiane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 471927, "MAX_POP20": 471927, "MAX_POP50": 570348, "MAX_POP300": 570348, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 166, "MAX_AREAKM": 243, "MIN_AREAMI": 64, "MAX_AREAMI": 94, "MIN_PERKM": 170, "MAX_PERKM": 283, "MIN_PERMI": 106, "MAX_PERMI": 176, "MIN_BBXMIN": 102.491667, "MAX_BBXMIN": 102.491667, "MIN_BBXMAX": 102.725, "MAX_BBXMAX": 102.816667, "MIN_BBYMIN": 17.8, "MAX_BBYMIN": 17.875, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": 102.648054, "MEAN_BBYC": 17.967124, "COMPARE": 0, "GN_ASCII": "Vientiane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 27, "GN_POP": 196731, "ELEVATION": 0, "GTOPO30": 174, "TIMEZONE": "Asia/Vientiane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 102.590332, 17.957832 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Hanoi", "NAMEALT": "Hà Noi", "DIFFASCII": 0, "NAMEASCII": "Hanoi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Vietnam", "SOV_A3": "VNM", "ADM0NAME": "Vietnam", "ADM0_A3": "VNM", "ADM1NAME": "Thái Nguyên", "ISO_A2": "VN", "LATITUDE": 21.033327, "LONGITUDE": 105.850014, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4378000, "POP_MIN": 1431270, "POP_OTHER": 5466347, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1581130, "MEGANAME": "Hà Noi", "LS_NAME": "Hanoi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5620806, "MAX_POP20": 7346227, "MAX_POP50": 16406759, "MAX_POP300": 23700631, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2512, "MAX_AREAKM": 14049, "MIN_AREAMI": 970, "MAX_AREAMI": 5424, "MIN_PERKM": 1175, "MAX_PERKM": 10267, "MIN_PERMI": 730, "MAX_PERMI": 6380, "MIN_BBXMIN": 104.975, "MAX_BBXMIN": 105.616287, "MIN_BBXMAX": 106.2294, "MAX_BBXMAX": 106.808333, "MIN_BBYMIN": 19.283333, "MAX_BBYMIN": 20.620237, "MIN_BBYMAX": 21.319209, "MAX_BBYMAX": 21.783333, "MEAN_BBXC": 105.892881, "MEAN_BBYC": 20.873406, "COMPARE": 0, "GN_ASCII": "Ha Noi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 1431270, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Asia/Ho_Chi_Minh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 451, "UN_ADM0": "Viet Nam", "UN_LAT": 21.03, "UN_LONG": 105.82, "POP1950": 280, "POP1955": 425, "POP1960": 644, "POP1965": 917, "POP1970": 1307, "POP1975": 1884, "POP1980": 2606, "POP1985": 2854, "POP1990": 3126, "POP1995": 3424, "POP2000": 3752, "POP2005": 4170, "POP2010": 4378, "POP2015": 4723, "POP2020": 5357, "POP2025": 6036, "POP2050": 6754, "CITYALT": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.842285, 21.043491 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104 }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861, "MAX_POP20": 11120470, "MAX_POP50": 16510327, "MAX_POP300": 23647944, "MAX_POP310": 137121250, "MAX_NATSCA": 300, "MIN_AREAKM": 2512, "MAX_AREAKM": 118844, "MIN_AREAMI": 970, "MAX_AREAMI": 45886, "MIN_PERKM": 1837, "MAX_PERKM": 93615, "MIN_PERMI": 1141, "MAX_PERMI": 58169, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22, "GN_POP": 7480601, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331, "POP1955": 4628, "POP1960": 4945, "POP1965": 5284, "POP1970": 5646, "POP1975": 6034, "POP1980": 6448, "POP1985": 6890, "POP1990": 7362, "POP1995": 8486, "POP2000": 9782, "POP2005": 10717, "POP2010": 11106, "POP2015": 11741, "POP2020": 12842, "POP2025": 13807, "POP2050": 14545 }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Shanghai", "DIFFASCII": 0, "NAMEASCII": "Shanghai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Shanghai", "ISO_A2": "CN", "LATITUDE": 31.216452, "LONGITUDE": 121.436505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 14987000, "POP_MIN": 14608512, "POP_OTHER": 16803572, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1796236, "MEGANAME": "Shanghai", "LS_NAME": "Shanghai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 16172884, "MAX_POP20": 16172884, "MAX_POP50": 26630672, "MAX_POP300": 26631586, "MAX_POP310": 40576904, "MAX_NATSCA": 300, "MIN_AREAKM": 3792, "MAX_AREAKM": 16400, "MIN_AREAMI": 1464, "MAX_AREAMI": 6332, "MIN_PERKM": 2219, "MAX_PERKM": 12342, "MIN_PERMI": 1379, "MAX_PERMI": 7669, "MIN_BBXMIN": 119.016667, "MAX_BBXMIN": 121.013757, "MIN_BBXMAX": 121.9, "MAX_BBXMAX": 121.9, "MIN_BBYMIN": 30.191667, "MAX_BBYMIN": 30.7, "MIN_BBYMAX": 31.65, "MAX_BBYMAX": 32.308333, "MEAN_BBXC": 121.053901, "MEAN_BBYC": 31.253289, "COMPARE": 0, "GN_ASCII": "Shanghai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 14608512, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Asia/Shanghai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 98, "UN_ADM0": "China", "UN_LAT": 31.24, "UN_LONG": 121.47, "POP1950": 6066, "POP1955": 6299, "POP1960": 6542, "POP1965": 6793, "POP1970": 7055, "POP1975": 7326, "POP1980": 7608, "POP1985": 7901, "POP1990": 8205, "POP1995": 10423, "POP2000": 13243, "POP2005": 14503, "POP2010": 14987, "POP2015": 15789, "POP2020": 17214, "POP2025": 18466, "POP2050": 19412 }, "geometry": { "type": "Point", "coordinates": [ 121.442871, 31.222197 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797, "MAX_POP20": 2498797, "MAX_POP50": 2498797, "MAX_POP300": 2498797, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 446, "MAX_AREAKM": 447, "MIN_AREAMI": 172, "MAX_AREAMI": 173, "MIN_PERKM": 510, "MAX_PERKM": 511, "MIN_PERMI": 317, "MAX_PERMI": 318, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 3222000, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516, "POP1955": 577, "POP1960": 646, "POP1965": 769, "POP1970": 987, "POP1975": 1348, "POP1980": 1842, "POP1985": 2195, "POP1990": 2526, "POP1995": 2838, "POP2000": 3117, "POP2005": 3265, "POP2010": 3300, "POP2015": 3346, "POP2020": 3434, "POP2025": 3537, "POP2050": 3630 }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.027719 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305 }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, de fa", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575, "MAX_POP20": 3077575, "MAX_POP50": 3077575, "MAX_POP300": 23366503, "MAX_POP310": 26749011, "MAX_NATSCA": 300, "MIN_AREAKM": 67, "MAX_AREAKM": 8820, "MIN_AREAMI": 26, "MAX_AREAMI": 3405, "MIN_PERKM": 46, "MAX_PERKM": 5298, "MIN_PERMI": 29, "MAX_PERMI": 3292, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 10444527, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544, "POP1955": 1872, "POP1960": 2274, "POP1965": 2829, "POP1970": 3534, "POP1975": 4999, "POP1980": 5955, "POP1985": 6888, "POP1990": 7973, "POP1995": 9401, "POP2000": 9958, "POP2005": 10761, "POP2010": 11100, "POP2015": 11662, "POP2020": 12786, "POP2025": 13892, "POP2050": 14808 }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.493196 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.759666 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ISO_A2": "MH", "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084, "MAX_POP20": 2084, "MAX_POP50": 2084, "MAX_POP300": 2084, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 20500, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.926427 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-rp.json b/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-rp.json index d02976551..94c8b4843 100644 --- a/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-rp.json +++ b/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-rp.json @@ -9,7 +9,7 @@ "maxzoom": "3", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-rp.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":230},{\"dropped_by_rate\":231},{\"dropped_by_rate\":160},{}]", +"strategies": "[{\"dropped_by_rate\":230},{\"dropped_by_rate\":231},{\"dropped_by_rate\":159},{}]", "tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":2.65828,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" @@ -18,29 +18,29 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Jose", "NAMEALT": "San José", "DIFFASCII": 0, "NAMEASCII": "San Jose", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Costa Rica", "SOV_A3": "CRI", "ADM0NAME": "Costa Rica", "ADM0_A3": "CRI", "ADM1NAME": "San José", "ISO_A2": "CR", "LATITUDE": 9.935012, "LONGITUDE": -84.084051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1284000, "POP_MIN": 1724, "POP_OTHER": 1434681, "RANK_MAX": 12, "RANK_MIN": 3, "GEONAMEID": 3669623, "MEGANAME": "San José", "LS_NAME": "San Jose1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1450902, "MAX_POP20": 1826034, "MAX_POP50": 1826034, "MAX_POP300": 1826034, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 431, "MIN_AREAMI": 102, "MAX_AREAMI": 166, "MIN_PERKM": 136, "MAX_PERKM": 270, "MIN_PERMI": 84, "MAX_PERMI": 168, "MIN_BBXMIN": -84.366667, "MAX_BBXMIN": -84.166667, "MIN_BBXMAX": -83.983333, "MAX_BBXMAX": -83.975, "MIN_BBYMIN": 9.841667, "MAX_BBYMIN": 9.841667, "MIN_BBYMAX": 10.041667, "MAX_BBYMAX": 10.05, "MEAN_BBXC": -84.111698, "MEAN_BBYC": 9.959268, "COMPARE": 0, "GN_ASCII": "San Jose", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 37, "GN_POP": 1724, "ELEVATION": 0, "GTOPO30": 1468, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 171, "UN_ADM0": "Costa Rica", "UN_LAT": 9.93, "UN_LONG": -84.07, "POP1950": 148, "POP1955": 184, "POP1960": 230, "POP1965": 287, "POP1970": 359, "POP1975": 440, "POP1980": 526, "POP1985": 627, "POP1990": 737, "POP1995": 867, "POP2000": 1032, "POP2005": 1217, "POP2010": 1284, "POP2015": 1374, "POP2020": 1506, "POP2025": 1627, "POP2050": 1737, "CITYALT": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.111328, 9.968851 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tegucigalpa", "DIFFASCII": 0, "NAMEASCII": "Tegucigalpa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Honduras", "SOV_A3": "HND", "ADM0NAME": "Honduras", "ADM0_A3": "HND", "ADM1NAME": "Francisco Morazán", "ISO_A2": "HN", "LATITUDE": 14.102045, "LONGITUDE": -87.217529, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 946000, "POP_MIN": 850848, "POP_OTHER": 1014546, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3600949, "MEGANAME": "Tegucigalpa", "LS_NAME": "Tegucigalpa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1014546, "MAX_POP20": 1014546, "MAX_POP50": 1014546, "MAX_POP300": 1014546, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 97, "MAX_AREAKM": 97, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -87.266667, "MAX_BBXMIN": -87.266667, "MIN_BBXMAX": -87.141667, "MAX_BBXMAX": -87.141667, "MIN_BBYMIN": 14.033333, "MAX_BBYMIN": 14.033333, "MIN_BBYMAX": 14.133333, "MAX_BBYMAX": 14.133333, "MEAN_BBXC": -87.19911, "MEAN_BBYC": 14.083298, "COMPARE": 0, "GN_ASCII": "Tegucigalpa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 850848, "ELEVATION": 0, "GTOPO30": 997, "TIMEZONE": "America/Tegucigalpa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 209, "UN_ADM0": "Honduras", "UN_LAT": 14.09, "UN_LONG": -87.2, "POP1950": 73, "POP1955": 96, "POP1960": 128, "POP1965": 169, "POP1970": 223, "POP1975": 292, "POP1980": 371, "POP1985": 471, "POP1990": 578, "POP1995": 677, "POP2000": 793, "POP2005": 901, "POP2010": 946, "POP2015": 1022, "POP2020": 1165, "POP2025": 1317, "POP2050": 1472 }, "geometry": { "type": "Point", "coordinates": [ -87.187500, 14.093957 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.195312, 5.878332 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abidjan", "DIFFASCII": 0, "NAMEASCII": "Abidjan", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lagunes", "ISO_A2": "CI", "LATITUDE": 5.319997, "LONGITUDE": -4.040048, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3802000, "POP_MIN": 3190395, "POP_OTHER": 3181637, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2293538, "MEGANAME": "Abidjan", "LS_NAME": "Abidjan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3190395, "MAX_POP20": 3190395, "MAX_POP50": 3190395, "MAX_POP300": 3190395, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 474, "MAX_AREAKM": 474, "MIN_AREAMI": 183, "MAX_AREAMI": 183, "MIN_PERKM": 304, "MAX_PERKM": 304, "MIN_PERMI": 189, "MAX_PERMI": 189, "MIN_BBXMIN": -4.191667, "MAX_BBXMIN": -4.191667, "MIN_BBXMAX": -3.866667, "MAX_BBXMAX": -3.866667, "MIN_BBYMIN": 5.241667, "MAX_BBYMIN": 5.241667, "MIN_BBYMAX": 5.55, "MAX_BBYMAX": 5.55, "MEAN_BBXC": -4.019846, "MEAN_BBYC": 5.3739, "COMPARE": 0, "GN_ASCII": "Abidjan", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 82, "GN_POP": 3677115, "ELEVATION": 0, "GTOPO30": 75, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 310, "UN_ADM0": "Côte d'Ivoire", "UN_LAT": 5.32, "UN_LONG": -4.02, "POP1950": 65, "POP1955": 125, "POP1960": 192, "POP1965": 310, "POP1970": 548, "POP1975": 966, "POP1980": 1384, "POP1985": 1716, "POP1990": 2102, "POP1995": 2535, "POP2000": 3032, "POP2005": 3564, "POP2010": 3802, "POP2015": 4175, "POP2020": 4810, "POP2025": 5432, "POP2050": 6031 }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.353521 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.375599 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , { "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 43.961191 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.776573 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123, "MAX_POP20": 15091561, "MAX_POP50": 29872827, "MAX_POP300": 30682197, "MAX_POP310": 30696820, "MAX_NATSCA": 300, "MIN_AREAKM": 1479, "MAX_AREAKM": 4900, "MIN_AREAMI": 571, "MAX_AREAMI": 1892, "MIN_PERKM": 1365, "MAX_PERKM": 5010, "MIN_PERMI": 848, "MAX_PERMI": 3113, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 7734614, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494, "POP1955": 3029, "POP1960": 3680, "POP1965": 4738, "POP1970": 5585, "POP1975": 6450, "POP1980": 7349, "POP1985": 8328, "POP1990": 9061, "POP1995": 9707, "POP2000": 10534, "POP2005": 11487, "POP2010": 11893, "POP2015": 12503, "POP2020": 13465, "POP2025": 14451, "POP2050": 15561, "CITYALT": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.289062, 30.069094 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.390229 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 9.535749 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907 }, "geometry": { "type": "Point", "coordinates": [ 85.341797, 27.683528 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 77.167969, 28.613459 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 region capital", "NAME": "Hong Kong", "DIFFASCII": 0, "NAMEASCII": "Hong Kong", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "Hong Kong S.A.R.", "ADM0_A3": "HKG", "ISO_A2": "HK", "LATITUDE": 22.304981, "LONGITUDE": 114.185009, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7206000, "POP_MIN": 4551579, "POP_OTHER": 4549026, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1819729, "MEGANAME": "Hong Kong", "LS_NAME": "Hong Kong", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4551579, "MAX_POP20": 15779579, "MAX_POP50": 16718429, "MAX_POP300": 16718429, "MAX_POP310": 42594594, "MAX_NATSCA": 300, "MIN_AREAKM": 202, "MAX_AREAKM": 10661, "MIN_AREAMI": 78, "MAX_AREAMI": 4116, "MIN_PERKM": 219, "MAX_PERKM": 7493, "MIN_PERMI": 136, "MAX_PERMI": 4656, "MIN_BBXMIN": 112.533333, "MAX_BBXMIN": 113.983333, "MIN_BBXMAX": 114.3, "MAX_BBXMAX": 114.775, "MIN_BBYMIN": 21.925, "MAX_BBYMIN": 22.2, "MIN_BBYMAX": 22.4, "MAX_BBYMAX": 24.033333, "MEAN_BBXC": 114.035195, "MEAN_BBYC": 22.679605, "COMPARE": 0, "GN_ASCII": "Hong Kong", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7012738, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Hong_Kong", "GEONAMESNO": "GeoNames match general.", "UN_FID": 210, "UN_ADM0": "China, Hong Kong Special Administrative Region", "UN_LAT": 22.27, "UN_LONG": 114.17, "POP1950": 1682, "POP1955": 2121, "POP1960": 2620, "POP1965": 3191, "POP1970": 3458, "POP1975": 3943, "POP1980": 4609, "POP1985": 5070, "POP1990": 5677, "POP1995": 6206, "POP2000": 6662, "POP2005": 7057, "POP2010": 7206, "POP2015": 7419, "POP2020": 7744, "POP2025": 8040, "POP2050": 8305 }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.268764 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.337954 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890, "MAX_POP20": 1163890, "MAX_POP50": 1163890, "MAX_POP300": 1163890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 148, "MAX_AREAKM": 148, "MIN_AREAMI": 57, "MAX_AREAMI": 57, "MIN_PERKM": 105, "MAX_PERKM": 105, "MIN_PERMI": 65, "MAX_PERMI": 65, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 1284609, "ELEVATION": 0, "GTOPO30": 156, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83, "POP1955": 92, "POP1960": 124, "POP1965": 172, "POP1970": 238, "POP1975": 329, "POP1980": 446, "POP1985": 596, "POP1990": 704, "POP1995": 830, "POP2000": 986, "POP2005": 1216, "POP2010": 1355, "POP2015": 1505, "POP2020": 1729, "POP2025": 1938, "POP2050": 2150 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.214943 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Victoria", "DIFFASCII": 0, "NAMEASCII": "Victoria", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Seychelles", "SOV_A3": "SYC", "ADM0NAME": "Seychelles", "ADM0_A3": "SYC", "ISO_A2": "SC", "LATITUDE": -4.616632, "LONGITUDE": 55.44999, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 33576, "POP_MIN": 22881, "POP_OTHER": 33737, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 241131, "LS_NAME": "Victoria4", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 33576, "MAX_POP20": 33576, "MAX_POP50": 33576, "MAX_POP300": 33576, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": 55.416667, "MAX_BBXMIN": 55.416667, "MIN_BBXMAX": 55.475, "MAX_BBXMAX": 55.475, "MIN_BBYMIN": -4.65, "MAX_BBYMIN": -4.65, "MIN_BBYMAX": -4.6, "MAX_BBYMAX": -4.6, "MEAN_BBXC": 55.45, "MEAN_BBYC": -4.626389, "COMPARE": 0, "GN_ASCII": "Victoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 22881, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Indian/Mahe", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.653080 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.352498 ] } } ] } ] } , @@ -50,7 +50,9 @@ , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Lima", "DIFFASCII": 0, "NAMEASCII": "Lima", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Peru", "SOV_A3": "PER", "ADM0NAME": "Peru", "ADM0_A3": "PER", "ADM1NAME": "Lima", "ISO_A2": "PE", "LATITUDE": -12.048013, "LONGITUDE": -77.050062, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 8012000, "POP_MIN": 6758234, "POP_OTHER": 6068380, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3936456, "MEGANAME": "Lima", "LS_NAME": "Lima2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6758234, "MAX_POP20": 7092933, "MAX_POP50": 7115614, "MAX_POP300": 7115806, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 724, "MAX_AREAKM": 790, "MIN_AREAMI": 279, "MAX_AREAMI": 305, "MIN_PERKM": 315, "MAX_PERKM": 384, "MIN_PERMI": 196, "MAX_PERMI": 239, "MIN_BBXMIN": -77.166667, "MAX_BBXMIN": -77.153161, "MIN_BBXMAX": -76.85, "MAX_BBXMAX": -76.833333, "MIN_BBYMIN": -12.316667, "MAX_BBYMIN": -12.281801, "MIN_BBYMAX": -11.808333, "MAX_BBYMAX": -11.808333, "MEAN_BBXC": -77.010199, "MEAN_BBYC": -12.041474, "COMPARE": 0, "GN_ASCII": "Lima", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 15, "GN_POP": 7737002, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "America/Lima", "GEONAMESNO": "GeoNames match general.", "UN_FID": 411, "UN_ADM0": "Peru", "UN_LAT": -12.08, "UN_LONG": -77.04, "POP1950": 1066, "POP1955": 1368, "POP1960": 1756, "POP1965": 2284, "POP1970": 2980, "POP1975": 3696, "POP1980": 4438, "POP1985": 5116, "POP1990": 5837, "POP1995": 6537, "POP2000": 7116, "POP2005": 7747, "POP2010": 8012, "POP2015": 8375, "POP2020": 8857, "POP2025": 9251, "POP2050": 9600 }, "geometry": { "type": "Point", "coordinates": [ -77.036133, -12.039321 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Sao Paulo", "NAMEALT": "Sao Paulo|São Paulo", "DIFFASCII": 0, "NAMEASCII": "Sao Paulo", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "São Paulo", "ISO_A2": "BR", "LATITUDE": -23.55868, "LONGITUDE": -46.62502, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 18845000, "POP_MIN": 10021295, "POP_OTHER": 11522944, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3448439, "MEGANAME": "São Paulo", "LS_NAME": "Sao Paolo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12495084, "MAX_POP20": 17425624, "MAX_POP50": 18203351, "MAX_POP300": 18203351, "MAX_POP310": 18203351, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 2667, "MIN_AREAMI": 554, "MAX_AREAMI": 1030, "MIN_PERKM": 532, "MAX_PERKM": 1086, "MIN_PERMI": 330, "MAX_PERMI": 675, "MIN_BBXMIN": -47.058333, "MAX_BBXMIN": -47.056372, "MIN_BBXMAX": -46.383333, "MAX_BBXMAX": -46.108333, "MIN_BBYMIN": -23.891667, "MAX_BBYMIN": -23.842331, "MIN_BBYMAX": -23.358333, "MAX_BBYMAX": -23.241667, "MEAN_BBXC": -46.651489, "MEAN_BBYC": -23.558961, "COMPARE": 0, "GN_ASCII": "Sao Paulo", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 27, "GN_POP": 10021295, "ELEVATION": 0, "GTOPO30": 631, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 491, "UN_ADM0": "Brazil", "UN_LAT": -23.58, "UN_LONG": -46.62, "POP1950": 2334, "POP1955": 3044, "POP1960": 3970, "POP1965": 5494, "POP1970": 7620, "POP1975": 9614, "POP1980": 12089, "POP1985": 13395, "POP1990": 14776, "POP1995": 15948, "POP2000": 17099, "POP2005": 18333, "POP2010": 18845, "POP2015": 19582, "POP2020": 20544, "POP2025": 21124, "POP2050": 21428, "CITYALT": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.625977, -23.563987 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Buenos Aires", "DIFFASCII": 0, "NAMEASCII": "Buenos Aires", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Argentina", "SOV_A3": "ARG", "ADM0NAME": "Argentina", "ADM0_A3": "ARG", "ADM1NAME": "Ciudad de Buenos Aires", "ISO_A2": "AR", "LATITUDE": -34.602502, "LONGITUDE": -58.397531, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12795000, "POP_MIN": 10929146, "POP_OTHER": 10271457, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3435910, "MEGANAME": "Buenos Aires", "LS_NAME": "Buenos Aires", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10929146, "MAX_POP20": 10991915, "MAX_POP50": 12611862, "MAX_POP300": 12611862, "MAX_POP310": 12611862, "MAX_NATSCA": 300, "MIN_AREAKM": 1675, "MAX_AREAKM": 2447, "MIN_AREAMI": 647, "MAX_AREAMI": 945, "MIN_PERKM": 570, "MAX_PERKM": 1064, "MIN_PERMI": 354, "MAX_PERMI": 661, "MIN_BBXMIN": -59.016667, "MAX_BBXMIN": -58.757731, "MIN_BBXMAX": -58.175, "MAX_BBXMAX": -57.816667, "MIN_BBYMIN": -35.008333, "MAX_BBYMIN": -35.008333, "MIN_BBYMAX": -34.375, "MAX_BBYMAX": -34.366667, "MEAN_BBXC": -58.50845, "MEAN_BBYC": -34.681331, "COMPARE": 0, "GN_ASCII": "Buenos Aires", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 13076300, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "America/Argentina/Buenos_Aires", "GEONAMESNO": "GeoNames match general.", "UN_FID": 201, "UN_ADM0": "Argentina", "UN_LAT": -34.62, "UN_LONG": -58.44, "POP1950": 5098, "POP1955": 5799, "POP1960": 6598, "POP1965": 7317, "POP1970": 8105, "POP1975": 8745, "POP1980": 9422, "POP1985": 9959, "POP1990": 10513, "POP1995": 11154, "POP2000": 11847, "POP2005": 12553, "POP2010": 12795, "POP2015": 13089, "POP2020": 13432, "POP2025": 13653, "POP2050": 13768 }, "geometry": { "type": "Point", "coordinates": [ -58.403320, -34.597042 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -181.538086, -18.145852 ] } } ] } ] } , @@ -60,21 +62,21 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.747257 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -76.992188, 38.891033 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Jose", "NAMEALT": "San José", "DIFFASCII": 0, "NAMEASCII": "San Jose", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Costa Rica", "SOV_A3": "CRI", "ADM0NAME": "Costa Rica", "ADM0_A3": "CRI", "ADM1NAME": "San José", "ISO_A2": "CR", "LATITUDE": 9.935012, "LONGITUDE": -84.084051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1284000, "POP_MIN": 1724, "POP_OTHER": 1434681, "RANK_MAX": 12, "RANK_MIN": 3, "GEONAMEID": 3669623, "MEGANAME": "San José", "LS_NAME": "San Jose1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1450902, "MAX_POP20": 1826034, "MAX_POP50": 1826034, "MAX_POP300": 1826034, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 431, "MIN_AREAMI": 102, "MAX_AREAMI": 166, "MIN_PERKM": 136, "MAX_PERKM": 270, "MIN_PERMI": 84, "MAX_PERMI": 168, "MIN_BBXMIN": -84.366667, "MAX_BBXMIN": -84.166667, "MIN_BBXMAX": -83.983333, "MAX_BBXMAX": -83.975, "MIN_BBYMIN": 9.841667, "MAX_BBYMIN": 9.841667, "MIN_BBYMAX": 10.041667, "MAX_BBYMAX": 10.05, "MEAN_BBXC": -84.111698, "MEAN_BBYC": 9.959268, "COMPARE": 0, "GN_ASCII": "San Jose", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 37, "GN_POP": 1724, "ELEVATION": 0, "GTOPO30": 1468, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 171, "UN_ADM0": "Costa Rica", "UN_LAT": 9.93, "UN_LONG": -84.07, "POP1950": 148, "POP1955": 184, "POP1960": 230, "POP1965": 287, "POP1970": 359, "POP1975": 440, "POP1980": 526, "POP1985": 627, "POP1990": 737, "POP1995": 867, "POP2000": 1032, "POP2005": 1217, "POP2010": 1284, "POP2015": 1374, "POP2020": 1506, "POP2025": 1627, "POP2050": 1737, "CITYALT": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.067383, 9.925566 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tegucigalpa", "DIFFASCII": 0, "NAMEASCII": "Tegucigalpa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Honduras", "SOV_A3": "HND", "ADM0NAME": "Honduras", "ADM0_A3": "HND", "ADM1NAME": "Francisco Morazán", "ISO_A2": "HN", "LATITUDE": 14.102045, "LONGITUDE": -87.217529, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 946000, "POP_MIN": 850848, "POP_OTHER": 1014546, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3600949, "MEGANAME": "Tegucigalpa", "LS_NAME": "Tegucigalpa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1014546, "MAX_POP20": 1014546, "MAX_POP50": 1014546, "MAX_POP300": 1014546, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 97, "MAX_AREAKM": 97, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -87.266667, "MAX_BBXMIN": -87.266667, "MIN_BBXMAX": -87.141667, "MAX_BBXMAX": -87.141667, "MIN_BBYMIN": 14.033333, "MAX_BBYMIN": 14.033333, "MIN_BBYMAX": 14.133333, "MAX_BBYMAX": 14.133333, "MEAN_BBXC": -87.19911, "MEAN_BBYC": 14.083298, "COMPARE": 0, "GN_ASCII": "Tegucigalpa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 850848, "ELEVATION": 0, "GTOPO30": 997, "TIMEZONE": "America/Tegucigalpa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 209, "UN_ADM0": "Honduras", "UN_LAT": 14.09, "UN_LONG": -87.2, "POP1950": 73, "POP1955": 96, "POP1960": 128, "POP1965": 169, "POP1970": 223, "POP1975": 292, "POP1980": 371, "POP1985": 471, "POP1990": 578, "POP1995": 677, "POP2000": 793, "POP2005": 901, "POP2010": 946, "POP2015": 1022, "POP2020": 1165, "POP2025": 1317, "POP2050": 1472 }, "geometry": { "type": "Point", "coordinates": [ -87.231445, 14.093957 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.284185 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint John's", "DIFFASCII": 0, "NAMEASCII": "Saint John's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Antigua and Barbuda", "SOV_A3": "ATG", "ADM0NAME": "Antigua and Barbuda", "ADM0_A3": "ATG", "ISO_A2": "AG", "LATITUDE": 17.118037, "LONGITUDE": -61.850034, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 35499, "POP_MIN": 24226, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3576022, "LS_NAME": "Saint John's", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 35499, "MAX_POP20": 35499, "MAX_POP50": 35499, "MAX_POP300": 35499, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 25, "MAX_AREAKM": 25, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 38, "MAX_PERKM": 38, "MIN_PERMI": 24, "MAX_PERMI": 24, "MIN_BBXMIN": -61.858333, "MAX_BBXMIN": -61.858333, "MIN_BBXMAX": -61.783333, "MAX_BBXMAX": -61.783333, "MIN_BBYMIN": 17.091667, "MAX_BBYMIN": 17.091667, "MIN_BBYMAX": 17.141667, "MAX_BBYMAX": 17.141667, "MEAN_BBXC": -61.824059, "MEAN_BBYC": 17.120565, "COMPARE": 0, "GN_ASCII": "Saint John's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 24226, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Antigua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.831055, 17.098792 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.151367, 5.834616 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laâyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.151367, 5.834616 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Banjul", "DIFFASCII": 0, "NAMEASCII": "Banjul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gambia, The", "SOV_A3": "GMB", "ADM0NAME": "The Gambia", "ADM0_A3": "GMB", "ADM1NAME": "Banjul", "ISO_A2": "GM", "LATITUDE": 13.453876, "LONGITUDE": -16.591701, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 43094, "POP_MIN": 34589, "POP_OTHER": 581300, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2413876, "LS_NAME": "Banjul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 43094, "MAX_POP20": 43094, "MAX_POP50": 43094, "MAX_POP300": 43094, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 13, "MAX_PERKM": 13, "MIN_PERMI": 8, "MAX_PERMI": 8, "MIN_BBXMIN": -16.6, "MAX_BBXMIN": -16.6, "MIN_BBXMAX": -16.566667, "MAX_BBXMAX": -16.566667, "MIN_BBYMIN": 13.441667, "MAX_BBYMIN": 13.441667, "MIN_BBYMAX": 13.466667, "MAX_BBYMAX": 13.466667, "MEAN_BBXC": -16.58125, "MEAN_BBYC": 13.455208, "COMPARE": 0, "GN_ASCII": "Banjul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 34589, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "Africa/Banjul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -16.611328, 13.453737 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144, "MAX_POP20": 742144, "MAX_POP50": 742144, "MAX_POP300": 742144, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 98, "MAX_AREAKM": 98, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 661400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -15.996094, 18.104087 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abidjan", "DIFFASCII": 0, "NAMEASCII": "Abidjan", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lagunes", "ISO_A2": "CI", "LATITUDE": 5.319997, "LONGITUDE": -4.040048, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3802000, "POP_MIN": 3190395, "POP_OTHER": 3181637, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2293538, "MEGANAME": "Abidjan", "LS_NAME": "Abidjan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3190395, "MAX_POP20": 3190395, "MAX_POP50": 3190395, "MAX_POP300": 3190395, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 474, "MAX_AREAKM": 474, "MIN_AREAMI": 183, "MAX_AREAMI": 183, "MIN_PERKM": 304, "MAX_PERKM": 304, "MIN_PERMI": 189, "MAX_PERMI": 189, "MIN_BBXMIN": -4.191667, "MAX_BBXMIN": -4.191667, "MIN_BBXMAX": -3.866667, "MAX_BBXMAX": -3.866667, "MIN_BBYMIN": 5.241667, "MAX_BBYMIN": 5.241667, "MIN_BBYMAX": 5.55, "MAX_BBYMAX": 5.55, "MEAN_BBXC": -4.019846, "MEAN_BBYC": 5.3739, "COMPARE": 0, "GN_ASCII": "Abidjan", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 82, "GN_POP": 3677115, "ELEVATION": 0, "GTOPO30": 75, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 310, "UN_ADM0": "Côte d'Ivoire", "UN_LAT": 5.32, "UN_LONG": -4.02, "POP1950": 65, "POP1955": 125, "POP1960": 192, "POP1965": 310, "POP1970": 548, "POP1975": 966, "POP1980": 1384, "POP1985": 1716, "POP1990": 2102, "POP1995": 2535, "POP2000": 3032, "POP2005": 3564, "POP2010": 3802, "POP2015": 4175, "POP2020": 4810, "POP2025": 5432, "POP2050": 6031 }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.309766 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouémé", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411 }, "geometry": { "type": "Point", "coordinates": [ 2.504883, 6.402648 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.539201 ] } } ] } ] } , @@ -82,15 +84,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Gaborone", "DIFFASCII": 0, "NAMEASCII": "Gaborone", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Botswana", "SOV_A3": "BWA", "ADM0NAME": "Botswana", "ADM0_A3": "BWA", "ADM1NAME": "South-East", "ISO_A2": "BW", "LATITUDE": -24.646313, "LONGITUDE": 25.911948, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 208411, "POP_MIN": 159243, "POP_OTHER": 158896, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 933773, "LS_NAME": "Gaborone", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 159243, "MAX_POP20": 159243, "MAX_POP50": 159243, "MAX_POP300": 159243, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 72, "MAX_AREAKM": 72, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 59, "MAX_PERKM": 59, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 25.858333, "MAX_BBXMIN": 25.858333, "MIN_BBXMAX": 25.991667, "MAX_BBXMAX": 25.991667, "MIN_BBYMIN": -24.7, "MAX_BBYMIN": -24.7, "MIN_BBYMAX": -24.6, "MAX_BBYMAX": -24.6, "MEAN_BBXC": 25.925091, "MEAN_BBYC": -24.656793, "COMPARE": 0, "GN_ASCII": "Gaborone", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 208411, "ELEVATION": 0, "GTOPO30": 1006, "TIMEZONE": "Africa/Gaborone", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.647017 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890, "MAX_POP20": 1163890, "MAX_POP50": 1163890, "MAX_POP300": 1163890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 148, "MAX_AREAKM": 148, "MIN_AREAMI": 57, "MAX_AREAMI": 57, "MIN_PERKM": 105, "MAX_PERKM": 105, "MIN_PERMI": 65, "MAX_PERMI": 65, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 1284609, "ELEVATION": 0, "GTOPO30": 156, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83, "POP1955": 92, "POP1960": 124, "POP1965": 172, "POP1970": 238, "POP1975": 329, "POP1980": 446, "POP1985": 596, "POP1990": 704, "POP1995": 830, "POP2000": 986, "POP2005": 1216, "POP2010": 1355, "POP2015": 1505, "POP2020": 1729, "POP2025": 1938, "POP2050": 2150 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Victoria", "DIFFASCII": 0, "NAMEASCII": "Victoria", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Seychelles", "SOV_A3": "SYC", "ADM0NAME": "Seychelles", "ADM0_A3": "SYC", "ISO_A2": "SC", "LATITUDE": -4.616632, "LONGITUDE": 55.44999, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 33576, "POP_MIN": 22881, "POP_OTHER": 33737, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 241131, "LS_NAME": "Victoria4", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 33576, "MAX_POP20": 33576, "MAX_POP50": 33576, "MAX_POP300": 33576, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": 55.416667, "MAX_BBXMIN": 55.416667, "MIN_BBXMAX": 55.475, "MAX_BBXMAX": 55.475, "MIN_BBYMIN": -4.65, "MAX_BBYMIN": -4.65, "MIN_BBYMAX": -4.6, "MAX_BBYMAX": -4.6, "MEAN_BBXC": 55.45, "MEAN_BBYC": -4.626389, "COMPARE": 0, "GN_ASCII": "Victoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 22881, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Indian/Mahe", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.609278 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.313113 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Moresby", "DIFFASCII": 0, "NAMEASCII": "Port Moresby", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Papua New Guinea", "SOV_A3": "PNG", "ADM0NAME": "Papua New Guinea", "ADM0_A3": "PNG", "ADM1NAME": "Central", "ISO_A2": "PG", "LATITUDE": -9.464708, "LONGITUDE": 147.192504, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 283733, "POP_MIN": 251136, "POP_OTHER": 251304, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2088122, "LS_NAME": "Port Moresby", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 251136, "MAX_POP20": 251136, "MAX_POP50": 251136, "MAX_POP300": 251136, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": 147.141667, "MAX_BBXMIN": 147.141667, "MIN_BBXMAX": 147.241667, "MAX_BBXMAX": 147.241667, "MIN_BBYMIN": -9.508333, "MAX_BBYMIN": -9.508333, "MIN_BBYMAX": -9.358333, "MAX_BBYMAX": -9.358333, "MEAN_BBXC": 147.185377, "MEAN_BBYC": -9.433491, "COMPARE": 0, "GN_ASCII": "Port Moresby", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 283733, "ELEVATION": 0, "GTOPO30": 50, "TIMEZONE": "Pacific/Port_Moresby", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 147.172852, -9.449062 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Auckland", "DIFFASCII": 0, "NAMEASCII": "Auckland", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Auckland", "ISO_A2": "NZ", "LATITUDE": -36.850013, "LONGITUDE": 174.764981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1245000, "POP_MIN": 274020, "POP_OTHER": 243794, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 2193733, "MEGANAME": "Auckland", "LS_NAME": "Auckland", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274020, "MAX_POP20": 354233, "MAX_POP50": 350364, "MAX_POP300": 638000, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 169, "MAX_AREAKM": 399, "MIN_AREAMI": 65, "MAX_AREAMI": 154, "MIN_PERKM": 105, "MAX_PERKM": 266, "MIN_PERMI": 65, "MAX_PERMI": 166, "MIN_BBXMIN": 174.583333, "MAX_BBXMIN": 174.657483, "MIN_BBXMAX": 174.883333, "MAX_BBXMAX": 174.983333, "MIN_BBYMIN": -37.091667, "MAX_BBYMIN": -36.964958, "MIN_BBYMAX": -36.825, "MAX_BBYMAX": -36.8, "MEAN_BBXC": 174.755045, "MEAN_BBYC": -36.896818, "COMPARE": 0, "GN_ASCII": "Auckland", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 417910, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Pacific/Auckland", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 381, "UN_ADM0": "New Zealand", "UN_LAT": -36.9, "UN_LONG": 174.76, "POP1950": 319, "POP1955": 387, "POP1960": 440, "POP1965": 532, "POP1970": 635, "POP1975": 729, "POP1980": 774, "POP1985": 812, "POP1990": 870, "POP1995": 976, "POP2000": 1063, "POP2005": 1189, "POP2010": 1245, "POP2015": 1321, "POP2020": 1398, "POP2025": 1441, "POP2050": 1475 }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -36.844461 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 178.461914, -18.145852 ] } } ] } ] } , @@ -98,45 +102,43 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 7.426758, 43.739352 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 9.536133, 47.129951 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ljubljana", "DIFFASCII": 0, "NAMEASCII": "Ljubljana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovenia", "SOV_A3": "SVN", "ADM0NAME": "Slovenia", "ADM0_A3": "SVN", "ADM1NAME": "Osrednjeslovenska", "ISO_A2": "SI", "LATITUDE": 46.055288, "LONGITUDE": 14.514969, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 314807, "POP_MIN": 255115, "POP_OTHER": 256316, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3196359, "LS_NAME": "Ljubljana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314807, "MAX_POP20": 314807, "MAX_POP50": 314807, "MAX_POP300": 314807, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 129, "MAX_PERMI": 129, "MIN_BBXMIN": 14.433333, "MAX_BBXMIN": 14.433333, "MIN_BBXMAX": 14.633333, "MAX_BBXMAX": 14.633333, "MIN_BBYMIN": 46, "MAX_BBYMIN": 46, "MIN_BBYMAX": 46.241667, "MAX_BBYMAX": 46.241667, "MEAN_BBXC": 14.541032, "MEAN_BBYC": 46.091958, "COMPARE": 0, "GN_ASCII": "Ljubljana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 61, "GN_POP": 255115, "ELEVATION": 0, "GTOPO30": 284, "TIMEZONE": "Europe/Ljubljana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 46.042736 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Sarajevo", "DIFFASCII": 0, "NAMEASCII": "Sarajevo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bosnia and Herzegovina", "SOV_A3": "BIH", "ADM0NAME": "Bosnia and Herzegovina", "ADM0_A3": "BIH", "ADM1NAME": "Sarajevo", "ISO_A2": "BA", "LATITUDE": 43.850022, "LONGITUDE": 18.383002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 696731, "POP_MIN": 628902, "POP_OTHER": 627065, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3191281, "LS_NAME": "Sarajevo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 628902, "MAX_POP20": 628902, "MAX_POP50": 628902, "MAX_POP300": 628902, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 112, "MAX_PERKM": 112, "MIN_PERMI": 70, "MAX_PERMI": 70, "MIN_BBXMIN": 18.216667, "MAX_BBXMIN": 18.216667, "MIN_BBXMAX": 18.466667, "MAX_BBXMAX": 18.466667, "MIN_BBYMIN": 43.783333, "MAX_BBYMIN": 43.783333, "MIN_BBYMAX": 43.9, "MAX_BBYMAX": 43.9, "MEAN_BBXC": 18.351272, "MEAN_BBYC": 43.846183, "COMPARE": 0, "GN_ASCII": "Sarajevo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 696731, "ELEVATION": 0, "GTOPO30": 545, "TIMEZONE": "Europe/Sarajevo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.369141, 43.834527 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tallinn", "DIFFASCII": 0, "NAMEASCII": "Tallinn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Estonia", "SOV_A3": "EST", "ADM0NAME": "Estonia", "ADM0_A3": "EST", "ADM1NAME": "Harju", "ISO_A2": "EE", "LATITUDE": 59.433877, "LONGITUDE": 24.728041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 394024, "POP_MIN": 340027, "POP_OTHER": 317949, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 588409, "LS_NAME": "Tallinn", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 340027, "MAX_POP20": 340027, "MAX_POP50": 340027, "MAX_POP300": 340027, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 130, "MAX_AREAKM": 130, "MIN_AREAMI": 50, "MAX_AREAMI": 50, "MIN_PERKM": 164, "MAX_PERKM": 164, "MIN_PERMI": 102, "MAX_PERMI": 102, "MIN_BBXMIN": 24.591667, "MAX_BBXMIN": 24.591667, "MIN_BBXMAX": 24.916667, "MAX_BBXMAX": 24.916667, "MIN_BBYMIN": 59.333333, "MAX_BBYMIN": 59.333333, "MIN_BBYMAX": 59.525, "MAX_BBYMAX": 59.525, "MEAN_BBXC": 24.746591, "MEAN_BBYC": 59.42709, "COMPARE": 0, "GN_ASCII": "Tallinn", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 394024, "ELEVATION": 0, "GTOPO30": 22, "TIMEZONE": "Europe/Tallinn", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.741211, 59.422728 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouémé", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411 }, "geometry": { "type": "Point", "coordinates": [ 2.504883, 6.402648 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.539201 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123, "MAX_POP20": 15091561, "MAX_POP50": 29872827, "MAX_POP300": 30682197, "MAX_POP310": 30696820, "MAX_NATSCA": 300, "MIN_AREAKM": 1479, "MAX_AREAKM": 4900, "MIN_AREAMI": 571, "MAX_AREAMI": 1892, "MIN_PERKM": 1365, "MAX_PERKM": 5010, "MIN_PERMI": 848, "MAX_PERMI": 3113, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 7734614, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494, "POP1955": 3029, "POP1960": 3680, "POP1965": 4738, "POP1970": 5585, "POP1975": 6450, "POP1980": 7349, "POP1985": 8328, "POP1990": 9061, "POP1995": 9707, "POP2000": 10534, "POP2005": 11487, "POP2010": 11893, "POP2015": 12503, "POP2020": 13465, "POP2025": 14451, "POP2050": 15561, "CITYALT": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.069094 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.346411 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Khartoum", "NAMEALT": "Al-Khartum", "DIFFASCII": 0, "NAMEASCII": "Khartoum", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sudan", "SOV_A3": "SDN", "ADM0NAME": "Sudan", "ADM0_A3": "SDN", "ADM1NAME": "Khartoum", "ISO_A2": "SD", "LATITUDE": 15.588078, "LONGITUDE": 32.534179, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4754000, "POP_MIN": 1974647, "POP_OTHER": 2325931, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 379252, "MEGANAME": "Al-Khartum", "LS_NAME": "Khartoum", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2395309, "MAX_POP20": 2395309, "MAX_POP50": 2395309, "MAX_POP300": 4542697, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 348, "MAX_AREAKM": 630, "MIN_AREAMI": 134, "MAX_AREAMI": 243, "MIN_PERKM": 237, "MAX_PERKM": 424, "MIN_PERMI": 147, "MAX_PERMI": 263, "MIN_BBXMIN": 32.341667, "MAX_BBXMIN": 32.458333, "MIN_BBXMAX": 32.691667, "MAX_BBXMAX": 32.691667, "MIN_BBYMIN": 15.325, "MAX_BBYMIN": 15.325, "MIN_BBYMAX": 15.699422, "MAX_BBYMAX": 15.825, "MEAN_BBXC": 32.550462, "MEAN_BBYC": 15.559101, "COMPARE": 0, "GN_ASCII": "Khartoum", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 29, "GN_POP": 1974647, "ELEVATION": 0, "GTOPO30": 378, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 466, "UN_ADM0": "Sudan", "UN_LAT": 15.55, "UN_LONG": 32.52, "POP1950": 183, "POP1955": 252, "POP1960": 347, "POP1965": 477, "POP1970": 657, "POP1975": 886, "POP1980": 1164, "POP1985": 1611, "POP1990": 2360, "POP1995": 3242, "POP2000": 3949, "POP2005": 4518, "POP2010": 4754, "POP2015": 5185, "POP2020": 6077, "POP2025": 7017, "POP2050": 7937, "CITYALT": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.519531, 15.580711 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Jerusalem", "DIFFASCII": 0, "NAMEASCII": "Jerusalem", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Jerusalem", "ISO_A2": "IL", "LATITUDE": 31.778408, "LONGITUDE": 35.206626, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1029300, "POP_MIN": 801000, "POP_OTHER": 1072567, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 281184, "LS_NAME": "Jerusalem", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1073782, "MAX_POP20": 1073782, "MAX_POP50": 1073782, "MAX_POP300": 1073782, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 246, "MIN_AREAMI": 95, "MAX_AREAMI": 95, "MIN_PERKM": 239, "MAX_PERKM": 239, "MIN_PERMI": 149, "MAX_PERMI": 149, "MIN_BBXMIN": 35.1, "MAX_BBXMIN": 35.1, "MIN_BBXMAX": 35.316667, "MAX_BBXMAX": 35.316667, "MIN_BBYMIN": 31.683333, "MAX_BBYMIN": 31.683333, "MIN_BBYMAX": 31.991667, "MAX_BBYMAX": 31.991667, "MEAN_BBXC": 35.210651, "MEAN_BBYC": 31.809862, "COMPARE": 0, "GN_ASCII": "Jerusalem", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 6, "GN_POP": 714000, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 35.200195, 31.765537 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Djibouti", "DIFFASCII": 0, "NAMEASCII": "Djibouti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Djibouti", "SOV_A3": "DJI", "ADM0NAME": "Djibouti", "ADM0_A3": "DJI", "ADM1NAME": "Djibouti", "ISO_A2": "DJ", "LATITUDE": 11.595014, "LONGITUDE": 43.148002, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 923000, "POP_MIN": 604013, "POP_OTHER": 335001, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 223817, "LS_NAME": "Djibouti", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 335001, "MAX_POP20": 335001, "MAX_POP50": 335001, "MAX_POP300": 335001, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 42, "MAX_AREAKM": 42, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 43.066667, "MAX_BBXMIN": 43.066667, "MIN_BBXMAX": 43.166667, "MAX_BBXMAX": 43.166667, "MIN_BBYMIN": 11.533333, "MAX_BBYMIN": 11.533333, "MIN_BBYMAX": 11.625, "MAX_BBYMAX": 11.625, "MEAN_BBXC": 43.129167, "MEAN_BBYC": 11.5715, "COMPARE": 0, "GN_ASCII": "Djibouti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 623891, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Djibouti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.154297, 11.609193 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.579084 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.447150 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907 }, "geometry": { "type": "Point", "coordinates": [ 85.297852, 27.722436 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.613459 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112 }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.931066 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Colombo", "DIFFASCII": 0, "NAMEASCII": "Colombo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.931966, "LONGITUDE": 79.857751, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 217000, "POP_MIN": 217000, "POP_OTHER": 2490974, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3465927, "LS_NAME": "Colombo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2664418, "MAX_POP20": 2742979, "MAX_POP50": 2742979, "MAX_POP300": 9759831, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1054, "MAX_AREAKM": 6238, "MIN_AREAMI": 407, "MAX_AREAMI": 2408, "MIN_PERKM": 847, "MAX_PERKM": 5343, "MIN_PERMI": 526, "MAX_PERMI": 3320, "MIN_BBXMIN": 79.8, "MAX_BBXMIN": 79.8, "MIN_BBXMAX": 80.097553, "MAX_BBXMAX": 80.833333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.854447, "MIN_BBYMAX": 7.633333, "MAX_BBYMAX": 7.8, "MEAN_BBXC": 79.996849, "MEAN_BBYC": 7.222799, "COMPARE": 0, "GN_ASCII": "Colombo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 18, "GN_POP": 217000, "ELEVATION": 0, "GTOPO30": 927, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.848633, 6.926427 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bangkok", "NAMEALT": "Krung Thep", "DIFFASCII": 0, "NAMEASCII": "Bangkok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Thailand", "SOV_A3": "THA", "ADM0NAME": "Thailand", "ADM0_A3": "THA", "ADM1NAME": "Bangkok Metropolis", "ISO_A2": "TH", "LATITUDE": 13.749999, "LONGITUDE": 100.516645, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 6704000, "POP_MIN": 5104476, "POP_OTHER": 5082758, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1609350, "MEGANAME": "Krung Thep", "LS_NAME": "Bangkok", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5323600, "MAX_POP20": 8823534, "MAX_POP50": 9210939, "MAX_POP300": 9206246, "MAX_POP310": 9206246, "MAX_NATSCA": 300, "MIN_AREAKM": 815, "MAX_AREAKM": 2350, "MIN_AREAMI": 315, "MAX_AREAMI": 908, "MIN_PERKM": 280, "MAX_PERKM": 1354, "MIN_PERMI": 174, "MAX_PERMI": 841, "MIN_BBXMIN": 99.991667, "MAX_BBXMIN": 100.216667, "MIN_BBXMAX": 100.844293, "MAX_BBXMAX": 101.016667, "MIN_BBYMIN": 13.5, "MAX_BBYMIN": 13.516667, "MIN_BBYMAX": 13.872295, "MAX_BBYMAX": 14.158333, "MEAN_BBXC": 100.545047, "MEAN_BBYC": 13.761017, "COMPARE": 0, "GN_ASCII": "Bangkok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 5104476, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Bangkok", "GEONAMESNO": "GeoNames match general.", "UN_FID": 496, "UN_ADM0": "Thailand", "UN_LAT": 13.75, "UN_LONG": 100.51, "POP1950": 1360, "POP1955": 1712, "POP1960": 2151, "POP1965": 2584, "POP1970": 3110, "POP1975": 3842, "POP1980": 4723, "POP1985": 5279, "POP1990": 5888, "POP1995": 6106, "POP2000": 6332, "POP2005": 6582, "POP2010": 6704, "POP2015": 6918, "POP2020": 7332, "POP2025": 7807, "POP2050": 8332, "CITYALT": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.502930, 13.752725 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 region capital", "NAME": "Hong Kong", "DIFFASCII": 0, "NAMEASCII": "Hong Kong", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "Hong Kong S.A.R.", "ADM0_A3": "HKG", "ISO_A2": "HK", "LATITUDE": 22.304981, "LONGITUDE": 114.185009, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7206000, "POP_MIN": 4551579, "POP_OTHER": 4549026, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1819729, "MEGANAME": "Hong Kong", "LS_NAME": "Hong Kong", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4551579, "MAX_POP20": 15779579, "MAX_POP50": 16718429, "MAX_POP300": 16718429, "MAX_POP310": 42594594, "MAX_NATSCA": 300, "MIN_AREAKM": 202, "MAX_AREAKM": 10661, "MIN_AREAMI": 78, "MAX_AREAMI": 4116, "MIN_PERKM": 219, "MAX_PERKM": 7493, "MIN_PERMI": 136, "MAX_PERMI": 4656, "MIN_BBXMIN": 112.533333, "MAX_BBXMIN": 113.983333, "MIN_BBXMAX": 114.3, "MAX_BBXMAX": 114.775, "MIN_BBYMIN": 21.925, "MAX_BBYMIN": 22.2, "MIN_BBYMAX": 22.4, "MAX_BBYMAX": 24.033333, "MEAN_BBXC": 114.035195, "MEAN_BBYC": 22.679605, "COMPARE": 0, "GN_ASCII": "Hong Kong", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7012738, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Hong_Kong", "GEONAMESNO": "GeoNames match general.", "UN_FID": 210, "UN_ADM0": "China, Hong Kong Special Administrative Region", "UN_LAT": 22.27, "UN_LONG": 114.17, "POP1950": 1682, "POP1955": 2121, "POP1960": 2620, "POP1965": 3191, "POP1970": 3458, "POP1975": 3943, "POP1980": 4609, "POP1985": 5070, "POP1990": 5677, "POP1995": 6206, "POP2000": 6662, "POP2005": 7057, "POP2010": 7206, "POP2015": 7419, "POP2020": 7744, "POP2025": 8040, "POP2050": 8305 }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.309426 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 134.648438, 7.493196 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, de fa", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575, "MAX_POP20": 3077575, "MAX_POP50": 3077575, "MAX_POP300": 23366503, "MAX_POP310": 26749011, "MAX_NATSCA": 300, "MIN_AREAKM": 67, "MAX_AREAKM": 8820, "MIN_AREAMI": 26, "MAX_AREAMI": 3405, "MIN_PERKM": 46, "MAX_PERKM": 5298, "MIN_PERMI": 29, "MAX_PERMI": 3292, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 10444527, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544, "POP1955": 1872, "POP1960": 2274, "POP1965": 2829, "POP1970": 3534, "POP1975": 4999, "POP1980": 5955, "POP1985": 6888, "POP1990": 7973, "POP1995": 9401, "POP2000": 9958, "POP2005": 10761, "POP2010": 11100, "POP2015": 11662, "POP2020": 12786, "POP2025": 13892, "POP2050": 14808 }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } , { "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ISO_A2": "MH", "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084, "MAX_POP20": 2084, "MAX_POP50": 2084, "MAX_POP300": 2084, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 20500, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } ] } ] } , @@ -147,6 +149,8 @@ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Apia", "DIFFASCII": 0, "NAMEASCII": "Apia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Samoa", "SOV_A3": "WSM", "ADM0NAME": "Samoa", "ADM0_A3": "WSM", "ISO_A2": "WS", "LATITUDE": -13.841545, "LONGITUDE": -171.738642, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 61916, "POP_MIN": 37708, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3689793, "LS_NAME": "Apia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 61916, "MAX_POP20": 61916, "MAX_POP50": 61916, "MAX_POP300": 61916, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 39, "MAX_AREAKM": 39, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 51, "MAX_PERKM": 51, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -171.825, "MAX_BBXMIN": -171.825, "MIN_BBXMAX": -171.716667, "MAX_BBXMAX": -171.716667, "MIN_BBYMIN": -13.866667, "MAX_BBYMIN": -13.866667, "MIN_BBYMAX": -13.8, "MAX_BBYMAX": -13.8, "MEAN_BBXC": -171.781117, "MEAN_BBYC": -13.837855, "COMPARE": 0, "GN_ASCII": "Apia", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 6940, "ELEVATION": 0, "GTOPO30": 1561, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } , { "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -181.560059, -18.124971 ] } } ] } ] } , @@ -172,7 +176,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunción", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunción", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunción", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Sao Paulo", "NAMEALT": "Sao Paulo|São Paulo", "DIFFASCII": 0, "NAMEASCII": "Sao Paulo", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "São Paulo", "ISO_A2": "BR", "LATITUDE": -23.55868, "LONGITUDE": -46.62502, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 18845000, "POP_MIN": 10021295, "POP_OTHER": 11522944, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3448439, "MEGANAME": "São Paulo", "LS_NAME": "Sao Paolo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12495084, "MAX_POP20": 17425624, "MAX_POP50": 18203351, "MAX_POP300": 18203351, "MAX_POP310": 18203351, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 2667, "MIN_AREAMI": 554, "MAX_AREAMI": 1030, "MIN_PERKM": 532, "MAX_PERKM": 1086, "MIN_PERMI": 330, "MAX_PERMI": 675, "MIN_BBXMIN": -47.058333, "MAX_BBXMIN": -47.056372, "MIN_BBXMAX": -46.383333, "MAX_BBXMAX": -46.108333, "MIN_BBYMIN": -23.891667, "MAX_BBYMIN": -23.842331, "MIN_BBYMAX": -23.358333, "MAX_BBYMAX": -23.241667, "MEAN_BBXC": -46.651489, "MEAN_BBYC": -23.558961, "COMPARE": 0, "GN_ASCII": "Sao Paulo", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 27, "GN_POP": 10021295, "ELEVATION": 0, "GTOPO30": 631, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 491, "UN_ADM0": "Brazil", "UN_LAT": -23.58, "UN_LONG": -46.62, "POP1950": 2334, "POP1955": 3044, "POP1960": 3970, "POP1965": 5494, "POP1970": 7620, "POP1975": 9614, "POP1980": 12089, "POP1985": 13395, "POP1990": 14776, "POP1995": 15948, "POP2000": 17099, "POP2005": 18333, "POP2010": 18845, "POP2015": 19582, "POP2020": 20544, "POP2025": 21124, "POP2050": 21428, "CITYALT": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.625977, -23.563987 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Buenos Aires", "DIFFASCII": 0, "NAMEASCII": "Buenos Aires", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Argentina", "SOV_A3": "ARG", "ADM0NAME": "Argentina", "ADM0_A3": "ARG", "ADM1NAME": "Ciudad de Buenos Aires", "ISO_A2": "AR", "LATITUDE": -34.602502, "LONGITUDE": -58.397531, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12795000, "POP_MIN": 10929146, "POP_OTHER": 10271457, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3435910, "MEGANAME": "Buenos Aires", "LS_NAME": "Buenos Aires", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10929146, "MAX_POP20": 10991915, "MAX_POP50": 12611862, "MAX_POP300": 12611862, "MAX_POP310": 12611862, "MAX_NATSCA": 300, "MIN_AREAKM": 1675, "MAX_AREAKM": 2447, "MIN_AREAMI": 647, "MAX_AREAMI": 945, "MIN_PERKM": 570, "MAX_PERKM": 1064, "MIN_PERMI": 354, "MAX_PERMI": 661, "MIN_BBXMIN": -59.016667, "MAX_BBXMIN": -58.757731, "MIN_BBXMAX": -58.175, "MAX_BBXMAX": -57.816667, "MIN_BBYMIN": -35.008333, "MAX_BBYMIN": -35.008333, "MIN_BBYMAX": -34.375, "MAX_BBYMAX": -34.366667, "MEAN_BBXC": -58.50845, "MEAN_BBYC": -34.681331, "COMPARE": 0, "GN_ASCII": "Buenos Aires", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 13076300, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "America/Argentina/Buenos_Aires", "GEONAMESNO": "GeoNames match general.", "UN_FID": 201, "UN_ADM0": "Argentina", "UN_LAT": -34.62, "UN_LONG": -58.44, "POP1950": 5098, "POP1955": 5799, "POP1960": 6598, "POP1965": 7317, "POP1970": 8105, "POP1975": 8745, "POP1980": 9422, "POP1985": 9959, "POP1990": 10513, "POP1995": 11154, "POP2000": 11847, "POP2005": 12553, "POP2010": 12795, "POP2015": 13089, "POP2020": 13432, "POP2025": 13653, "POP2050": 13768 }, "geometry": { "type": "Point", "coordinates": [ -58.403320, -34.597042 ] } } ] } ] } , @@ -184,7 +188,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272 }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.780107 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.908133 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tegucigalpa", "DIFFASCII": 0, "NAMEASCII": "Tegucigalpa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Honduras", "SOV_A3": "HND", "ADM0NAME": "Honduras", "ADM0_A3": "HND", "ADM1NAME": "Francisco Morazán", "ISO_A2": "HN", "LATITUDE": 14.102045, "LONGITUDE": -87.217529, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 946000, "POP_MIN": 850848, "POP_OTHER": 1014546, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3600949, "MEGANAME": "Tegucigalpa", "LS_NAME": "Tegucigalpa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1014546, "MAX_POP20": 1014546, "MAX_POP50": 1014546, "MAX_POP300": 1014546, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 97, "MAX_AREAKM": 97, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -87.266667, "MAX_BBXMIN": -87.266667, "MIN_BBXMAX": -87.141667, "MAX_BBXMAX": -87.141667, "MIN_BBYMIN": 14.033333, "MAX_BBYMIN": 14.033333, "MIN_BBYMAX": 14.133333, "MAX_BBYMAX": 14.133333, "MEAN_BBXC": -87.19911, "MEAN_BBYC": 14.083298, "COMPARE": 0, "GN_ASCII": "Tegucigalpa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 850848, "ELEVATION": 0, "GTOPO30": 997, "TIMEZONE": "America/Tegucigalpa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 209, "UN_ADM0": "Honduras", "UN_LAT": 14.09, "UN_LONG": -87.2, "POP1950": 73, "POP1955": 96, "POP1960": 128, "POP1965": 169, "POP1970": 223, "POP1975": 292, "POP1980": 371, "POP1985": 471, "POP1990": 578, "POP1995": 677, "POP2000": 793, "POP2005": 901, "POP2010": 946, "POP2015": 1022, "POP2020": 1165, "POP2025": 1317, "POP2050": 1472 }, "geometry": { "type": "Point", "coordinates": [ -87.209473, 14.093957 ] } } , @@ -194,15 +198,15 @@ , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bogota", "NAMEALT": "Bogotá", "DIFFASCII": 0, "NAMEASCII": "Bogota", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Colombia", "SOV_A3": "COL", "ADM0NAME": "Colombia", "ADM0_A3": "COL", "ADM1NAME": "Bogota", "ISO_A2": "CO", "LATITUDE": 4.596424, "LONGITUDE": -74.083344, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7772000, "POP_MIN": 6333661, "POP_OTHER": 5754084, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3688689, "MEGANAME": "Bogotá", "LS_NAME": "Bogota", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6333661, "MAX_POP20": 6333154, "MAX_POP50": 6333154, "MAX_POP300": 6333154, "MAX_POP310": 6333154, "MAX_NATSCA": 300, "MIN_AREAKM": 523, "MAX_AREAKM": 523, "MIN_AREAMI": 202, "MAX_AREAMI": 202, "MIN_PERKM": 186, "MAX_PERKM": 186, "MIN_PERMI": 116, "MAX_PERMI": 116, "MIN_BBXMIN": -74.266667, "MAX_BBXMIN": -74.266667, "MIN_BBXMAX": -74.008333, "MAX_BBXMAX": -74.008333, "MIN_BBYMIN": 4.483333, "MAX_BBYMIN": 4.483333, "MIN_BBYMAX": 4.8, "MAX_BBYMAX": 4.8, "MEAN_BBXC": -74.116517, "MEAN_BBYC": 4.643227, "COMPARE": 0, "GN_ASCII": "Bogota", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 34, "GN_POP": 7102602, "ELEVATION": 0, "GTOPO30": 2620, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 161, "UN_ADM0": "Colombia", "UN_LAT": 4.63, "UN_LONG": -74.08, "POP1950": 630, "POP1955": 894, "POP1960": 1269, "POP1965": 1780, "POP1970": 2383, "POP1975": 3040, "POP1980": 3525, "POP1985": 4087, "POP1990": 4740, "POP1995": 5494, "POP2000": 6356, "POP2005": 7353, "POP2010": 7772, "POP2015": 8320, "POP2020": 8916, "POP2025": 9299, "POP2050": 9600, "CITYALT": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.091797, 4.609278 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.305380 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint John's", "DIFFASCII": 0, "NAMEASCII": "Saint John's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Antigua and Barbuda", "SOV_A3": "ATG", "ADM0NAME": "Antigua and Barbuda", "ADM0_A3": "ATG", "ISO_A2": "AG", "LATITUDE": 17.118037, "LONGITUDE": -61.850034, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 35499, "POP_MIN": 24226, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3576022, "LS_NAME": "Saint John's", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 35499, "MAX_POP20": 35499, "MAX_POP50": 35499, "MAX_POP300": 35499, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 25, "MAX_AREAKM": 25, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 38, "MAX_PERKM": 38, "MIN_PERMI": 24, "MAX_PERMI": 24, "MIN_BBXMIN": -61.858333, "MAX_BBXMIN": -61.858333, "MIN_BBXMAX": -61.783333, "MAX_BBXMAX": -61.783333, "MIN_BBYMIN": 17.091667, "MAX_BBYMIN": 17.091667, "MIN_BBYMAX": 17.141667, "MAX_BBYMAX": 17.141667, "MEAN_BBXC": -61.824059, "MEAN_BBYC": 17.120565, "COMPARE": 0, "GN_ASCII": "Saint John's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 24226, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Antigua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.853027, 17.119793 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619 }, "geometry": { "type": "Point", "coordinates": [ -66.928711, 10.509417 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laâyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.205566, 27.156920 ] } } , @@ -210,13 +214,13 @@ , { "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Banjul", "DIFFASCII": 0, "NAMEASCII": "Banjul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gambia, The", "SOV_A3": "GMB", "ADM0NAME": "The Gambia", "ADM0_A3": "GMB", "ADM1NAME": "Banjul", "ISO_A2": "GM", "LATITUDE": 13.453876, "LONGITUDE": -16.591701, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 43094, "POP_MIN": 34589, "POP_OTHER": 581300, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2413876, "LS_NAME": "Banjul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 43094, "MAX_POP20": 43094, "MAX_POP50": 43094, "MAX_POP300": 43094, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 13, "MAX_PERKM": 13, "MIN_PERMI": 8, "MAX_PERMI": 8, "MIN_BBXMIN": -16.6, "MAX_BBXMIN": -16.6, "MIN_BBXMAX": -16.566667, "MAX_BBXMAX": -16.566667, "MIN_BBYMIN": 13.441667, "MAX_BBYMIN": 13.441667, "MIN_BBYMAX": 13.466667, "MAX_BBYMAX": 13.466667, "MEAN_BBXC": -16.58125, "MEAN_BBYC": 13.455208, "COMPARE": 0, "GN_ASCII": "Banjul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 34589, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "Africa/Banjul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144, "MAX_POP20": 742144, "MAX_POP50": 742144, "MAX_POP300": 742144, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 98, "MAX_AREAKM": 98, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 661400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Freetown", "DIFFASCII": 0, "NAMEASCII": "Freetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sierra Leone", "SOV_A3": "SLE", "ADM0NAME": "Sierra Leone", "ADM0_A3": "SLE", "ADM1NAME": "Western", "ISO_A2": "SL", "LATITUDE": 8.470011, "LONGITUDE": -13.234216, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 827000, "POP_MIN": 13768, "POP_OTHER": 1074640, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 2408770, "MEGANAME": "Freetown", "LS_NAME": "Freetown", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1074311, "MAX_POP20": 1074311, "MAX_POP50": 1074311, "MAX_POP300": 1074311, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 81, "MAX_PERKM": 81, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": -13.3, "MAX_BBXMIN": -13.3, "MIN_BBXMAX": -13.15, "MAX_BBXMAX": -13.15, "MIN_BBYMIN": 8.408333, "MAX_BBYMIN": 8.408333, "MIN_BBYMAX": 8.5, "MAX_BBYMAX": 8.5, "MEAN_BBXC": -13.230082, "MEAN_BBYC": 8.462592, "COMPARE": 0, "GN_ASCII": "Freetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 4, "GN_POP": 13768, "ELEVATION": 0, "GTOPO30": 15, "TIMEZONE": "Africa/Freetown", "GEONAMESNO": "GeoNames match general.", "UN_FID": 449, "UN_ADM0": "Sierra Leone", "UN_LAT": 8.48, "UN_LONG": -13.23, "POP1950": 92, "POP1955": 104, "POP1960": 119, "POP1965": 148, "POP1970": 206, "POP1975": 284, "POP1980": 361, "POP1985": 460, "POP1990": 529, "POP1995": 603, "POP2000": 688, "POP2005": 785, "POP2010": 827, "POP2015": 894, "POP2020": 1029, "POP2025": 1200, "POP2050": 1406 }, "geometry": { "type": "Point", "coordinates": [ -13.227539, 8.472372 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632 }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.382928 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abidjan", "DIFFASCII": 0, "NAMEASCII": "Abidjan", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lagunes", "ISO_A2": "CI", "LATITUDE": 5.319997, "LONGITUDE": -4.040048, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3802000, "POP_MIN": 3190395, "POP_OTHER": 3181637, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2293538, "MEGANAME": "Abidjan", "LS_NAME": "Abidjan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3190395, "MAX_POP20": 3190395, "MAX_POP50": 3190395, "MAX_POP300": 3190395, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 474, "MAX_AREAKM": 474, "MIN_AREAMI": 183, "MAX_AREAMI": 183, "MIN_PERKM": 304, "MAX_PERKM": 304, "MIN_PERMI": 189, "MAX_PERMI": 189, "MIN_BBXMIN": -4.191667, "MAX_BBXMIN": -4.191667, "MIN_BBXMAX": -3.866667, "MAX_BBXMAX": -3.866667, "MIN_BBYMIN": 5.241667, "MAX_BBYMIN": 5.241667, "MIN_BBYMAX": 5.55, "MAX_BBYMAX": 5.55, "MEAN_BBXC": -4.019846, "MEAN_BBYC": 5.3739, "COMPARE": 0, "GN_ASCII": "Abidjan", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 82, "GN_POP": 3677115, "ELEVATION": 0, "GTOPO30": 75, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 310, "UN_ADM0": "Côte d'Ivoire", "UN_LAT": 5.32, "UN_LONG": -4.02, "POP1950": 65, "POP1955": 125, "POP1960": 192, "POP1965": 310, "POP1970": 548, "POP1975": 966, "POP1980": 1384, "POP1985": 1716, "POP1990": 2102, "POP1995": 2535, "POP2000": 3032, "POP2005": 3564, "POP2010": 3802, "POP2015": 4175, "POP2020": 4810, "POP2025": 5432, "POP2050": 6031 }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.331644 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } ] } ] } , @@ -224,7 +228,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.329588 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762 }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890, "MAX_POP20": 1163890, "MAX_POP50": 1163890, "MAX_POP300": 1163890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 148, "MAX_AREAKM": 148, "MIN_AREAMI": 57, "MAX_AREAMI": 57, "MIN_PERKM": 105, "MAX_PERKM": 105, "MIN_PERMI": 65, "MAX_PERMI": 65, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 1284609, "ELEVATION": 0, "GTOPO30": 156, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83, "POP1955": 92, "POP1960": 124, "POP1965": 172, "POP1970": 238, "POP1975": 329, "POP1980": 446, "POP1985": 596, "POP1990": 704, "POP1995": 830, "POP2000": 986, "POP2005": 1216, "POP2010": 1355, "POP2015": 1505, "POP2020": 1729, "POP2025": 1938, "POP2050": 2150 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cape Town", "DIFFASCII": 0, "NAMEASCII": "Cape Town", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Western Cape", "ISO_A2": "ZA", "LATITUDE": -33.920011, "LONGITUDE": 18.434988, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3215000, "POP_MIN": 2432858, "POP_OTHER": 2401318, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3369157, "MEGANAME": "Cape Town", "LS_NAME": "Cape Town", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2432858, "MAX_POP20": 2443605, "MAX_POP50": 2443605, "MAX_POP300": 2443605, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 534, "MAX_AREAKM": 542, "MIN_AREAMI": 206, "MAX_AREAMI": 209, "MIN_PERKM": 295, "MAX_PERKM": 300, "MIN_PERMI": 183, "MAX_PERMI": 187, "MIN_BBXMIN": 18.375, "MAX_BBXMIN": 18.375, "MIN_BBXMAX": 18.724745, "MAX_BBXMAX": 18.741667, "MIN_BBYMIN": -34.108333, "MAX_BBYMIN": -34.108333, "MIN_BBYMAX": -33.808333, "MAX_BBYMAX": -33.808333, "MEAN_BBXC": 18.557208, "MEAN_BBYC": -33.954979, "COMPARE": 0, "GN_ASCII": "Cape Town", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 11, "GN_POP": 3433441, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 455, "UN_ADM0": "South Africa", "UN_LAT": -33.97, "UN_LONG": 18.48, "POP1950": 618, "POP1955": 705, "POP1960": 803, "POP1965": 945, "POP1970": 1114, "POP1975": 1339, "POP1980": 1609, "POP1985": 1925, "POP1990": 2155, "POP1995": 2394, "POP2000": 2715, "POP2005": 3087, "POP2010": 3215, "POP2015": 3357, "POP2020": 3504, "POP2025": 3627, "POP2050": 3744 }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.925130 ] } } , @@ -234,7 +238,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Dar es Salaam", "DIFFASCII": 0, "NAMEASCII": "Dar es Salaam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dar-Es-Salaam", "ISO_A2": "TZ", "LATITUDE": -6.800013, "LONGITUDE": 39.268342, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2930000, "POP_MIN": 2698652, "POP_OTHER": 2757835, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 160263, "MEGANAME": "Dar es Salaam", "LS_NAME": "Dar es Salaam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2757507, "MAX_POP20": 2757507, "MAX_POP50": 2757507, "MAX_POP300": 2757507, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 153, "MAX_PERKM": 153, "MIN_PERMI": 95, "MAX_PERMI": 95, "MIN_BBXMIN": 39.15, "MAX_BBXMIN": 39.15, "MIN_BBXMAX": 39.325, "MAX_BBXMAX": 39.325, "MIN_BBYMIN": -6.933333, "MAX_BBYMIN": -6.933333, "MIN_BBYMAX": -6.725, "MAX_BBYMAX": -6.725, "MEAN_BBXC": 39.23918, "MEAN_BBYC": -6.833434, "COMPARE": 0, "GN_ASCII": "Dar es Salaam", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 2698652, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 523, "UN_ADM0": "United Republic of Tanzania", "UN_LAT": -6.81, "UN_LONG": 39.25, "POP1950": 67, "POP1955": 110, "POP1960": 162, "POP1965": 233, "POP1970": 357, "POP1975": 572, "POP1980": 836, "POP1985": 1046, "POP1990": 1316, "POP1995": 1668, "POP2000": 2116, "POP2005": 2679, "POP2010": 2930, "POP2015": 3319, "POP2020": 4020, "POP2025": 4804, "POP2050": 5688 }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Gaborone", "DIFFASCII": 0, "NAMEASCII": "Gaborone", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Botswana", "SOV_A3": "BWA", "ADM0NAME": "Botswana", "ADM0_A3": "BWA", "ADM1NAME": "South-East", "ISO_A2": "BW", "LATITUDE": -24.646313, "LONGITUDE": 25.911948, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 208411, "POP_MIN": 159243, "POP_OTHER": 158896, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 933773, "LS_NAME": "Gaborone", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 159243, "MAX_POP20": 159243, "MAX_POP50": 159243, "MAX_POP300": 159243, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 72, "MAX_AREAKM": 72, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 59, "MAX_PERKM": 59, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 25.858333, "MAX_BBXMIN": 25.858333, "MIN_BBXMAX": 25.991667, "MAX_BBXMAX": 25.991667, "MIN_BBYMIN": -24.7, "MAX_BBYMIN": -24.7, "MIN_BBYMAX": -24.6, "MAX_BBYMAX": -24.6, "MEAN_BBXC": 25.925091, "MEAN_BBYC": -24.656793, "COMPARE": 0, "GN_ASCII": "Gaborone", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 208411, "ELEVATION": 0, "GTOPO30": 1006, "TIMEZONE": "Africa/Gaborone", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.905762, -24.647017 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Maseru", "DIFFASCII": 0, "NAMEASCII": "Maseru", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lesotho", "SOV_A3": "LSO", "ADM0NAME": "Lesotho", "ADM0_A3": "LSO", "ADM1NAME": "Maseru", "ISO_A2": "LS", "LATITUDE": -29.316674, "LONGITUDE": 27.483273, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 361324, "POP_MIN": 118355, "POP_OTHER": 356225, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 932505, "LS_NAME": "Maseru", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 361324, "MAX_POP20": 361324, "MAX_POP50": 361324, "MAX_POP300": 361324, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 141, "MIN_AREAMI": 54, "MAX_AREAMI": 54, "MIN_PERKM": 177, "MAX_PERKM": 177, "MIN_PERMI": 110, "MAX_PERMI": 110, "MIN_BBXMIN": 27.458333, "MAX_BBXMIN": 27.458333, "MIN_BBXMAX": 27.616667, "MAX_BBXMAX": 27.616667, "MIN_BBYMIN": -29.525, "MAX_BBYMIN": -29.525, "MIN_BBYMAX": -29.241667, "MAX_BBYMAX": -29.241667, "MEAN_BBXC": 27.536702, "MEAN_BBYC": -29.350222, "COMPARE": 0, "GN_ASCII": "Maseru", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 118355, "ELEVATION": 0, "GTOPO30": 1482, "TIMEZONE": "Africa/Maseru", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 27.487793, -29.324720 ] } } , @@ -252,21 +256,21 @@ , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936 }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.921990 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , { "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Luxembourg", "DIFFASCII": 0, "NAMEASCII": "Luxembourg", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Luxembourg", "SOV_A3": "LUX", "ADM0NAME": "Luxembourg", "ADM0_A3": "LUX", "ADM1NAME": "Luxembourg", "ISO_A2": "LU", "LATITUDE": 49.61166, "LONGITUDE": 6.130003, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 107260, "POP_MIN": 76684, "POP_OTHER": 106219, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2960316, "LS_NAME": "Luxembourg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 107260, "MAX_POP20": 107260, "MAX_POP50": 107260, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 71, "MAX_PERKM": 71, "MIN_PERMI": 44, "MAX_PERMI": 44, "MIN_BBXMIN": 6.041667, "MAX_BBXMIN": 6.041667, "MIN_BBXMAX": 6.183333, "MAX_BBXMAX": 6.183333, "MIN_BBYMIN": 49.558333, "MAX_BBYMIN": 49.558333, "MIN_BBYMAX": 49.708333, "MAX_BBYMAX": 49.708333, "MEAN_BBXC": 6.125273, "MEAN_BBYC": 49.620833, "COMPARE": 0, "GN_ASCII": "Luxembourg", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 76684, "ELEVATION": 0, "GTOPO30": 259, "TIMEZONE": "Europe/Luxembourg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genève", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 46.210250 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Vienna", "NAMEPAR": "Wien", "DIFFASCII": 0, "NAMEASCII": "Vienna", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Austria", "SOV_A3": "AUT", "ADM0NAME": "Austria", "ADM0_A3": "AUT", "ADM1NAME": "Wien", "ISO_A2": "AT", "LATITUDE": 48.200015, "LONGITUDE": 16.366639, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2400000, "POP_MIN": 1731000, "POP_OTHER": 1480886, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2761369, "MEGANAME": "Wien", "LS_NAME": "Vienna", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1561335, "MAX_POP20": 1610331, "MAX_POP50": 1610331, "MAX_POP300": 1610331, "MAX_POP310": 1610331, "MAX_NATSCA": 300, "MIN_AREAKM": 488, "MAX_AREAKM": 533, "MIN_AREAMI": 189, "MAX_AREAMI": 206, "MIN_PERKM": 444, "MAX_PERKM": 497, "MIN_PERMI": 276, "MAX_PERMI": 309, "MIN_BBXMIN": 16.133333, "MAX_BBXMIN": 16.133333, "MIN_BBXMAX": 16.583333, "MAX_BBXMAX": 16.583333, "MIN_BBYMIN": 47.916667, "MAX_BBYMIN": 48.008333, "MIN_BBYMAX": 48.383333, "MAX_BBYMAX": 48.383333, "MEAN_BBXC": 16.351672, "MEAN_BBYC": 48.18247, "COMPARE": 0, "GN_ASCII": "Vienna", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1691468, "ELEVATION": 171, "GTOPO30": 164, "TIMEZONE": "Europe/Vienna", "GEONAMESNO": "GeoNames match general.", "UN_FID": 321, "UN_ADM0": "Austria", "UN_LAT": 48.2, "UN_LONG": 16.32, "POP1950": 2086, "POP1955": 2087, "POP1960": 2089, "POP1965": 2080, "POP1970": 2070, "POP1975": 2059, "POP1980": 2049, "POP1985": 2069, "POP1990": 2096, "POP1995": 2127, "POP2000": 2158, "POP2005": 2264, "POP2010": 2315, "POP2015": 2385, "POP2020": 2451, "POP2025": 2476, "POP2050": 2496, "CITYALT": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.195387 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ljubljana", "DIFFASCII": 0, "NAMEASCII": "Ljubljana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovenia", "SOV_A3": "SVN", "ADM0NAME": "Slovenia", "ADM0_A3": "SVN", "ADM1NAME": "Osrednjeslovenska", "ISO_A2": "SI", "LATITUDE": 46.055288, "LONGITUDE": 14.514969, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 314807, "POP_MIN": 255115, "POP_OTHER": 256316, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3196359, "LS_NAME": "Ljubljana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314807, "MAX_POP20": 314807, "MAX_POP50": 314807, "MAX_POP300": 314807, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 129, "MAX_PERMI": 129, "MIN_BBXMIN": 14.433333, "MAX_BBXMIN": 14.433333, "MIN_BBXMAX": 14.633333, "MAX_BBXMAX": 14.633333, "MIN_BBYMIN": 46, "MAX_BBYMIN": 46, "MIN_BBYMAX": 46.241667, "MAX_BBYMAX": 46.241667, "MEAN_BBXC": 14.541032, "MEAN_BBYC": 46.091958, "COMPARE": 0, "GN_ASCII": "Ljubljana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 61, "GN_POP": 255115, "ELEVATION": 0, "GTOPO30": 284, "TIMEZONE": "Europe/Ljubljana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 46.057985 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Rome", "DIFFASCII": 0, "NAMEASCII": "Rome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Italy", "SOV_A3": "ITA", "ADM0NAME": "Italy", "ADM0_A3": "ITA", "ADM1NAME": "Lazio", "ISO_A2": "IT", "LATITUDE": 41.895956, "LONGITUDE": 12.483258, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3339000, "POP_MIN": 35452, "POP_OTHER": 2050212, "RANK_MAX": 12, "RANK_MIN": 7, "GEONAMEID": 4219762, "MEGANAME": "Rome", "LS_NAME": "Rome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2143900, "MAX_POP20": 2143900, "MAX_POP50": 2666328, "MAX_POP300": 2666328, "MAX_POP310": 2666328, "MAX_NATSCA": 300, "MIN_AREAKM": 505, "MAX_AREAKM": 683, "MIN_AREAMI": 195, "MAX_AREAMI": 264, "MIN_PERKM": 382, "MAX_PERKM": 500, "MIN_PERMI": 238, "MAX_PERMI": 311, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.450494, "MIN_BBXMAX": 12.766667, "MAX_BBXMAX": 12.766667, "MIN_BBYMIN": 41.666667, "MAX_BBYMIN": 41.666667, "MIN_BBYMAX": 42.033333, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.561474, "MEAN_BBYC": 41.864442, "COMPARE": 0, "GN_ASCII": "Rome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 35452, "ELEVATION": 187, "GTOPO30": 183, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 308, "UN_ADM0": "Italy", "UN_LAT": 41.87, "UN_LONG": 12.51, "POP1950": 1884, "POP1955": 2143, "POP1960": 2456, "POP1965": 2780, "POP1970": 3135, "POP1975": 3300, "POP1980": 3390, "POP1985": 3429, "POP1990": 3450, "POP1995": 3425, "POP2000": 3385, "POP2005": 3348, "POP2010": 3339, "POP2015": 3333, "POP2020": 3330, "POP2025": 3330, "POP2050": 3330, "CITYALT": "Rome" }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Sarajevo", "DIFFASCII": 0, "NAMEASCII": "Sarajevo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bosnia and Herzegovina", "SOV_A3": "BIH", "ADM0NAME": "Bosnia and Herzegovina", "ADM0_A3": "BIH", "ADM1NAME": "Sarajevo", "ISO_A2": "BA", "LATITUDE": 43.850022, "LONGITUDE": 18.383002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 696731, "POP_MIN": 628902, "POP_OTHER": 627065, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3191281, "LS_NAME": "Sarajevo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 628902, "MAX_POP20": 628902, "MAX_POP50": 628902, "MAX_POP300": 628902, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 112, "MAX_PERKM": 112, "MIN_PERMI": 70, "MAX_PERMI": 70, "MIN_BBXMIN": 18.216667, "MAX_BBXMIN": 18.216667, "MIN_BBXMAX": 18.466667, "MAX_BBXMAX": 18.466667, "MIN_BBYMIN": 43.783333, "MAX_BBYMIN": 43.783333, "MIN_BBYMAX": 43.9, "MAX_BBYMAX": 43.9, "MEAN_BBXC": 18.351272, "MEAN_BBYC": 43.846183, "COMPARE": 0, "GN_ASCII": "Sarajevo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 696731, "ELEVATION": 0, "GTOPO30": 545, "TIMEZONE": "Europe/Sarajevo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.391113, 43.850374 ] } } , @@ -274,19 +278,19 @@ , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Skopje", "DIFFASCII": 0, "NAMEASCII": "Skopje", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Macedonia", "SOV_A3": "MKD", "ADM0NAME": "Macedonia", "ADM0_A3": "MKD", "ADM1NAME": "Centar", "ISO_A2": "MK", "LATITUDE": 42.000006, "LONGITUDE": 21.433461, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 494087, "POP_MIN": 474889, "POP_OTHER": 491890, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 785842, "LS_NAME": "Skopje", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 494087, "MAX_POP20": 494087, "MAX_POP50": 494087, "MAX_POP300": 494087, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 114, "MAX_AREAKM": 114, "MIN_AREAMI": 44, "MAX_AREAMI": 44, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 21.3, "MAX_BBXMIN": 21.3, "MIN_BBXMAX": 21.533333, "MAX_BBXMAX": 21.533333, "MIN_BBYMIN": 41.95, "MAX_BBYMIN": 41.95, "MIN_BBYMAX": 42.066667, "MAX_BBYMAX": 42.066667, "MEAN_BBXC": 21.430243, "MEAN_BBYC": 42.007257, "COMPARE": 0, "GN_ASCII": "Skopje", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 474889, "ELEVATION": 0, "GTOPO30": 246, "TIMEZONE": "Europe/Skopje", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 21.423340, 42.000325 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tallinn", "DIFFASCII": 0, "NAMEASCII": "Tallinn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Estonia", "SOV_A3": "EST", "ADM0NAME": "Estonia", "ADM0_A3": "EST", "ADM1NAME": "Harju", "ISO_A2": "EE", "LATITUDE": 59.433877, "LONGITUDE": 24.728041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 394024, "POP_MIN": 340027, "POP_OTHER": 317949, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 588409, "LS_NAME": "Tallinn", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 340027, "MAX_POP20": 340027, "MAX_POP50": 340027, "MAX_POP300": 340027, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 130, "MAX_AREAKM": 130, "MIN_AREAMI": 50, "MAX_AREAMI": 50, "MIN_PERKM": 164, "MAX_PERKM": 164, "MIN_PERMI": 102, "MAX_PERMI": 102, "MIN_BBXMIN": 24.591667, "MAX_BBXMIN": 24.591667, "MIN_BBXMAX": 24.916667, "MAX_BBXMAX": 24.916667, "MIN_BBYMIN": 59.333333, "MAX_BBYMIN": 59.333333, "MIN_BBYMAX": 59.525, "MAX_BBYMAX": 59.525, "MEAN_BBXC": 24.746591, "MEAN_BBYC": 59.42709, "COMPARE": 0, "GN_ASCII": "Tallinn", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 394024, "ELEVATION": 0, "GTOPO30": 22, "TIMEZONE": "Europe/Tallinn", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.719238, 59.433903 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Minsk", "DIFFASCII": 0, "NAMEASCII": "Minsk", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Belarus", "SOV_A3": "BLR", "ADM0NAME": "Belarus", "ADM0_A3": "BLR", "ADM1NAME": "Minsk", "ISO_A2": "BY", "LATITUDE": 53.899977, "LONGITUDE": 27.566627, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1577138, "POP_OTHER": 1557919, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 625144, "MEGANAME": "Minsk", "LS_NAME": "Minsk", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1577138, "MAX_POP20": 1577138, "MAX_POP50": 1577138, "MAX_POP300": 1577138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 82, "MAX_AREAMI": 82, "MIN_PERKM": 196, "MAX_PERKM": 196, "MIN_PERMI": 122, "MAX_PERMI": 122, "MIN_BBXMIN": 27.408333, "MAX_BBXMIN": 27.408333, "MIN_BBXMAX": 27.716667, "MAX_BBXMAX": 27.716667, "MIN_BBYMIN": 53.8, "MAX_BBYMIN": 53.8, "MIN_BBYMAX": 53.983333, "MAX_BBYMAX": 53.983333, "MEAN_BBXC": 27.562159, "MEAN_BBYC": 53.893169, "COMPARE": 0, "GN_ASCII": "Minsk", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1742124, "ELEVATION": 0, "GTOPO30": 199, "TIMEZONE": "Europe/Minsk", "GEONAMESNO": "GeoNames match general.", "UN_FID": 4, "UN_ADM0": "Belarus", "UN_LAT": 53.89, "UN_LONG": 27.57, "POP1950": 284, "POP1955": 414, "POP1960": 551, "POP1965": 719, "POP1970": 932, "POP1975": 1120, "POP1980": 1318, "POP1985": 1474, "POP1990": 1607, "POP1995": 1649, "POP2000": 1700, "POP2005": 1775, "POP2010": 1805, "POP2015": 1846, "POP2020": 1879, "POP2025": 1883, "POP2050": 1883 }, "geometry": { "type": "Point", "coordinates": [ 27.553711, 53.904338 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bucharest", "NAMEPAR": "Bucuresti", "DIFFASCII": 0, "NAMEASCII": "Bucharest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Romania", "SOV_A3": "ROU", "ADM0NAME": "Romania", "ADM0_A3": "ROU", "ADM1NAME": "Bucharest", "ISO_A2": "RO", "LATITUDE": 44.433372, "LONGITUDE": 26.099947, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1942000, "POP_MIN": 1742194, "POP_OTHER": 1636574, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 683506, "MEGANAME": "Bucuresti", "LS_NAME": "Bucharest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1742194, "MAX_POP20": 1742194, "MAX_POP50": 1742194, "MAX_POP300": 1742194, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 357, "MAX_PERKM": 357, "MIN_PERMI": 222, "MAX_PERMI": 222, "MIN_BBXMIN": 25.866667, "MAX_BBXMIN": 25.866667, "MIN_BBXMAX": 26.25, "MAX_BBXMAX": 26.25, "MIN_BBYMIN": 44.316667, "MAX_BBYMIN": 44.316667, "MIN_BBYMAX": 44.641667, "MAX_BBYMAX": 44.641667, "MEAN_BBXC": 26.082182, "MEAN_BBYC": 44.44411, "COMPARE": 0, "GN_ASCII": "Bucuresti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1877155, "ELEVATION": 0, "GTOPO30": 71, "TIMEZONE": "Europe/Bucharest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 422, "UN_ADM0": "Romania", "UN_LAT": 44.43, "UN_LONG": 26.12, "POP1950": 652, "POP1955": 856, "POP1960": 1002, "POP1965": 1154, "POP1970": 1396, "POP1975": 1702, "POP1980": 1865, "POP1985": 1950, "POP1990": 2040, "POP1995": 2018, "POP2000": 1949, "POP2005": 1936, "POP2010": 1942, "POP2015": 1947, "POP2020": 1949, "POP2025": 1949, "POP2050": 1949, "CITYALT": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.433780 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Algiers", "NAMEALT": "El Djazaïr", "DIFFASCII": 0, "NAMEASCII": "Algiers", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Algeria", "SOV_A3": "DZA", "ADM0NAME": "Algeria", "ADM0_A3": "DZA", "ADM1NAME": "Alger", "ISO_A2": "DZ", "LATITUDE": 36.763065, "LONGITUDE": 3.050553, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3354000, "POP_MIN": 1977663, "POP_OTHER": 3332619, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2507480, "MEGANAME": "El Djazaïr", "LS_NAME": "Algiers", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3368320, "MAX_POP20": 3698473, "MAX_POP50": 4203253, "MAX_POP300": 4203253, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 886, "MAX_AREAKM": 1275, "MIN_AREAMI": 342, "MAX_AREAMI": 492, "MIN_PERKM": 798, "MAX_PERKM": 1192, "MIN_PERMI": 496, "MAX_PERMI": 741, "MIN_BBXMIN": 2.641667, "MAX_BBXMIN": 2.808333, "MIN_BBXMAX": 3.548211, "MAX_BBXMAX": 3.741667, "MIN_BBYMIN": 36.45, "MAX_BBYMIN": 36.508333, "MIN_BBYMAX": 36.816667, "MAX_BBYMAX": 36.816667, "MEAN_BBXC": 3.101671, "MEAN_BBYC": 36.673641, "COMPARE": 0, "GN_ASCII": "Algiers", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1977663, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Algiers", "GEONAMESNO": "GeoNames match general.", "UN_FID": 6, "UN_ADM0": "Algeria", "UN_LAT": 36.78, "UN_LONG": 3.05, "POP1950": 516, "POP1955": 623, "POP1960": 872, "POP1965": 1049, "POP1970": 1254, "POP1975": 1499, "POP1980": 1621, "POP1985": 1672, "POP1990": 1908, "POP1995": 2295, "POP2000": 2754, "POP2005": 3199, "POP2010": 3354, "POP2015": 3574, "POP2020": 3922, "POP2025": 4235, "POP2050": 4499, "CITYALT": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.054199, 36.756490 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.906849 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouémé", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411 }, "geometry": { "type": "Point", "coordinates": [ 2.526855, 6.402648 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.517838 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lagos", "DIFFASCII": 0, "NAMEASCII": "Lagos", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Former capital", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Lagos", "ISO_A2": "NG", "LATITUDE": 6.443262, "LONGITUDE": 3.391531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 9466000, "POP_MIN": 1536, "POP_OTHER": 6567892, "RANK_MAX": 13, "RANK_MIN": 3, "GEONAMEID": 735497, "MEGANAME": "Lagos", "LS_NAME": "Lagos", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7147910, "MAX_POP20": 7105663, "MAX_POP50": 7411389, "MAX_POP300": 7453740, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1035, "MAX_AREAKM": 1332, "MIN_AREAMI": 400, "MAX_AREAMI": 514, "MIN_PERKM": 638, "MAX_PERKM": 882, "MIN_PERMI": 397, "MAX_PERMI": 548, "MIN_BBXMIN": 2.925412, "MAX_BBXMIN": 2.996332, "MIN_BBXMAX": 3.475, "MAX_BBXMAX": 3.475, "MIN_BBYMIN": 6.4, "MAX_BBYMIN": 6.4, "MIN_BBYMAX": 6.80087, "MAX_BBYMAX": 6.966667, "MEAN_BBXC": 3.231132, "MEAN_BBYC": 6.585848, "COMPARE": 0, "GN_ASCII": "Lagos", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1536, "ELEVATION": 0, "GTOPO30": 89, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 392, "UN_ADM0": "Nigeria", "UN_LAT": 6.45, "UN_LONG": 3.3, "POP1950": 305, "POP1955": 468, "POP1960": 762, "POP1965": 1135, "POP1970": 1414, "POP1975": 1890, "POP1980": 2572, "POP1985": 3500, "POP1990": 4764, "POP1995": 5966, "POP2000": 7233, "POP2005": 8767, "POP2010": 9466, "POP2015": 10572, "POP2020": 12403, "POP2025": 14134, "POP2050": 15796 }, "geometry": { "type": "Point", "coordinates": [ 3.383789, 6.446318 ] } } , @@ -294,7 +298,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Yaounde", "NAMEALT": "Yaoundé", "DIFFASCII": 0, "NAMEASCII": "Yaounde", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cameroon", "SOV_A3": "CMR", "ADM0NAME": "Cameroon", "ADM0_A3": "CMR", "ADM1NAME": "Centre", "ISO_A2": "CM", "LATITUDE": 3.866701, "LONGITUDE": 11.516651, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1611000, "POP_MIN": 1060587, "POP_OTHER": 1060747, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2220957, "MEGANAME": "Yaoundé", "LS_NAME": "Yaounde", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1060587, "MAX_POP20": 1060587, "MAX_POP50": 1060587, "MAX_POP300": 1060587, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 197, "MAX_AREAKM": 197, "MIN_AREAMI": 76, "MAX_AREAMI": 76, "MIN_PERKM": 116, "MAX_PERKM": 116, "MIN_PERMI": 72, "MAX_PERMI": 72, "MIN_BBXMIN": 11.433333, "MAX_BBXMIN": 11.433333, "MIN_BBXMAX": 11.6, "MAX_BBXMAX": 11.6, "MIN_BBYMIN": 3.775, "MAX_BBYMIN": 3.775, "MIN_BBYMAX": 3.983333, "MAX_BBYMAX": 3.983333, "MEAN_BBXC": 11.518344, "MEAN_BBYC": 3.865639, "COMPARE": 0, "GN_ASCII": "Yaounde", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1299369, "ELEVATION": 0, "GTOPO30": 733, "TIMEZONE": "Africa/Douala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 9, "UN_ADM0": "Cameroon", "UN_LAT": 3.86, "UN_LONG": 11.51, "POP1950": 32, "POP1955": 49, "POP1960": 75, "POP1965": 112, "POP1970": 183, "POP1975": 292, "POP1980": 415, "POP1985": 578, "POP1990": 754, "POP1995": 948, "POP2000": 1192, "POP2005": 1489, "POP2010": 1611, "POP2015": 1787, "POP2020": 2058, "POP2025": 2312, "POP2050": 2549, "CITYALT": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athínai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athínai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123, "MAX_POP20": 15091561, "MAX_POP50": 29872827, "MAX_POP300": 30682197, "MAX_POP310": 30696820, "MAX_NATSCA": 300, "MIN_AREAKM": 1479, "MAX_AREAKM": 4900, "MIN_AREAMI": 571, "MAX_AREAMI": 1892, "MIN_PERKM": 1365, "MAX_PERKM": 5010, "MIN_PERMI": 848, "MAX_PERMI": 3113, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 7734614, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494, "POP1955": 3029, "POP1960": 3680, "POP1965": 4738, "POP1970": 5585, "POP1975": 6450, "POP1980": 7349, "POP1985": 8328, "POP1990": 9061, "POP1995": 9707, "POP2000": 10534, "POP2005": 11487, "POP2010": 11893, "POP2015": 12503, "POP2020": 13465, "POP2025": 14451, "POP2050": 15561, "CITYALT": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.050077 ] } } , @@ -302,13 +306,13 @@ , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060 }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Khartoum", "NAMEALT": "Al-Khartum", "DIFFASCII": 0, "NAMEASCII": "Khartoum", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sudan", "SOV_A3": "SDN", "ADM0NAME": "Sudan", "ADM0_A3": "SDN", "ADM1NAME": "Khartoum", "ISO_A2": "SD", "LATITUDE": 15.588078, "LONGITUDE": 32.534179, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4754000, "POP_MIN": 1974647, "POP_OTHER": 2325931, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 379252, "MEGANAME": "Al-Khartum", "LS_NAME": "Khartoum", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2395309, "MAX_POP20": 2395309, "MAX_POP50": 2395309, "MAX_POP300": 4542697, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 348, "MAX_AREAKM": 630, "MIN_AREAMI": 134, "MAX_AREAMI": 243, "MIN_PERKM": 237, "MAX_PERKM": 424, "MIN_PERMI": 147, "MAX_PERMI": 263, "MIN_BBXMIN": 32.341667, "MAX_BBXMIN": 32.458333, "MIN_BBXMAX": 32.691667, "MAX_BBXMAX": 32.691667, "MIN_BBYMIN": 15.325, "MAX_BBYMIN": 15.325, "MIN_BBYMAX": 15.699422, "MAX_BBYMAX": 15.825, "MEAN_BBXC": 32.550462, "MEAN_BBYC": 15.559101, "COMPARE": 0, "GN_ASCII": "Khartoum", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 29, "GN_POP": 1974647, "ELEVATION": 0, "GTOPO30": 378, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 466, "UN_ADM0": "Sudan", "UN_LAT": 15.55, "UN_LONG": 32.52, "POP1950": 183, "POP1955": 252, "POP1960": 347, "POP1965": 477, "POP1970": 657, "POP1975": 886, "POP1980": 1164, "POP1985": 1611, "POP1990": 2360, "POP1995": 3242, "POP2000": 3949, "POP2005": 4518, "POP2010": 4754, "POP2015": 5185, "POP2020": 6077, "POP2025": 7017, "POP2050": 7937, "CITYALT": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.541504, 15.580711 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Jerusalem", "DIFFASCII": 0, "NAMEASCII": "Jerusalem", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Jerusalem", "ISO_A2": "IL", "LATITUDE": 31.778408, "LONGITUDE": 35.206626, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1029300, "POP_MIN": 801000, "POP_OTHER": 1072567, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 281184, "LS_NAME": "Jerusalem", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1073782, "MAX_POP20": 1073782, "MAX_POP50": 1073782, "MAX_POP300": 1073782, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 246, "MIN_AREAMI": 95, "MAX_AREAMI": 95, "MIN_PERKM": 239, "MAX_PERKM": 239, "MIN_PERMI": 149, "MAX_PERMI": 149, "MIN_BBXMIN": 35.1, "MAX_BBXMIN": 35.1, "MIN_BBXMAX": 35.316667, "MAX_BBXMAX": 35.316667, "MIN_BBYMIN": 31.683333, "MAX_BBYMIN": 31.683333, "MIN_BBYMAX": 31.991667, "MAX_BBYMAX": 31.991667, "MEAN_BBXC": 35.210651, "MEAN_BBYC": 31.809862, "COMPARE": 0, "GN_ASCII": "Jerusalem", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 6, "GN_POP": 714000, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 35.200195, 31.784217 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Asmara", "DIFFASCII": 0, "NAMEASCII": "Asmara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Eritrea", "SOV_A3": "ERI", "ADM0NAME": "Eritrea", "ADM0_A3": "ERI", "ADM1NAME": "Anseba", "ISO_A2": "ER", "LATITUDE": 15.333339, "LONGITUDE": 38.933324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 620802, "POP_MIN": 563930, "POP_OTHER": 587094, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 343300, "LS_NAME": "Asmara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 620802, "MAX_POP20": 620802, "MAX_POP50": 620802, "MAX_POP300": 620802, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 90, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 93, "MAX_PERKM": 93, "MIN_PERMI": 58, "MAX_PERMI": 58, "MIN_BBXMIN": 38.858333, "MAX_BBXMIN": 38.858333, "MIN_BBXMAX": 38.975, "MAX_BBXMAX": 38.975, "MIN_BBYMIN": 15.225, "MAX_BBYMIN": 15.225, "MIN_BBYMAX": 15.408333, "MAX_BBYMAX": 15.408333, "MEAN_BBXC": 38.926873, "MEAN_BBYC": 15.327408, "COMPARE": 0, "GN_ASCII": "Asmara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 563930, "ELEVATION": 0, "GTOPO30": 2360, "TIMEZONE": "Africa/Asmara", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.326572 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Djibouti", "DIFFASCII": 0, "NAMEASCII": "Djibouti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Djibouti", "SOV_A3": "DJI", "ADM0NAME": "Djibouti", "ADM0_A3": "DJI", "ADM1NAME": "Djibouti", "ISO_A2": "DJ", "LATITUDE": 11.595014, "LONGITUDE": 43.148002, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 923000, "POP_MIN": 604013, "POP_OTHER": 335001, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 223817, "LS_NAME": "Djibouti", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 335001, "MAX_POP20": 335001, "MAX_POP50": 335001, "MAX_POP300": 335001, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 42, "MAX_AREAKM": 42, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 43.066667, "MAX_BBXMIN": 43.066667, "MIN_BBXMAX": 43.166667, "MAX_BBXMAX": 43.166667, "MIN_BBYMIN": 11.533333, "MAX_BBYMIN": 11.533333, "MIN_BBYMAX": 11.625, "MAX_BBYMAX": 11.625, "MEAN_BBXC": 43.129167, "MEAN_BBYC": 11.5715, "COMPARE": 0, "GN_ASCII": "Djibouti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 623891, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Djibouti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.154297, 11.587669 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Astana", "DIFFASCII": 0, "NAMEASCII": "Astana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kazakhstan", "SOV_A3": "KAZ", "ADM0NAME": "Kazakhstan", "ADM0_A3": "KAZ", "ADM1NAME": "Aqmola", "ISO_A2": "KZ", "LATITUDE": 51.181125, "LONGITUDE": 71.427774, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 345604, "POP_MIN": 325021, "POP_OTHER": 317445, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1526273, "LS_NAME": "Astana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 325021, "MAX_POP20": 325021, "MAX_POP50": 325021, "MAX_POP300": 325021, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 101, "MAX_PERKM": 101, "MIN_PERMI": 63, "MAX_PERMI": 63, "MIN_BBXMIN": 71.325, "MAX_BBXMIN": 71.325, "MIN_BBXMAX": 71.533333, "MAX_BBXMAX": 71.533333, "MIN_BBYMIN": 51.1, "MAX_BBYMIN": 51.1, "MIN_BBYMAX": 51.225, "MAX_BBYMAX": 51.225, "MEAN_BBXC": 71.43275, "MEAN_BBYC": 51.164443, "COMPARE": 0, "GN_ASCII": "Astana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 345604, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Asia/Qyzylorda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 71.433105, 51.179343 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 44.055176, 9.557417 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEALT": "Ürümqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102, "MEGANAME": "Ürümqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046, "MAX_POP20": 2066046, "MAX_POP50": 2066046, "MAX_POP300": 2066046, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 361, "MAX_AREAKM": 361, "MIN_AREAMI": 139, "MAX_AREAMI": 139, "MIN_PERKM": 318, "MAX_PERKM": 318, "MIN_PERMI": 198, "MAX_PERMI": 198, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13, "GN_POP": 1508225, "ELEVATION": 0, "GTOPO30": 915, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253, "POP1955": 312, "POP1960": 384, "POP1965": 472, "POP1970": 581, "POP1975": 715, "POP1980": 881, "POP1985": 1029, "POP1990": 1161, "POP1995": 1417, "POP2000": 1730, "POP2005": 2025, "POP2010": 2151, "POP2015": 2340, "POP2020": 2620, "POP2025": 2851, "POP2050": 3038, "CITYALT": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.583008, 43.802819 ] } } , @@ -322,12 +326,14 @@ , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kabul", "DIFFASCII": 0, "NAMEASCII": "Kabul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Afghanistan", "SOV_A3": "AFG", "ADM0NAME": "Afghanistan", "ADM0_A3": "AFG", "ADM1NAME": "Kabul", "ISO_A2": "AF", "LATITUDE": 34.51669, "LONGITUDE": 69.18326, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3277000, "POP_MIN": 3043532, "POP_OTHER": 3475519, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1138958, "MEGANAME": "Kabul", "LS_NAME": "Kabul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3720671, "MAX_POP20": 3720671, "MAX_POP50": 4803365, "MAX_POP300": 4793793, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 1471, "MIN_AREAMI": 229, "MAX_AREAMI": 568, "MIN_PERKM": 409, "MAX_PERKM": 1100, "MIN_PERMI": 254, "MAX_PERMI": 683, "MIN_BBXMIN": 68.866667, "MAX_BBXMIN": 68.866667, "MIN_BBXMAX": 69.308333, "MAX_BBXMAX": 69.783333, "MIN_BBYMIN": 34.433333, "MAX_BBYMIN": 34.433333, "MIN_BBYMAX": 34.768813, "MAX_BBYMAX": 35.166667, "MEAN_BBXC": 69.144173, "MEAN_BBYC": 34.688498, "COMPARE": 0, "GN_ASCII": "Kabul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 3043532, "ELEVATION": 0, "GTOPO30": 1808, "TIMEZONE": "Asia/Kabul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 320, "UN_ADM0": "Afghanistan", "UN_LAT": 34.53, "UN_LONG": 69.13, "POP1950": 129, "POP1955": 184, "POP1960": 263, "POP1965": 369, "POP1970": 472, "POP1975": 674, "POP1980": 978, "POP1985": 1160, "POP1990": 1306, "POP1995": 1616, "POP2000": 1963, "POP2005": 2994, "POP2010": 3277, "POP2015": 3768, "POP2020": 4730, "POP2025": 5836, "POP2050": 7175 }, "geometry": { "type": "Point", "coordinates": [ 69.191895, 34.524661 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907 }, "geometry": { "type": "Point", "coordinates": [ 85.319824, 27.722436 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 77.189941, 28.594169 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Male", "DIFFASCII": 0, "NAMEASCII": "Male", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Maldives", "SOV_A3": "MDV", "ADM0NAME": "Maldives", "ADM0_A3": "MDV", "ISO_A2": "MV", "LATITUDE": 4.166708, "LONGITUDE": 73.499947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 112927, "POP_MIN": 103693, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3174186, "LS_NAME": "Male", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 112927, "MAX_POP20": 112927, "MAX_POP50": 112927, "MAX_POP300": 112927, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 73.5, "MAX_BBXMIN": 73.5, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.516667, "MIN_BBYMIN": 4.166667, "MAX_BBYMIN": 4.166667, "MIN_BBYMAX": 4.183333, "MAX_BBYMAX": 4.183333, "MEAN_BBXC": 73.508333, "MEAN_BBYC": 4.175, "COMPARE": 0, "GN_ASCII": "Male", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 17, "GN_POP": 2138, "ELEVATION": 0, "GTOPO30": 672, "TIMEZONE": "Europe/Rome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.171115 ] } } , +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Colombo", "DIFFASCII": 0, "NAMEASCII": "Colombo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.931966, "LONGITUDE": 79.857751, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 217000, "POP_MIN": 217000, "POP_OTHER": 2490974, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3465927, "LS_NAME": "Colombo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2664418, "MAX_POP20": 2742979, "MAX_POP50": 2742979, "MAX_POP300": 9759831, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1054, "MAX_AREAKM": 6238, "MIN_AREAMI": 407, "MAX_AREAMI": 2408, "MIN_PERKM": 847, "MAX_PERKM": 5343, "MIN_PERMI": 526, "MAX_PERMI": 3320, "MIN_BBXMIN": 79.8, "MAX_BBXMIN": 79.8, "MIN_BBXMAX": 80.097553, "MAX_BBXMAX": 80.833333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.854447, "MIN_BBYMAX": 7.633333, "MAX_BBYMAX": 7.8, "MEAN_BBXC": 79.996849, "MEAN_BBYC": 7.222799, "COMPARE": 0, "GN_ASCII": "Colombo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 18, "GN_POP": 217000, "ELEVATION": 0, "GTOPO30": 927, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.848633, 6.926427 ] } } +, { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871 }, "geometry": { "type": "Point", "coordinates": [ 36.804199, -1.274309 ] } } ] } ] } @@ -344,7 +350,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.515836 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Auckland", "DIFFASCII": 0, "NAMEASCII": "Auckland", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Auckland", "ISO_A2": "NZ", "LATITUDE": -36.850013, "LONGITUDE": 174.764981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1245000, "POP_MIN": 274020, "POP_OTHER": 243794, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 2193733, "MEGANAME": "Auckland", "LS_NAME": "Auckland", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274020, "MAX_POP20": 354233, "MAX_POP50": 350364, "MAX_POP300": 638000, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 169, "MAX_AREAKM": 399, "MIN_AREAMI": 65, "MAX_AREAMI": 154, "MIN_PERKM": 105, "MAX_PERKM": 266, "MIN_PERMI": 65, "MAX_PERMI": 166, "MIN_BBXMIN": 174.583333, "MAX_BBXMIN": 174.657483, "MIN_BBXMAX": 174.883333, "MAX_BBXMAX": 174.983333, "MIN_BBYMIN": -37.091667, "MAX_BBYMIN": -36.964958, "MIN_BBYMAX": -36.825, "MAX_BBYMAX": -36.8, "MEAN_BBXC": 174.755045, "MEAN_BBYC": -36.896818, "COMPARE": 0, "GN_ASCII": "Auckland", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 417910, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Pacific/Auckland", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 381, "UN_ADM0": "New Zealand", "UN_LAT": -36.9, "UN_LONG": 174.76, "POP1950": 319, "POP1955": 387, "POP1960": 440, "POP1965": 532, "POP1970": 635, "POP1975": 729, "POP1980": 774, "POP1985": 812, "POP1990": 870, "POP1995": 976, "POP2000": 1063, "POP2005": 1189, "POP2010": 1245, "POP2015": 1321, "POP2020": 1398, "POP2025": 1441, "POP2050": 1475 }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -36.844461 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.124971 ] } } ] } ] } , @@ -354,15 +360,13 @@ , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112 }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.916342 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Chengdu", "DIFFASCII": 0, "NAMEASCII": "Chengdu", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Sichuan", "ISO_A2": "CN", "LATITUDE": 30.67, "LONGITUDE": 104.070019, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4123000, "POP_MIN": 3950437, "POP_OTHER": 11622929, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1815286, "MEGANAME": "Chengdu", "LS_NAME": "Chengdu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9954810, "MAX_POP20": 11359674, "MAX_POP50": 24374217, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 5912, "MAX_AREAKM": 24244, "MIN_AREAMI": 2283, "MAX_AREAMI": 9361, "MIN_PERKM": 2296, "MAX_PERKM": 11900, "MIN_PERMI": 1427, "MAX_PERMI": 7394, "MIN_BBXMIN": 103.125, "MAX_BBXMIN": 103.383333, "MIN_BBXMAX": 104.433333, "MAX_BBXMAX": 105.375, "MIN_BBYMIN": 28.738768, "MAX_BBYMIN": 30.065456, "MIN_BBYMAX": 31.083333, "MAX_BBYMAX": 31.341667, "MEAN_BBXC": 104.039242, "MEAN_BBYC": 30.486458, "COMPARE": 0, "GN_ASCII": "Chengdu", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 3950437, "ELEVATION": 0, "GTOPO30": 529, "TIMEZONE": "Asia/Chongqing", "GEONAMESNO": "GeoNames match general.", "UN_FID": 31, "UN_ADM0": "China", "UN_LAT": 30.67, "UN_LONG": 104.07, "POP1950": 768, "POP1955": 922, "POP1960": 1106, "POP1965": 1327, "POP1970": 1592, "POP1975": 1911, "POP1980": 2293, "POP1985": 2639, "POP1990": 2955, "POP1995": 3403, "POP2000": 3919, "POP2005": 4065, "POP2010": 4123, "POP2015": 4266, "POP2020": 4634, "POP2025": 5014, "POP2050": 5320 }, "geometry": { "type": "Point", "coordinates": [ 104.062500, 30.675715 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bangkok", "NAMEALT": "Krung Thep", "DIFFASCII": 0, "NAMEASCII": "Bangkok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Thailand", "SOV_A3": "THA", "ADM0NAME": "Thailand", "ADM0_A3": "THA", "ADM1NAME": "Bangkok Metropolis", "ISO_A2": "TH", "LATITUDE": 13.749999, "LONGITUDE": 100.516645, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 6704000, "POP_MIN": 5104476, "POP_OTHER": 5082758, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1609350, "MEGANAME": "Krung Thep", "LS_NAME": "Bangkok", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5323600, "MAX_POP20": 8823534, "MAX_POP50": 9210939, "MAX_POP300": 9206246, "MAX_POP310": 9206246, "MAX_NATSCA": 300, "MIN_AREAKM": 815, "MAX_AREAKM": 2350, "MIN_AREAMI": 315, "MAX_AREAMI": 908, "MIN_PERKM": 280, "MAX_PERKM": 1354, "MIN_PERMI": 174, "MAX_PERMI": 841, "MIN_BBXMIN": 99.991667, "MAX_BBXMIN": 100.216667, "MIN_BBXMAX": 100.844293, "MAX_BBXMAX": 101.016667, "MIN_BBYMIN": 13.5, "MAX_BBYMIN": 13.516667, "MIN_BBYMAX": 13.872295, "MAX_BBYMAX": 14.158333, "MEAN_BBXC": 100.545047, "MEAN_BBYC": 13.761017, "COMPARE": 0, "GN_ASCII": "Bangkok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 5104476, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Bangkok", "GEONAMESNO": "GeoNames match general.", "UN_FID": 496, "UN_ADM0": "Thailand", "UN_LAT": 13.75, "UN_LONG": 100.51, "POP1950": 1360, "POP1955": 1712, "POP1960": 2151, "POP1965": 2584, "POP1970": 3110, "POP1975": 3842, "POP1980": 4723, "POP1985": 5279, "POP1990": 5888, "POP1995": 6106, "POP2000": 6332, "POP2005": 6582, "POP2010": 6704, "POP2015": 6918, "POP2020": 7332, "POP2025": 7807, "POP2050": 8332, "CITYALT": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.524902, 13.752725 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Phnom Penh", "NAMEALT": "Phnum Pénh", "DIFFASCII": 0, "NAMEASCII": "Phnom Penh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cambodia", "SOV_A3": "KHM", "ADM0NAME": "Cambodia", "ADM0_A3": "KHM", "ADM1NAME": "Phnom Penh", "ISO_A2": "KH", "LATITUDE": 11.55003, "LONGITUDE": 104.916634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1466000, "POP_MIN": 1466000, "POP_OTHER": 1604086, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1821306, "MEGANAME": "Phnum Pénh", "LS_NAME": "Phnom Penh", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1551977, "MAX_POP20": 1551977, "MAX_POP50": 1551977, "MAX_POP300": 1551977, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 464, "MAX_AREAKM": 464, "MIN_AREAMI": 179, "MAX_AREAMI": 179, "MIN_PERKM": 703, "MAX_PERKM": 703, "MIN_PERMI": 437, "MAX_PERMI": 437, "MIN_BBXMIN": 104.441667, "MAX_BBXMIN": 104.441667, "MIN_BBXMAX": 105, "MAX_BBXMAX": 105, "MIN_BBYMIN": 11.291667, "MAX_BBYMIN": 11.291667, "MIN_BBYMAX": 11.691667, "MAX_BBYMAX": 11.691667, "MEAN_BBXC": 104.78577, "MEAN_BBYC": 11.488418, "COMPARE": 0, "GN_ASCII": "Phnom Penh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1573544, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Phnom_Penh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 5, "UN_ADM0": "Cambodia", "UN_LAT": 11.56, "UN_LONG": 104.91, "POP1950": 364, "POP1955": 376, "POP1960": 389, "POP1965": 436, "POP1970": 900, "POP1975": 100, "POP1980": 238, "POP1985": 427, "POP1990": 615, "POP1995": 836, "POP2000": 1160, "POP2005": 1363, "POP2010": 1466, "POP2015": 1651, "POP2020": 2028, "POP2025": 2457, "POP2050": 2911, "CITYALT": "Phnom Penh" }, "geometry": { "type": "Point", "coordinates": [ 104.919434, 11.544616 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Putrajaya", "DIFFASCII": 0, "NAMEASCII": "Putrajaya", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 2.91402, "LONGITUDE": 101.701947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 67964, "POP_MIN": 50000, "POP_OTHER": 956431, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 6697380, "LS_NAME": "Putrajaya", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 955607, "MAX_POP20": 964830, "MAX_POP50": 1651113, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 486, "MAX_AREAKM": 805, "MIN_AREAMI": 188, "MAX_AREAMI": 311, "MIN_PERKM": 467, "MAX_PERKM": 737, "MIN_PERMI": 290, "MAX_PERMI": 458, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.575, "MIN_BBXMAX": 101.891667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 2.708333, "MIN_BBYMAX": 3.041194, "MAX_BBYMAX": 3.041194, "MEAN_BBXC": 101.716617, "MEAN_BBYC": 2.915909, "COMPARE": 0, "GN_ASCII": "Putrajaya", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 17, "GN_POP": 50000, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 2.921097 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 region capital", "NAME": "Hong Kong", "DIFFASCII": 0, "NAMEASCII": "Hong Kong", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "Hong Kong S.A.R.", "ADM0_A3": "HKG", "ISO_A2": "HK", "LATITUDE": 22.304981, "LONGITUDE": 114.185009, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7206000, "POP_MIN": 4551579, "POP_OTHER": 4549026, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1819729, "MEGANAME": "Hong Kong", "LS_NAME": "Hong Kong", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4551579, "MAX_POP20": 15779579, "MAX_POP50": 16718429, "MAX_POP300": 16718429, "MAX_POP310": 42594594, "MAX_NATSCA": 300, "MIN_AREAKM": 202, "MAX_AREAKM": 10661, "MIN_AREAMI": 78, "MAX_AREAMI": 4116, "MIN_PERKM": 219, "MAX_PERKM": 7493, "MIN_PERMI": 136, "MAX_PERMI": 4656, "MIN_BBXMIN": 112.533333, "MAX_BBXMIN": 113.983333, "MIN_BBXMAX": 114.3, "MAX_BBXMAX": 114.775, "MIN_BBYMIN": 21.925, "MAX_BBYMIN": 22.2, "MIN_BBYMAX": 22.4, "MAX_BBYMAX": 24.033333, "MEAN_BBXC": 114.035195, "MEAN_BBYC": 22.679605, "COMPARE": 0, "GN_ASCII": "Hong Kong", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7012738, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Hong_Kong", "GEONAMESNO": "GeoNames match general.", "UN_FID": 210, "UN_ADM0": "China, Hong Kong Special Administrative Region", "UN_LAT": 22.27, "UN_LONG": 114.17, "POP1950": 1682, "POP1955": 2121, "POP1960": 2620, "POP1965": 3191, "POP1970": 3458, "POP1975": 3943, "POP1980": 4609, "POP1985": 5070, "POP1990": 5677, "POP1995": 6206, "POP2000": 6662, "POP2005": 7057, "POP2010": 7206, "POP2015": 7419, "POP2020": 7744, "POP2025": 8040, "POP2050": 8305 }, "geometry": { "type": "Point", "coordinates": [ 114.191895, 22.309426 ] } } , @@ -370,7 +374,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Baguio City", "DIFFASCII": 0, "NAMEASCII": "Baguio City", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Benguet", "ISO_A2": "PH", "LATITUDE": 16.429991, "LONGITUDE": 120.569943, "CHANGED": 40, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 447824, "POP_MIN": 272714, "POP_OTHER": 164877, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1728930, "LS_NAME": "Baguio City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 447824, "MAX_POP20": 447824, "MAX_POP50": 447824, "MAX_POP300": 447824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 120.541667, "MAX_BBXMIN": 120.541667, "MIN_BBXMAX": 120.65, "MAX_BBXMAX": 120.65, "MIN_BBYMIN": 16.358333, "MAX_BBYMIN": 16.358333, "MIN_BBYMAX": 16.483333, "MAX_BBYMAX": 16.483333, "MEAN_BBXC": 120.598765, "MEAN_BBYC": 16.421065, "COMPARE": 0, "GN_ASCII": "Baguio", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 272714, "ELEVATION": 0, "GTOPO30": 1448, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 120.563965, 16.425548 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.493196 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, de fa", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575, "MAX_POP20": 3077575, "MAX_POP50": 3077575, "MAX_POP300": 23366503, "MAX_POP310": 26749011, "MAX_NATSCA": 300, "MIN_AREAKM": 67, "MAX_AREAKM": 8820, "MIN_AREAMI": 26, "MAX_AREAMI": 3405, "MIN_PERKM": 46, "MAX_PERKM": 5298, "MIN_PERMI": 29, "MAX_PERMI": 3292, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 10444527, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544, "POP1955": 1872, "POP1960": 2274, "POP1965": 2829, "POP1970": 3534, "POP1975": 4999, "POP1980": 5955, "POP1985": 6888, "POP1990": 7973, "POP1995": 9401, "POP2000": 9958, "POP2005": 10761, "POP2010": 11100, "POP2015": 11662, "POP2020": 12786, "POP2025": 13892, "POP2050": 14808 }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } , diff --git a/tests/ne_110m_populated_places/out/-yNAME.json b/tests/ne_110m_populated_places/out/-yNAME.json index 440b223b8..b8bd2fa38 100644 --- a/tests/ne_110m_populated_places/out/-yNAME.json +++ b/tests/ne_110m_populated_places/out/-yNAME.json @@ -9,7 +9,7 @@ "maxzoom": "14", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":242},{\"dropped_by_rate\":268},{\"dropped_by_rate\":255},{\"dropped_by_rate\":248},{\"dropped_by_rate\":207},{\"dropped_by_rate\":139},{\"dropped_by_rate\":78},{\"dropped_by_rate\":33},{\"dropped_by_rate\":13},{\"dropped_by_rate\":5},{\"dropped_by_rate\":4},{\"dropped_by_rate\":2},{\"dropped_by_rate\":1},{},{}]", +"strategies": "[{\"dropped_by_rate\":242},{\"dropped_by_rate\":268},{\"dropped_by_rate\":255},{\"dropped_by_rate\":248},{\"dropped_by_rate\":207},{\"dropped_by_rate\":139},{\"dropped_by_rate\":78},{\"dropped_by_rate\":33},{\"dropped_by_rate\":13},{\"dropped_by_rate\":6},{\"dropped_by_rate\":5},{\"dropped_by_rate\":3},{\"dropped_by_rate\":1},{},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -5854,8 +5854,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 277, "y": 262 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.282669, -4.257228 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.313053, -4.327754 ] } } ] } ] } , @@ -7428,8 +7426,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 555, "y": 524 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.282755, -4.257228 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.313053, -4.327754 ] } } ] } ] } , @@ -9560,8 +9556,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1478, "y": 984 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.857774, 6.931965 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.949999, 6.900013 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-Ccat_-z5.json b/tests/ne_110m_populated_places/out/-yNAME_-Ccat_-z5.json index 30a44d268..39585cdaa 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-Ccat_-z5.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-Ccat_-z5.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-Ccat_-z5.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":258},{\"dropped_by_rate\":239},{\"dropped_by_rate\":208},{\"dropped_by_rate\":121},{}]", +"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":258},{\"dropped_by_rate\":240},{\"dropped_by_rate\":209},{\"dropped_by_rate\":124},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,9 +17,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -33,7 +33,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } ] } ] } , @@ -41,9 +41,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -51,11 +49,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.847573 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.487513 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -68,8 +68,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -83,11 +81,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -97,9 +95,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } ] } ] } , @@ -107,19 +103,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -127,7 +123,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -136,6 +132,8 @@ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , @@ -149,9 +147,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -165,7 +161,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } ] } ] } , @@ -175,11 +171,11 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.298199 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.906006, 18.469189 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.143678 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -190,6 +186,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -203,17 +201,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.912938 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } ] } ] } , @@ -221,13 +219,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -235,15 +233,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.888813 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.987504 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } ] } ] } , @@ -251,17 +251,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.910889, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } ] } @@ -277,31 +277,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -309,11 +305,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.570705 ] } } ] } ] } , @@ -333,15 +331,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.470736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } ] } ] } , @@ -368,8 +364,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.440694 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.620794 ] } } ] } ] } , @@ -377,7 +371,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.671236 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } ] } ] } , @@ -390,8 +384,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } -, -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } ] } ] } , @@ -399,11 +391,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.764038, 17.250990 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.203491, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270142, 12.152116 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535522, 8.966471 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.900513, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } ] } @@ -415,7 +407,7 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.008667, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -423,7 +415,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701294, 45.417732 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -438,6 +432,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.916870, -15.781682 ] } } ] } ] } , @@ -445,11 +441,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.715454, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.386108, 15.300081 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.737671, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.210327, 13.149027 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.504016 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167847, 5.834616 ] } } ] } @@ -471,15 +467,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.473755, 14.716448 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.530332 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -487,7 +481,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.600894 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.651489, 26.115986 ] } } ] } @@ -508,6 +502,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.920572 ] } } ] } ] } , @@ -515,7 +511,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.335081 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.329979 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } ] } ] } , @@ -525,11 +521,13 @@ , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.521362, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389282, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783569, 3.749153 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.561401, 4.362843 ] } } ] } ] } , @@ -539,7 +537,7 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.518433, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.893426 ] } } ] } ] } , @@ -549,23 +547,23 @@ , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.916382, 52.352119 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.334106, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.519653, 47.133688 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.410278, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.000366, 52.251346 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.001587, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453003, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.442017, 43.933506 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.820812 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165161, 42.666281 ] } } ] } @@ -574,6 +572,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.750122, 59.919237 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } ] } ] } , @@ -583,7 +583,7 @@ , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.229370, -25.705888 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.318037 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.590942, -25.953106 ] } } ] } @@ -595,11 +595,11 @@ , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.360962, -3.376340 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.041870, -17.816686 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.800990 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } ] } ] } , @@ -607,11 +607,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.536011, 15.591293 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.580200, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.203491, 15.353059 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.699341, 9.031578 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.368042, 2.064982 ] } } ] } ] } , @@ -619,13 +621,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.009399, 41.108330 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.983175 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.250610, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.874976 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511108, 40.183070 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.930786, 31.952162 ] } } ] } @@ -635,11 +635,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.317993, 54.683359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.433017 ] } } +{ "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.318481, 42.682435 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.726230 ] } } ] } ] } , @@ -647,7 +647,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.933472, 60.177038 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.947970 ] } } ] } ] } , @@ -655,7 +657,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.453491, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -669,13 +671,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.861450, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.670685 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.586548, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.365845, 24.467151 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.595581, 23.614329 ] } } ] } ] } , @@ -689,7 +689,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855835, 19.015384 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.504028, 4.165637 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.953003, 6.899161 ] } } ] } @@ -701,11 +701,9 @@ , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.598992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.324585, 22.497332 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.163452, 33.701493 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.642944, 27.474161 ] } } ] } ] } , @@ -714,8 +712,6 @@ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.179343 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.296265, 41.310824 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.806783 ] } } ] } ] } , @@ -729,13 +725,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.168823, 16.783506 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.963058 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.167940 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } ] } ] } , @@ -743,7 +735,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.670991 ] } } ] } ] } , @@ -762,10 +754,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.186401, 22.309426 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , @@ -775,7 +763,9 @@ , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.437378, 31.217499 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.755005, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.569214, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.566351 ] } } ] } ] } , @@ -823,7 +813,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.445435, -18.135412 ] } } ] } ] } , @@ -831,7 +821,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.153687, 6.915521 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.381226, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.018188, 1.334718 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z4_--no-tile-stats.json b/tests/ne_110m_populated_places/out/-yNAME_-z4_--no-tile-stats.json index de0f25833..7d342c325 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z4_--no-tile-stats.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z4_--no-tile-stats.json @@ -9,7 +9,7 @@ "maxzoom": "4", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z4_--no-tile-stats.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":251},{\"dropped_by_rate\":216},{\"dropped_by_rate\":146},{}]", +"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":251},{\"dropped_by_rate\":217},{\"dropped_by_rate\":145},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,17 +17,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 145.019531, -37.788081 ] } } ] } ] } , @@ -43,11 +43,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.959961, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } ] } @@ -59,11 +59,9 @@ , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.336914, -4.346411 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.966054 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -71,21 +69,23 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.819818 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.321349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.936523, 6.882800 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.488781 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -99,9 +99,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } ] } ] } , @@ -109,7 +107,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.792254 ] } } ] } ] } , @@ -119,19 +117,19 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.140360 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.479609 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.624512, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.788574, 6.315299 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -141,13 +139,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.716788 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -155,39 +153,39 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.159668, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.824708 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.173340, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.557417 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -195,9 +193,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } +{ "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -205,21 +203,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.626465, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.130371, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.027719 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.145992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } ] } ] } , @@ -229,11 +225,9 @@ , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.179932, 33.988918 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.671236 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.615478 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -247,11 +241,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } +{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.619873, -33.045508 ] } } , { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } , { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.858890 ] } } ] } @@ -263,23 +257,23 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.003174, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.157486 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.530029, 8.971897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.380615, 15.294783 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.204834, 13.143678 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.498614 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.512451, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -291,7 +285,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -307,19 +303,17 @@ , { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.194580, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -335,21 +329,23 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.340574 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.335456 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.916013 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.821916 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.710837 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.322960 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } ] } @@ -361,31 +357,33 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.184326, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.120361, 13.517838 ] } } , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.515869, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.394775, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.256104, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.936279, 31.952162 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.358356 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.704834, 9.037003 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } ] } ] } , @@ -393,39 +391,39 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.755615, 59.916483 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.339600, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.247983 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.007080, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.816916 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } , -{ "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.436516 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } ] } ] } , @@ -433,7 +431,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -441,29 +439,31 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } +, { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.197998, 15.358356 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.319076 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.614329 ] } } +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.160158 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , @@ -473,15 +473,13 @@ , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.802819 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -489,23 +487,23 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.073486, 30.666266 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.968283 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.853271, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } +{ "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.431885, 31.212801 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.760498, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } , -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } ] } ] } , @@ -529,7 +527,7 @@ , { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.135412 ] } } , { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.302571 ] } } ] } @@ -539,9 +537,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } , +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } +, { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.757080, 35.684072 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.023682, 1.340210 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2fremove.json b/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2fremove.json index eb1c2d3bd..ab36a87b6 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2fremove.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2fremove.json @@ -9,7 +9,7 @@ "maxzoom": "4", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2fremove.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":247},{\"dropped_by_rate\":216},{\"dropped_by_rate\":146},{}]", +"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":247},{\"dropped_by_rate\":217},{\"dropped_by_rate\":145},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,17 +17,17 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 145.019531, -37.788081 ] } } ] } ] } , @@ -43,11 +43,11 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.959961, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } ] } @@ -59,11 +59,9 @@ , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.336914, -4.346411 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.966054 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -71,21 +69,23 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.819818 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.321349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.936523, 6.882800 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.488781 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -99,9 +99,7 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } ] } ] } , @@ -109,7 +107,7 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.792254 ] } } ] } ] } , @@ -119,19 +117,19 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.140360 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.479609 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.624512, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.788574, 6.315299 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -141,13 +139,13 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.716788 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -155,39 +153,39 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.159668, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.824708 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.173340, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.557417 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -195,9 +193,9 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } +{ "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -205,21 +203,19 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.626465, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.130371, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.027719 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.145992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } ] } ] } , @@ -229,11 +225,9 @@ , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.179932, 33.988918 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.671236 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.615478 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -247,11 +241,11 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } +{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.619873, -33.045508 ] } } , { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } , { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.858890 ] } } ] } @@ -263,23 +257,23 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.003174, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.157486 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.530029, 8.971897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.380615, 15.294783 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.204834, 13.143678 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.498614 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.512451, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -291,7 +285,9 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -307,19 +303,17 @@ , { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.194580, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -335,21 +329,23 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.340574 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.335456 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.916013 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.821916 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.710837 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.322960 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } ] } @@ -361,31 +357,33 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.184326, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.120361, 13.517838 ] } } , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.515869, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.394775, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.256104, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.936279, 31.952162 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.358356 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.704834, 9.037003 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } ] } ] } , @@ -393,39 +391,39 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.755615, 59.916483 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.339600, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.247983 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.007080, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.816916 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } , -{ "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.436516 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } ] } ] } , @@ -433,7 +431,7 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -441,29 +439,31 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } +, { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.197998, 15.358356 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.319076 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.614329 ] } } +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.160158 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , @@ -473,15 +473,13 @@ , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.802819 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -489,23 +487,23 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.073486, 30.666266 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.968283 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.853271, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } +{ "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.431885, 31.212801 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.760498, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } , -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } ] } ] } , @@ -529,7 +527,7 @@ , { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.135412 ] } } , { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.302571 ] } } ] } @@ -539,9 +537,11 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } , +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } +, { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.757080, 35.684072 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.023682, 1.340210 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename.json b/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename.json index 52c8d5ba8..03e7d4d26 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename.json @@ -9,7 +9,7 @@ "maxzoom": "4", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":247},{\"dropped_by_rate\":216},{\"dropped_by_rate\":146},{}]", +"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":247},{\"dropped_by_rate\":217},{\"dropped_by_rate\":145},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,17 +17,17 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 145.019531, -37.788081 ] } } ] } ] } , @@ -43,11 +43,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.959961, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } ] } @@ -59,11 +59,9 @@ , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.336914, -4.346411 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.966054 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -71,21 +69,23 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.819818 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.321349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.936523, 6.882800 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.488781 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -99,9 +99,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } ] } ] } , @@ -109,7 +107,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.792254 ] } } ] } ] } , @@ -119,19 +117,19 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.140360 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.479609 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.624512, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.788574, 6.315299 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -141,13 +139,13 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.716788 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -155,39 +153,39 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.159668, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.824708 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.173340, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.557417 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -195,9 +193,9 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } +{ "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -205,21 +203,19 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.626465, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.130371, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.027719 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.145992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } ] } ] } , @@ -229,11 +225,9 @@ , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.179932, 33.988918 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.671236 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.615478 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -247,11 +241,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } +{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.619873, -33.045508 ] } } , { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } , { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.858890 ] } } ] } @@ -263,23 +257,23 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.003174, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.157486 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.530029, 8.971897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.380615, 15.294783 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.204834, 13.143678 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.498614 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.512451, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -291,7 +285,9 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -307,19 +303,17 @@ , { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.194580, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -335,21 +329,23 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.340574 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.335456 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.916013 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.821916 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.710837 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.322960 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } ] } @@ -361,31 +357,33 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.184326, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.120361, 13.517838 ] } } , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.515869, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.394775, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.256104, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.936279, 31.952162 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.358356 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.704834, 9.037003 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } ] } ] } , @@ -393,39 +391,39 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.755615, 59.916483 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.339600, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.247983 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.007080, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.816916 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } , -{ "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.436516 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } ] } ] } , @@ -433,7 +431,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -441,29 +439,31 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } +, { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.197998, 15.358356 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.319076 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.614329 ] } } +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.160158 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , @@ -473,15 +473,13 @@ , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.802819 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -489,23 +487,23 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.073486, 30.666266 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.968283 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.853271, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } +{ "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.431885, 31.212801 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.760498, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } , -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } ] } ] } , @@ -529,7 +527,7 @@ , { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.135412 ] } } , { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.302571 ] } } ] } @@ -539,9 +537,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } , +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } +, { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.757080, 35.684072 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.023682, 1.340210 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename_-c.%2ftests%2ffilter%2frename2.json b/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename_-c.%2ftests%2ffilter%2frename2.json index 16e05a879..bed7761e0 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename_-c.%2ftests%2ffilter%2frename2.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename_-c.%2ftests%2ffilter%2frename2.json @@ -9,7 +9,7 @@ "maxzoom": "4", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename_-c.%2ftests%2ffilter%2frename2.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":247},{\"dropped_by_rate\":216},{\"dropped_by_rate\":146},{}]", +"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":247},{\"dropped_by_rate\":217},{\"dropped_by_rate\":145},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,17 +17,17 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 145.019531, -37.788081 ] } } ] } ] } , @@ -43,11 +43,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.959961, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } ] } @@ -59,11 +59,9 @@ , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.336914, -4.346411 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.966054 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -71,21 +69,23 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.819818 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.321349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.936523, 6.882800 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.488781 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -99,9 +99,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } ] } ] } , @@ -109,7 +107,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.792254 ] } } ] } ] } , @@ -119,19 +117,19 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.140360 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.479609 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.624512, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.788574, 6.315299 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -141,13 +139,13 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.716788 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -155,39 +153,39 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.159668, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.824708 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.173340, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.557417 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -195,9 +193,9 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } +{ "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -205,21 +203,19 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.626465, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.130371, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.027719 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.145992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } ] } ] } , @@ -229,11 +225,9 @@ , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.179932, 33.988918 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.671236 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.615478 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -247,11 +241,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } +{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.619873, -33.045508 ] } } , { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } , { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.858890 ] } } ] } @@ -263,23 +257,23 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.003174, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.157486 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.530029, 8.971897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.380615, 15.294783 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.204834, 13.143678 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.498614 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.512451, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -291,7 +285,9 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -307,19 +303,17 @@ , { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.194580, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -335,21 +329,23 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.340574 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.335456 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.916013 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.821916 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.710837 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.322960 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } ] } @@ -361,31 +357,33 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.184326, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.120361, 13.517838 ] } } , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.515869, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.394775, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.256104, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.936279, 31.952162 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.358356 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.704834, 9.037003 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } ] } ] } , @@ -393,39 +391,39 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.755615, 59.916483 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.339600, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.247983 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.007080, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.816916 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } , -{ "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.436516 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } ] } ] } , @@ -433,7 +431,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -441,29 +439,31 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } +, { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.197998, 15.358356 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.319076 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.614329 ] } } +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.160158 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , @@ -473,15 +473,13 @@ , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.802819 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -489,23 +487,23 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.073486, 30.666266 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.968283 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.853271, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } +{ "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.431885, 31.212801 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.760498, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } , -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } ] } ] } , @@ -529,7 +527,7 @@ , { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.135412 ] } } , { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.302571 ] } } ] } @@ -539,9 +537,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } , +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } +, { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.757080, 35.684072 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.023682, 1.340210 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5.json b/tests/ne_110m_populated_places/out/-yNAME_-z5.json index 4c415734b..3c8e679f8 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z5.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":239},{\"dropped_by_rate\":208},{\"dropped_by_rate\":121},{}]", +"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":240},{\"dropped_by_rate\":209},{\"dropped_by_rate\":124},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,9 +17,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -33,7 +33,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } ] } ] } , @@ -41,9 +41,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -51,11 +49,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.847573 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.487513 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -68,8 +68,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -83,11 +81,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -97,9 +95,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } ] } ] } , @@ -107,19 +103,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -127,7 +123,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -136,6 +132,8 @@ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , @@ -149,9 +147,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -165,7 +161,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } ] } ] } , @@ -175,11 +171,11 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.298199 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.906006, 18.469189 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.143678 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -190,6 +186,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -203,17 +201,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.912938 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } ] } ] } , @@ -221,13 +219,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -235,15 +233,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.888813 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.987504 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } ] } ] } , @@ -251,17 +251,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.910889, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } ] } @@ -277,31 +277,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -309,11 +305,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.570705 ] } } ] } ] } , @@ -333,15 +331,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.470736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } ] } ] } , @@ -368,8 +364,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.440694 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.620794 ] } } ] } ] } , @@ -377,7 +371,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.671236 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } ] } ] } , @@ -390,8 +384,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } -, -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } ] } ] } , @@ -399,11 +391,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.764038, 17.250990 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.203491, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270142, 12.152116 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535522, 8.966471 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.900513, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } ] } @@ -415,7 +407,7 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.008667, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -423,7 +415,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701294, 45.417732 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -438,6 +432,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.916870, -15.781682 ] } } ] } ] } , @@ -445,11 +441,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.715454, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.386108, 15.300081 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.737671, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.210327, 13.149027 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.504016 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167847, 5.834616 ] } } ] } @@ -471,15 +467,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.473755, 14.716448 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.530332 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -487,7 +481,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.600894 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.651489, 26.115986 ] } } ] } @@ -508,6 +502,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.920572 ] } } ] } ] } , @@ -515,7 +511,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.335081 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.329979 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } ] } ] } , @@ -525,11 +521,13 @@ , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.521362, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389282, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783569, 3.749153 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.561401, 4.362843 ] } } ] } ] } , @@ -539,7 +537,7 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.518433, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.893426 ] } } ] } ] } , @@ -549,23 +547,23 @@ , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.916382, 52.352119 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.334106, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.519653, 47.133688 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.410278, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.000366, 52.251346 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.001587, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453003, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.442017, 43.933506 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.820812 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165161, 42.666281 ] } } ] } @@ -574,6 +572,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.750122, 59.919237 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } ] } ] } , @@ -583,7 +583,7 @@ , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.229370, -25.705888 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.318037 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.590942, -25.953106 ] } } ] } @@ -595,11 +595,11 @@ , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.360962, -3.376340 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.041870, -17.816686 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.800990 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } ] } ] } , @@ -607,11 +607,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.536011, 15.591293 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.580200, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.203491, 15.353059 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.699341, 9.031578 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.368042, 2.064982 ] } } ] } ] } , @@ -619,13 +621,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.009399, 41.108330 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.983175 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.250610, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.874976 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511108, 40.183070 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.930786, 31.952162 ] } } ] } @@ -635,11 +635,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.317993, 54.683359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.433017 ] } } +{ "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.318481, 42.682435 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.726230 ] } } ] } ] } , @@ -647,7 +647,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.933472, 60.177038 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.947970 ] } } ] } ] } , @@ -655,7 +657,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.453491, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -669,13 +671,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.861450, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.670685 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.586548, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.365845, 24.467151 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.595581, 23.614329 ] } } ] } ] } , @@ -689,7 +689,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855835, 19.015384 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.504028, 4.165637 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.953003, 6.899161 ] } } ] } @@ -701,11 +701,9 @@ , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.598992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.324585, 22.497332 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.163452, 33.701493 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.642944, 27.474161 ] } } ] } ] } , @@ -714,8 +712,6 @@ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.179343 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.296265, 41.310824 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.806783 ] } } ] } ] } , @@ -729,13 +725,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.168823, 16.783506 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.963058 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.167940 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } ] } ] } , @@ -743,7 +735,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.670991 ] } } ] } ] } , @@ -762,10 +754,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.186401, 22.309426 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , @@ -775,7 +763,9 @@ , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.437378, 31.217499 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.755005, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.569214, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.566351 ] } } ] } ] } , @@ -823,7 +813,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.445435, -18.135412 ] } } ] } ] } , @@ -831,7 +821,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.153687, 6.915521 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.381226, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.018188, 1.334718 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-denser_60.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-denser_60.json index 99f4ad7f8..0068916c3 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-denser_60.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-denser_60.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-denser_60.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":261},{\"dropped_by_rate\":241},{\"dropped_by_rate\":218},{\"dropped_by_rate\":139},{}]", +"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":241},{\"dropped_by_rate\":216},{\"dropped_by_rate\":138},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -44,8 +44,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.933227 ] } } ] } ] } , @@ -55,9 +53,9 @@ , { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.766602, 59.910976 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.947266, 31.952162 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.933227 ] } } +{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } ] } ] } , @@ -89,7 +87,7 @@ , { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.758789, 41.836828 ] } } , -{ "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } , { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.923554 ] } } , @@ -100,8 +98,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.955187 ] } } ] } ] } , @@ -111,9 +107,9 @@ , { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.921990 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.925293, 31.952162 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } , { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.774414, 38.565348 ] } } ] } @@ -134,6 +130,8 @@ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.916342 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } ] } ] } , @@ -171,12 +169,14 @@ , { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.790000 ] } } , -{ "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } +{ "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } , { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.298199 ] } } , { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.853027, 17.119793 ] } } , +{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +, { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } ] } ] } @@ -196,6 +196,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.912938 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } ] } ] } , @@ -212,8 +214,6 @@ { "type": "Feature", "properties": { "NAME": "Luanda" }, "geometry": { "type": "Point", "coordinates": [ 13.238525, -8.841651 ] } } , { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.955187 ] } } ] } ] } , @@ -221,9 +221,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } , -{ "type": "Feature", "properties": { "NAME": "Porto-Novo" }, "geometry": { "type": "Point", "coordinates": [ 2.614746, 6.479067 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.936279, 31.952162 ] } } +{ "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } ] } ] } , @@ -233,9 +231,11 @@ , { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.916483 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } , { "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.380127, 43.850374 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.436516 ] } } ] } ] } , @@ -263,9 +263,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.433105, 51.179343 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.586182, 42.875964 ] } } +{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } ] } ] } , @@ -283,7 +283,9 @@ , { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.073486, 30.666266 ] } } , -{ "type": "Feature", "properties": { "NAME": "Phnom Penh" }, "geometry": { "type": "Point", "coordinates": [ 104.919434, 11.555380 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.853271, 21.033237 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.574951, 16.425548 ] } } , { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } ] } @@ -317,9 +319,9 @@ , { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } -, { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.148193, 6.915521 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } ] } ] } , @@ -383,7 +385,7 @@ , { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.083862, 9.936388 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.766968, 17.973508 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } , { "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.086304, 4.598327 ] } } , @@ -395,7 +397,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.402466, 33.829357 ] } } , +{ "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } +, { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.790000 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.349243, 25.080624 ] } } ] } ] } , @@ -427,7 +433,7 @@ , { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.847534, 17.114543 ] } } , -{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } +{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.737671, 12.050065 ] } } , { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.649811 ] } } ] } @@ -449,7 +455,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.473755, 14.716448 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.530332 ] } } +{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } , { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } @@ -499,7 +505,7 @@ , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.219482, 6.135093 ] } } , -{ "type": "Feature", "properties": { "NAME": "Porto-Novo" }, "geometry": { "type": "Point", "coordinates": [ 2.620239, 6.484525 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } , { "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.459229, 0.384519 ] } } ] } @@ -517,9 +523,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.334106, 50.833698 ] } } , -{ "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.562866, 55.680682 ] } } +{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.000366, 52.251346 ] } } , { "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.385620, 43.850374 ] } } ] } @@ -530,8 +538,6 @@ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.750122, 59.919237 ] } } , { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } -, -{ "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.562866, 55.680682 ] } } ] } ] } , @@ -549,7 +555,7 @@ , { "type": "Feature", "properties": { "NAME": "Lusaka" }, "geometry": { "type": "Point", "coordinates": [ 28.284302, -15.416615 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.184246 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } , { "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } ] } @@ -559,7 +565,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.536011, 15.591293 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.699341, 9.031578 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } ] } ] } , @@ -567,10 +573,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.009399, 41.108330 ] } } , -{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.250610, 30.050077 ] } } -, { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.771729, 32.082575 ] } } , +{ "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.874976 ] } } +, { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.930786, 31.952162 ] } } ] } ] } @@ -615,7 +621,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.861450, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.277710, 25.229789 ] } } +{ "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.386841, 37.948529 ] } } , { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.595581, 23.614329 ] } } ] } @@ -631,6 +637,8 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855835, 19.015384 ] } } , +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.504028, 4.165637 ] } } +, { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.859619, 6.931880 ] } } ] } ] } @@ -639,8 +647,6 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.774414, 38.561053 ] } } , -{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.163452, 33.701493 ] } } -, { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.598992 ] } } , { "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.314331, 27.717573 ] } } @@ -653,8 +659,6 @@ , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.296265, 41.310824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.586182, 42.875964 ] } } -, { "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.806783 ] } } ] } ] } @@ -673,7 +677,7 @@ , { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.963058 ] } } , -{ "type": "Feature", "properties": { "NAME": "Phnom Penh" }, "geometry": { "type": "Point", "coordinates": [ 104.913940, 11.549998 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.167940 ] } } ] } @@ -703,6 +707,8 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.186401, 22.309426 ] } } , +{ "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.569458, 16.430816 ] } } +, { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } ] } ] } @@ -714,8 +720,6 @@ { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.437378, 31.217499 ] } } , { "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.755005, 39.019184 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.566351 ] } } ] } ] } , @@ -773,7 +777,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.153687, 6.915521 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.018188, 1.334718 ] } } +{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.381226, 7.100893 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-smallest-as-needed.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-smallest-as-needed.json index 74f0f9836..b55edce42 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-smallest-as-needed.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-smallest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":239},{\"dropped_by_rate\":208},{\"dropped_by_rate\":121},{}]", +"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":240},{\"dropped_by_rate\":209},{\"dropped_by_rate\":124},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,9 +17,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -33,7 +33,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } ] } ] } , @@ -41,9 +41,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -51,11 +49,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.847573 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.487513 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -68,8 +68,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -83,11 +81,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -97,9 +95,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } ] } ] } , @@ -107,19 +103,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -127,7 +123,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -136,6 +132,8 @@ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , @@ -149,9 +147,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -165,7 +161,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } ] } ] } , @@ -175,11 +171,11 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.298199 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.906006, 18.469189 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.143678 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -190,6 +186,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -203,17 +201,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.912938 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } ] } ] } , @@ -221,13 +219,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -235,15 +233,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.888813 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.987504 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } ] } ] } , @@ -251,17 +251,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.910889, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } ] } @@ -277,31 +277,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -309,11 +305,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.570705 ] } } ] } ] } , @@ -333,15 +331,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.470736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } ] } ] } , @@ -368,8 +364,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.440694 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.620794 ] } } ] } ] } , @@ -377,7 +371,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.671236 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } ] } ] } , @@ -390,8 +384,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } -, -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } ] } ] } , @@ -399,11 +391,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.764038, 17.250990 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.203491, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270142, 12.152116 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535522, 8.966471 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.900513, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } ] } @@ -415,7 +407,7 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.008667, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -423,7 +415,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701294, 45.417732 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -438,6 +432,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.916870, -15.781682 ] } } ] } ] } , @@ -445,11 +441,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.715454, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.386108, 15.300081 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.737671, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.210327, 13.149027 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.504016 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167847, 5.834616 ] } } ] } @@ -471,15 +467,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.473755, 14.716448 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.530332 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -487,7 +481,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.600894 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.651489, 26.115986 ] } } ] } @@ -508,6 +502,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.920572 ] } } ] } ] } , @@ -515,7 +511,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.335081 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.329979 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } ] } ] } , @@ -525,11 +521,13 @@ , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.521362, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389282, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783569, 3.749153 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.561401, 4.362843 ] } } ] } ] } , @@ -539,7 +537,7 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.518433, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.893426 ] } } ] } ] } , @@ -549,23 +547,23 @@ , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.916382, 52.352119 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.334106, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.519653, 47.133688 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.410278, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.000366, 52.251346 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.001587, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453003, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.442017, 43.933506 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.820812 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165161, 42.666281 ] } } ] } @@ -574,6 +572,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.750122, 59.919237 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } ] } ] } , @@ -583,7 +583,7 @@ , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.229370, -25.705888 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.318037 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.590942, -25.953106 ] } } ] } @@ -595,11 +595,11 @@ , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.360962, -3.376340 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.041870, -17.816686 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.800990 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } ] } ] } , @@ -607,11 +607,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.536011, 15.591293 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.580200, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.203491, 15.353059 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.699341, 9.031578 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.368042, 2.064982 ] } } ] } ] } , @@ -619,13 +621,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.009399, 41.108330 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.983175 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.250610, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.874976 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511108, 40.183070 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.930786, 31.952162 ] } } ] } @@ -635,11 +635,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.317993, 54.683359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.433017 ] } } +{ "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.318481, 42.682435 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.726230 ] } } ] } ] } , @@ -647,7 +647,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.933472, 60.177038 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.947970 ] } } ] } ] } , @@ -655,7 +657,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.453491, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -669,13 +671,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.861450, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.670685 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.586548, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.365845, 24.467151 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.595581, 23.614329 ] } } ] } ] } , @@ -689,7 +689,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855835, 19.015384 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.504028, 4.165637 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.953003, 6.899161 ] } } ] } @@ -701,11 +701,9 @@ , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.598992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.324585, 22.497332 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.163452, 33.701493 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.642944, 27.474161 ] } } ] } ] } , @@ -714,8 +712,6 @@ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.179343 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.296265, 41.310824 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.806783 ] } } ] } ] } , @@ -729,13 +725,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.168823, 16.783506 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.963058 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.167940 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } ] } ] } , @@ -743,7 +735,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.670991 ] } } ] } ] } , @@ -762,10 +754,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.186401, 22.309426 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , @@ -775,7 +763,9 @@ , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.437378, 31.217499 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.755005, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.569214, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.566351 ] } } ] } ] } , @@ -823,7 +813,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.445435, -18.135412 ] } } ] } ] } , @@ -831,7 +821,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.153687, 6.915521 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.381226, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.018188, 1.334718 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_--preserve-point-density-threshold_8.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_--preserve-point-density-threshold_8.json index e4d008eb9..ab83de8cd 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_--preserve-point-density-threshold_8.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_--preserve-point-density-threshold_8.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z5_--preserve-point-density-threshold_8.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":221},{\"dropped_by_rate\":213},{\"dropped_by_rate\":148},{\"dropped_by_rate\":73},{\"dropped_by_rate\":26},{}]", +"strategies": "[{\"dropped_by_rate\":223},{\"dropped_by_rate\":217},{\"dropped_by_rate\":152},{\"dropped_by_rate\":83},{\"dropped_by_rate\":38},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,7 +17,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +{ "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.941406, 39.707187 ] } } , { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.714844, 41.836828 ] } } , @@ -35,8 +35,6 @@ , { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.916485 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } -, { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.455078, 51.179343 ] } } , { "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.519531, 12.983148 ] } } @@ -49,8 +47,6 @@ , { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.214943 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } -, { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.653080 ] } } , { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.787109, -6.140555 ] } } @@ -72,6 +68,8 @@ { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } , { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.242188, -22.917923 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ -181.538086, -18.145852 ] } } ] } ] } , @@ -101,7 +99,7 @@ , { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.640338 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } , @@ -117,8 +115,6 @@ , { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.094727, -22.553147 ] } } , { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.966054 ] } } @@ -133,9 +129,7 @@ , { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.171875, -33.906896 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -36.844461 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.461914, -18.145852 ] } } , { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -41.310824 ] } } ] } @@ -147,7 +141,7 @@ , { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.766602, 59.910976 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.426758, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.673831 ] } } , @@ -155,8 +149,6 @@ , { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.879587 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } -, { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } , { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } @@ -167,8 +159,6 @@ , { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } -, { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.351562, 2.064982 ] } } , { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.613459 ] } } @@ -196,6 +186,8 @@ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.145992 ] } } , { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ -181.560059, -18.124971 ] } } ] } ] } , @@ -210,8 +202,6 @@ { "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.661333 ] } } , { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -251,15 +241,13 @@ , { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.209473, 14.093957 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } -, { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.089355, 9.925566 ] } } , { "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } , { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , @@ -277,7 +265,9 @@ , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.361466 ] } } +{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.640338 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -287,9 +277,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.094727, -22.573438 ] } } , @@ -301,9 +291,7 @@ , { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } +{ "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.905762, -24.647017 ] } } , { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.609278 ] } } , @@ -315,19 +303,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.538086, 12.361466 ] } } -, { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.921990 ] } } , { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.254709 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } , { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } , @@ -335,8 +321,6 @@ , { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.312988, 42.682435 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } -, { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.722131 ] } } , { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.054199, 36.756490 ] } } @@ -347,8 +331,6 @@ , { "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } -, { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.103781 ] } } , { "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } @@ -361,7 +343,7 @@ , { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.541504, 15.580711 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.307616 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.347762 ] } } , @@ -373,7 +355,7 @@ , { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.525879, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.604262 ] } } , @@ -389,8 +371,6 @@ , { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.848633, 6.926427 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } -, { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } ] } ] } @@ -415,6 +395,8 @@ , { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.515836 ] } } , +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.124971 ] } } +, { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -36.844461 ] } } , { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.792480, -41.294317 ] } } @@ -474,8 +456,6 @@ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } , { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -525,8 +505,6 @@ , { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.220459, 14.104613 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } -, { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.089355, 9.936388 ] } } , { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.761475, 17.978733 ] } } @@ -539,7 +517,7 @@ , { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.853027, 17.119793 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Bridgetown" }, "geometry": { "type": "Point", "coordinates": [ -59.611816, 13.100880 ] } } , { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.512451, 10.649811 ] } } , @@ -609,9 +587,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } , @@ -636,10 +614,6 @@ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.916748, -24.647017 ] } } , { "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.223877, -25.710837 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } ] } ] } , @@ -647,6 +621,8 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } , +{ "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } +, { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.014893, 41.104191 ] } } , { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.054199, 36.765292 ] } } @@ -655,8 +631,6 @@ , { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.888813 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } -, { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.120361, 13.517838 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.219482, 6.129631 ] } } @@ -665,8 +639,6 @@ , { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } -, { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } , { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } @@ -683,8 +655,6 @@ , { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.771729, 32.082575 ] } } , -{ "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } -, { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } , { "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } @@ -693,6 +663,8 @@ , { "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } , +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } +, { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.337167 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.358356 ] } } @@ -715,15 +687,13 @@ , { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.273682, 52.079506 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.910889, 52.348763 ] } } -, { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } , { "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.496403 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } , -{ "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.568359, 55.677584 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , @@ -733,11 +703,11 @@ , { "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.202710 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116699, 48.151428 ] } } , { "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.380127, 43.850374 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } , { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } , @@ -747,8 +717,6 @@ , { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.312988, 42.682435 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } -, { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.014893, 41.104191 ] } } , { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } @@ -785,7 +753,7 @@ , { "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , -{ "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } +{ "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.381348, 37.952861 ] } } , { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.590088, 23.614329 ] } } , @@ -809,8 +777,6 @@ , { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.859619, 6.926427 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } -, { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } @@ -849,8 +815,6 @@ , { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } -, { "type": "Feature", "properties": { "NAME": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.513916, 13.752725 ] } } , { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.968283 ] } } @@ -867,7 +831,7 @@ , { "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.570705 ] } } , { "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.574951, 16.425548 ] } } , @@ -919,8 +883,6 @@ , { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } -, { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.148193, 6.915521 ] } } , { "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } @@ -991,8 +953,6 @@ , { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.220459, 14.104613 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.203491, 13.710035 ] } } -, { "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270142, 12.152116 ] } } , { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.083862, 9.936388 ] } } @@ -1067,6 +1027,8 @@ , { "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.737671, 12.050065 ] } } , +{ "type": "Feature", "properties": { "NAME": "Bridgetown" }, "geometry": { "type": "Point", "coordinates": [ -59.617310, 13.100880 ] } } +, { "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.504016 ] } } , { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.649811 ] } } @@ -1157,8 +1119,6 @@ , { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.329979 ] } } -, { "type": "Feature", "properties": { "NAME": "Luanda" }, "geometry": { "type": "Point", "coordinates": [ 13.233032, -8.836223 ] } } ] } ] } @@ -1171,16 +1131,12 @@ , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.219482, 6.135093 ] } } , -{ "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.521362, 6.402648 ] } } -, { "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389282, 6.446318 ] } } , { "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } , { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783569, 3.749153 ] } } -, { "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.459229, 0.384519 ] } } , { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } @@ -1198,8 +1154,6 @@ { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.800488 ] } } , { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.893426 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.518433, 35.897950 ] } } ] } ] } , @@ -1209,8 +1163,6 @@ , { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.273682, 52.079506 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.916382, 52.352119 ] } } -, { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } , { "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.334595, 48.868328 ] } } @@ -1239,15 +1191,11 @@ , { "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116699, 48.147763 ] } } , -{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } -, { "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.385620, 43.850374 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.820812 ] } } , { "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165161, 42.666281 ] } } ] } ] } , @@ -1270,8 +1218,6 @@ { "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.229370, -25.705888 ] } } , { "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.318037 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.590942, -25.953106 ] } } ] } ] } , @@ -1333,13 +1279,9 @@ , { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.771729, 32.082575 ] } } , -{ "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.874976 ] } } -, { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511108, 40.183070 ] } } , { "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.930786, 31.952162 ] } } ] } ] } , @@ -1407,8 +1349,6 @@ , { "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.277710, 25.229789 ] } } , -{ "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.365845, 24.467151 ] } } -, { "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.386841, 37.948529 ] } } , { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.595581, 23.614329 ] } } @@ -1430,8 +1370,6 @@ { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.504028, 4.165637 ] } } , { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.859619, 6.931880 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.953003, 6.899161 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json index 88ae749fc..56a005e41 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":227},{\"dropped_by_rate\":227},{\"dropped_by_rate\":152},{},{},{}]", +"strategies": "[{\"dropped_by_rate\":227},{\"dropped_by_rate\":227},{\"dropped_by_rate\":154},{},{},{}]", "tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" @@ -18,35 +18,35 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.752725 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.699219, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.380028 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.175781 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 43.961191 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.457504 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.558594, 9.102097 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.358062 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.449790 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.115234, 6.926427 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.750000, -14.008696 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.931641, -37.788081 ] } } ] } ] } , @@ -56,7 +56,7 @@ , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.656250, -25.284438 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } ] } ] } , @@ -64,23 +64,23 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.120154 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.959961, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.916992, 18.479609 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.151367, 5.834616 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.602539, 33.614619 ] } } +{ "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.413496 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.795535 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } ] } @@ -92,17 +92,15 @@ , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.966054 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.313113 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +{ "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -110,47 +108,49 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.847573 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.536273 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.650122 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.809122 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.673831 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.879587 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.514648, 9.102097 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.996163 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.346411 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.321349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.579084 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.447150 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.613459 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.687782 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.936523, 6.882800 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.488781 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 16.804541 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.108398, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.771484, 39.027719 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.045792 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.926427 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } ] } @@ -160,7 +160,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.145992 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ -181.560059, -18.124971 ] } } ] } ] } , @@ -170,13 +170,11 @@ , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.190918, 33.998027 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.661333 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } , { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -184,11 +182,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.159180, -16.488765 ] } } +{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.045508 ] } } , { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.792254 ] } } , { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.849875 ] } } ] } @@ -198,47 +196,45 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.431152, 43.707594 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.375488, 23.140360 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.908133 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.146746 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.971897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.479609 ] } } , { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.305380 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.906738, 10.509417 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +{ "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } , { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.205566, 27.156920 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.624512, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } +{ "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.640338 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.361466 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.788574, 6.315299 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -248,25 +244,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.329588 ] } } +, { "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.094727, -22.573438 ] } } +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.925130 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.811456 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.274309 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.113775 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.700938 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.526855, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.159098 ] } } ] } ] } , @@ -274,93 +272,93 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.538086, 12.361466 ] } } , -{ "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.921990 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.254709 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.195387 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.472097 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.456543, 44.824708 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.159668, 42.666281 ] } } , -{ "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.719238, 59.433903 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } , { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.722131 ] } } , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.173340, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.906849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.898038 ] } } , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.526855, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.383789, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.103781 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.376465, 35.173808 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.925293, 31.952162 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.307616 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.347762 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.693848, 9.037003 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.557417 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.583008, 43.802819 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.525879, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.604262 ] } } +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.373535, 2.064982 ] } } , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.191895, 34.524661 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.961736 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.171115 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.274309 ] } } ] } ] } , @@ -368,13 +366,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } +{ "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } , { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.124971 ] } } , { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.792480, -41.294317 ] } } ] } @@ -384,29 +382,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.062500, 30.675715 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.108398, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.612305, 17.957832 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.842285, 21.043491 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } +{ "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.442871, 31.222197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.027719 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } , { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } , -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.493196 ] } } +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.759666 ] } } , { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.904614 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%2ftests%2ffilter%2frename.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%2ftests%2ffilter%2frename.json index 492f8076f..521df6b4d 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%2ftests%2ffilter%2frename.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%2ftests%2ffilter%2frename.json @@ -5,11 +5,11 @@ "description": "tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%2ftests%2ffilter%2frename.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%2ftests%2ffilter%2frename.json.check.mbtiles -yNAME -z5 -c./tests/filter/rename tests/ne_110m_populated_places/in.json", -"json": "{\"vector_layers\":[{\"id\":\"renamed\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":5,\"fields\":{\"NAME\":\"String\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"renamed\",\"count\":493,\"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\"]}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"renamed\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":5,\"fields\":{\"NAME\":\"String\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"renamed\",\"count\":488,\"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": "5", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%2ftests%2ffilter%2frename.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":239},{\"dropped_by_rate\":208},{\"dropped_by_rate\":121},{}]", +"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":240},{\"dropped_by_rate\":209},{\"dropped_by_rate\":124},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,9 +17,9 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -33,7 +33,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } ] } ] } , @@ -41,9 +41,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -51,11 +49,13 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.847573 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.487513 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -68,8 +68,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -83,11 +81,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -97,9 +95,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } ] } ] } , @@ -107,19 +103,19 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -127,7 +123,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -136,6 +132,8 @@ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , @@ -149,9 +147,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -165,7 +161,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } ] } ] } , @@ -175,11 +171,11 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.298199 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.906006, 18.469189 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.143678 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -190,6 +186,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -203,17 +201,17 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.912938 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } ] } ] } , @@ -221,13 +219,13 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -235,15 +233,17 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.888813 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.987504 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } ] } ] } , @@ -251,17 +251,17 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.910889, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } ] } @@ -277,31 +277,27 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -309,11 +305,13 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.570705 ] } } ] } ] } , @@ -333,15 +331,13 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.470736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } ] } ] } , @@ -368,8 +364,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.440694 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.620794 ] } } ] } ] } , @@ -377,7 +371,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.671236 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } ] } ] } , @@ -390,8 +384,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } -, -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } ] } ] } , @@ -399,11 +391,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.764038, 17.250990 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.203491, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270142, 12.152116 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535522, 8.966471 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.900513, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } ] } @@ -415,7 +407,7 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.008667, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -423,7 +415,9 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701294, 45.417732 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -438,6 +432,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.916870, -15.781682 ] } } ] } ] } , @@ -445,11 +441,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.715454, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.386108, 15.300081 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.737671, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.210327, 13.149027 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.504016 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167847, 5.834616 ] } } ] } @@ -471,15 +467,13 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.473755, 14.716448 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.530332 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -487,7 +481,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.600894 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.651489, 26.115986 ] } } ] } @@ -508,6 +502,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.920572 ] } } ] } ] } , @@ -515,7 +511,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.335081 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.329979 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } ] } ] } , @@ -525,11 +521,13 @@ , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.521362, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389282, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783569, 3.749153 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.561401, 4.362843 ] } } ] } ] } , @@ -539,7 +537,7 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.518433, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.893426 ] } } ] } ] } , @@ -549,23 +547,23 @@ , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.916382, 52.352119 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.334106, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.519653, 47.133688 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.410278, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.000366, 52.251346 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.001587, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453003, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.442017, 43.933506 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.820812 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165161, 42.666281 ] } } ] } @@ -574,6 +572,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.750122, 59.919237 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } ] } ] } , @@ -583,7 +583,7 @@ , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.229370, -25.705888 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.318037 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.590942, -25.953106 ] } } ] } @@ -595,11 +595,11 @@ , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.360962, -3.376340 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.041870, -17.816686 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.800990 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } ] } ] } , @@ -607,11 +607,13 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.536011, 15.591293 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.580200, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.203491, 15.353059 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.699341, 9.031578 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.368042, 2.064982 ] } } ] } ] } , @@ -619,13 +621,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.009399, 41.108330 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.983175 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.250610, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.874976 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511108, 40.183070 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.930786, 31.952162 ] } } ] } @@ -635,11 +635,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.317993, 54.683359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.433017 ] } } +{ "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.318481, 42.682435 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.726230 ] } } ] } ] } , @@ -647,7 +647,9 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.933472, 60.177038 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.947970 ] } } ] } ] } , @@ -655,7 +657,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.453491, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -669,13 +671,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.861450, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.670685 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.586548, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.365845, 24.467151 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.595581, 23.614329 ] } } ] } ] } , @@ -689,7 +689,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855835, 19.015384 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.504028, 4.165637 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.953003, 6.899161 ] } } ] } @@ -701,11 +701,9 @@ , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.598992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.324585, 22.497332 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.163452, 33.701493 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.642944, 27.474161 ] } } ] } ] } , @@ -714,8 +712,6 @@ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.179343 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.296265, 41.310824 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.806783 ] } } ] } ] } , @@ -729,13 +725,9 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.168823, 16.783506 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.963058 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.167940 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } ] } ] } , @@ -743,7 +735,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.670991 ] } } ] } ] } , @@ -762,10 +754,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.186401, 22.309426 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , @@ -775,7 +763,9 @@ , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.437378, 31.217499 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.755005, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.569214, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.566351 ] } } ] } ] } , @@ -823,7 +813,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.445435, -18.135412 ] } } ] } ] } , @@ -831,7 +821,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.153687, 6.915521 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.381226, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.018188, 1.334718 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json index 9e68f9e4d..928cf3dd1 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json @@ -5,11 +5,11 @@ "description": "tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json.check.mbtiles -yNAME -z5 -ccat tests/ne_110m_populated_places/in.json", -"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":5,\"fields\":{\"NAME\":\"String\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":493,\"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\"]}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":5,\"fields\":{\"NAME\":\"String\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":488,\"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": "5", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":239},{\"dropped_by_rate\":208},{\"dropped_by_rate\":121},{}]", +"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":240},{\"dropped_by_rate\":209},{\"dropped_by_rate\":124},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,9 +17,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -33,7 +33,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } ] } ] } , @@ -41,9 +41,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -51,11 +49,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.847573 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.487513 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -68,8 +68,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -83,11 +81,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -97,9 +95,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } ] } ] } , @@ -107,19 +103,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -127,7 +123,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -136,6 +132,8 @@ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , @@ -149,9 +147,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -165,7 +161,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } ] } ] } , @@ -175,11 +171,11 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.298199 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.906006, 18.469189 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.143678 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -190,6 +186,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -203,17 +201,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.912938 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } ] } ] } , @@ -221,13 +219,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -235,15 +233,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.888813 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.987504 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } ] } ] } , @@ -251,17 +251,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.910889, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } ] } @@ -277,31 +277,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -309,11 +305,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.570705 ] } } ] } ] } , @@ -333,15 +331,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.470736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } ] } ] } , @@ -368,8 +364,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.440694 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.620794 ] } } ] } ] } , @@ -377,7 +371,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.671236 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } ] } ] } , @@ -390,8 +384,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } -, -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } ] } ] } , @@ -399,11 +391,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.764038, 17.250990 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.203491, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270142, 12.152116 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535522, 8.966471 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.900513, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } ] } @@ -415,7 +407,7 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.008667, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -423,7 +415,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701294, 45.417732 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -438,6 +432,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.916870, -15.781682 ] } } ] } ] } , @@ -445,11 +441,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.715454, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.386108, 15.300081 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.737671, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.210327, 13.149027 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.504016 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167847, 5.834616 ] } } ] } @@ -471,15 +467,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.473755, 14.716448 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.530332 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -487,7 +481,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.600894 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.651489, 26.115986 ] } } ] } @@ -508,6 +502,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.920572 ] } } ] } ] } , @@ -515,7 +511,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.335081 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.329979 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } ] } ] } , @@ -525,11 +521,13 @@ , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.521362, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389282, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783569, 3.749153 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.561401, 4.362843 ] } } ] } ] } , @@ -539,7 +537,7 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.518433, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.893426 ] } } ] } ] } , @@ -549,23 +547,23 @@ , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.916382, 52.352119 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.334106, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.519653, 47.133688 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.410278, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.000366, 52.251346 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.001587, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453003, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.442017, 43.933506 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.820812 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165161, 42.666281 ] } } ] } @@ -574,6 +572,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.750122, 59.919237 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } ] } ] } , @@ -583,7 +583,7 @@ , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.229370, -25.705888 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.318037 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.590942, -25.953106 ] } } ] } @@ -595,11 +595,11 @@ , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.360962, -3.376340 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.041870, -17.816686 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.800990 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } ] } ] } , @@ -607,11 +607,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.536011, 15.591293 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.580200, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.203491, 15.353059 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.699341, 9.031578 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.368042, 2.064982 ] } } ] } ] } , @@ -619,13 +621,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.009399, 41.108330 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.983175 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.250610, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.874976 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511108, 40.183070 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.930786, 31.952162 ] } } ] } @@ -635,11 +635,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.317993, 54.683359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.433017 ] } } +{ "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.318481, 42.682435 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.726230 ] } } ] } ] } , @@ -647,7 +647,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.933472, 60.177038 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.947970 ] } } ] } ] } , @@ -655,7 +657,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.453491, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -669,13 +671,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.861450, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.670685 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.586548, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.365845, 24.467151 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.595581, 23.614329 ] } } ] } ] } , @@ -689,7 +689,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855835, 19.015384 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.504028, 4.165637 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.953003, 6.899161 ] } } ] } @@ -701,11 +701,9 @@ , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.598992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.324585, 22.497332 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.163452, 33.701493 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.642944, 27.474161 ] } } ] } ] } , @@ -714,8 +712,6 @@ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.179343 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.296265, 41.310824 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.806783 ] } } ] } ] } , @@ -729,13 +725,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.168823, 16.783506 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.963058 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.167940 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } ] } ] } , @@ -743,7 +735,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.670991 ] } } ] } ] } , @@ -762,10 +754,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.186401, 22.309426 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , @@ -775,7 +763,9 @@ , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.437378, 31.217499 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.755005, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.569214, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.566351 ] } } ] } ] } , @@ -823,7 +813,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.445435, -18.135412 ] } } ] } ] } , @@ -831,7 +821,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.153687, 6.915521 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.381226, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.018188, 1.334718 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json index b7573c2f1..cd5ebf048 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":211},{\"dropped_by_rate\":214},{\"dropped_by_rate\":179},{\"dropped_by_rate\":138},{\"dropped_by_rate\":70},{}]", +"strategies": "[{\"dropped_by_rate\":211},{\"dropped_by_rate\":214},{\"dropped_by_rate\":180},{\"dropped_by_rate\":137},{\"dropped_by_rate\":71},{}]", "tippecanoe_decisions": "{\"basezoom\":5,\"droprate\":1.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" @@ -20,65 +20,65 @@ , { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } , -{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.873047, 18.479609 ] } } +{ "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.928487 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } , -{ "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.972656, 64.168107 ] } } +{ "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.195312, 5.790897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.855469, 34.016242 ] } } , -{ "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.353521 ] } } +{ "type": "Feature", "properties": { "NAME": "Freetown" }, "geometry": { "type": "Point", "coordinates": [ -13.271484, 8.494105 ] } } , -{ "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } +{ "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -175.253906, -21.125498 ], [ 184.746094, -21.125498 ] ] } } , -{ "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.359375, -34.597042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "NAME": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 50.064192 ] } } +{ "type": "Feature", "properties": { "NAME": "Bern" }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.828799 ] } } +{ "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 46.073231 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.863281, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.369141, 43.834527 ] } } , { "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.871094, 39.909736 ] } } +{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.472656, 40.178873 ] } } +{ "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.804688, 32.101190 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.368950 ] } } +{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } , { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.455078, 51.179343 ] } } , -{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.503906, 25.324167 ] } } +{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.625000, 26.273714 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.167969, 28.613459 ] } } +{ "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.169922, 34.524661 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.875000, 47.931066 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.519531, 12.983148 ] } } , { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 16.804541 ] } } , -{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.005973 ] } } +{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.886719, 1.318243 ] } } , -{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } +{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 121.025391, 14.604847 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.050781, -22.593726 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 173.056641, 1.318243 ], [ -186.943359, 1.318243 ] ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.025391, -17.811456 ] } } +{ "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.337954 ] } } , { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.686952 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } , -{ "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.726562, -36.879621 ], [ -185.273438, -36.879621 ] ] } } +{ "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.171875, -33.943360 ] } } ] } ] } , @@ -86,11 +86,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.125498 ] } } , -{ "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } -, { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.063924 ] } } , -{ "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.403320, -34.597042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } ] } ] } , @@ -98,29 +96,29 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.361328, 29.802518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.418945, 33.833920 ] } } +{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.959961, 40.747257 ] } } , { "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.168226 ] } } , -{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.916992, 18.479609 ] } } +{ "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.971897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } , -{ "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.928711, 64.148952 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } , -{ "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } +{ "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.151367, 5.834616 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.855469, 34.016242 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.611328, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.309766 ] } } +{ "type": "Feature", "properties": { "NAME": "Freetown" }, "geometry": { "type": "Point", "coordinates": [ -13.227539, 8.450639 ] } } , -{ "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.864715 ] } } +{ "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.538086, 42.488302 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } ] } @@ -130,25 +128,23 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.448242, 0.395505 ] } } -, { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.094727, -22.553147 ] } } +{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.842773, 1.318243 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.025391, -17.811456 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.012695, 1.318243 ] } } , -{ "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.647017 ] } } +{ "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.287109, -6.795535 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maseru" }, "geometry": { "type": "Point", "coordinates": [ 27.465820, -29.305561 ] } } +{ "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.647017 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } , { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } , -{ "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -36.844461 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.171875, -33.906896 ] } } ] } ] } , @@ -156,57 +152,61 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.864715 ] } } +{ "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.538086, 42.488302 ] } } , -{ "type": "Feature", "properties": { "NAME": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.458008, 50.092393 ] } } +{ "type": "Feature", "properties": { "NAME": "Bern" }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } +{ "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 46.042736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.487513 ] } } +{ "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.136767 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.369141, 43.834527 ] } } , { "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.433780 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.448242, 0.395505 ] } } +{ "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.871094, 39.943436 ] } } +{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.760742, 32.063956 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.947266, 31.952162 ] } } +{ "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.200195, 31.765537 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.326572 ] } } +{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } , { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.411133, 51.179343 ] } } , -{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.547852, 25.284438 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.244696 ] } } +{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.613459 ] } } +{ "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.169922, 34.524661 ] } } , -{ "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.861328, 19.020577 ] } } +{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.512557 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.931066 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.983148 ] } } , { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 16.804541 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.045792 ] } } +{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.842773, 1.274309 ] } } , -{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } +{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } , { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.012695, 1.318243 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } ] } ] } , @@ -214,7 +214,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.145992 ] } } , -{ "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } +{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } ] } ] } , @@ -222,7 +222,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.661333 ] } } +{ "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } ] } @@ -232,11 +234,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.045508 ] } } +{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.159180, -16.488765 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.045508 ] } } , -{ "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.403320, -34.597042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.792254 ] } } ] } ] } , @@ -244,35 +246,35 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.396973, 33.833920 ] } } -, { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.780107 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , { "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.146746 ] } } , -{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.479609 ] } } +{ "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.971897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.091797, 4.587376 ] } } +{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.906738, 10.509417 ] } } +{ "type": "Feature", "properties": { "NAME": "Bridgetown" }, "geometry": { "type": "Point", "coordinates": [ -59.611816, 13.090179 ] } } , -{ "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } , -{ "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } +{ "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.016242 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Freetown" }, "geometry": { "type": "Point", "coordinates": [ -13.227539, 8.472372 ] } } , -{ "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.309766 ] } } +{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.504503 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } ] } @@ -282,21 +284,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.470215, 0.395505 ] } } -, { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.094727, -22.573438 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.811456 ] } } +{ "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.274309 ] } } +{ "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.184246 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.905762, -24.647017 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maseru" }, "geometry": { "type": "Point", "coordinates": [ 27.487793, -29.324720 ] } } +{ "type": "Feature", "properties": { "NAME": "Lobamba" }, "geometry": { "type": "Point", "coordinates": [ 31.201172, -26.470573 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.526855, -18.916680 ] } } ] } ] } , @@ -306,47 +306,47 @@ , { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.921990 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.864715 ] } } +{ "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.504503 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } +{ "type": "Feature", "properties": { "NAME": "Bern" }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.458008, 50.078295 ] } } +{ "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } +{ "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 46.057985 ] } } , { "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } , -{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } +{ "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116699, 48.151428 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } +{ "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.391113, 43.850374 ] } } , -{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } +{ "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.433780 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.722131 ] } } +{ "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.906849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.898038 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } , { "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.383789, 6.446318 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.470215, 0.373533 ] } } +{ "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.871094, 39.926588 ] } } +{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.103781 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.376465, 35.173808 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.050077 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.760742, 32.082575 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.925293, 31.952162 ] } } +{ "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.200195, 31.784217 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.326572 ] } } +{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } , { "type": "Feature", "properties": { "NAME": "Djibouti" }, "geometry": { "type": "Point", "coordinates": [ 43.154297, 11.587669 ] } } , @@ -354,19 +354,17 @@ , { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.525879, 25.284438 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.224820 ] } } +{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.774414, 38.565348 ] } } +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.373535, 2.064982 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.191895, 34.524661 ] } } , -{ "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.861328, 19.020577 ] } } +{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.171115 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.274309 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.961736 ] } } ] } ] } , @@ -378,11 +376,9 @@ , { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } , -{ "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.128418, -35.281501 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -36.844461 ] } } +{ "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.193848, -33.925130 ] } } , -{ "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.792480, -41.294317 ] } } +{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.515836 ] } } ] } ] } , @@ -390,19 +386,21 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , +{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +, { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.916342 ] } } , { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.842285, 21.043491 ] } } , -{ "type": "Feature", "properties": { "NAME": "Putrajaya" }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 2.921097 ] } } +{ "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } +{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.563965, 16.425548 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } , -{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.759666 ] } } +{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } , { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } , @@ -414,7 +412,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.135745 ] } } , -{ "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } +{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ -180.780029, -8.515836 ] } } ] } ] } , @@ -424,7 +422,9 @@ , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.179932, 33.988918 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.671236 ] } } +{ "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } ] } @@ -440,13 +440,15 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.619873, -33.045508 ] } } +{ "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.047119, -12.050065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.619873, -33.045508 ] } } , -{ "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.403320, -34.606085 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.625977, -23.553917 ] } } +{ "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.858890 ] } } ] } ] } , @@ -458,33 +460,35 @@ , { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.790000 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } +{ "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.220459, 14.104613 ] } } , { "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.157486 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.530029, 8.971897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.906006, 18.469189 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.080811, 4.598327 ] } } +{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.298199 ] } } , { "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.380615, 15.294783 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.143678 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.498614 ] } } +{ "type": "Feature", "properties": { "NAME": "Bridgetown" }, "geometry": { "type": "Point", "coordinates": [ -59.611816, 13.100880 ] } } , { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.512451, 10.649811 ] } } , -{ "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } +{ "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -498,21 +502,21 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.912938 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } +{ "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.194580, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Freetown" }, "geometry": { "type": "Point", "coordinates": [ -13.238525, 8.472372 ] } } , { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } , -{ "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.320705 ] } } +{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } ] } ] } , @@ -528,25 +532,23 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.459229, 0.384519 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } -, { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } , { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.955187 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.821916 ] } } +{ "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } +{ "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.184246 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } +{ "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.916748, -24.647017 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maseru" }, "geometry": { "type": "Point", "coordinates": [ 27.487793, -29.315141 ] } } +{ "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.123373 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.223877, -25.710837 ] } } +{ "type": "Feature", "properties": { "NAME": "Lobamba" }, "geometry": { "type": "Point", "coordinates": [ 31.201172, -26.470573 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } ] } @@ -558,35 +560,41 @@ , { "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } , -{ "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.054199, 36.765292 ] } } +{ "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.014893, 41.104191 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.184326, 36.800488 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.888813 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.219482, 6.129631 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.394775, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Porto-Novo" }, "geometry": { "type": "Point", "coordinates": [ 2.614746, 6.479067 ] } } , -{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } +{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.394775, 6.446318 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.459229, 0.384519 ] } } +{ "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } +{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.860107, 39.926588 ] } } +{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.987504 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.050077 ] } } , -{ "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +{ "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.771729, 32.082575 ] } } , { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.936279, 31.952162 ] } } +{ "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.211182, 31.774878 ] } } , -{ "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.530518, 15.591293 ] } } +{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } , { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.337167 ] } } , { "type": "Feature", "properties": { "NAME": "Djibouti" }, "geometry": { "type": "Point", "coordinates": [ 43.154297, 11.598432 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } ] } ] } , @@ -596,25 +604,25 @@ , { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.916483 ] } } , -{ "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.273682, 52.079506 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , -{ "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.864715 ] } } +{ "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.496403 ] } } , { "type": "Feature", "properties": { "NAME": "Bern" }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.912751 ] } } , { "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , -{ "type": "Feature", "properties": { "NAME": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.468994, 50.085344 ] } } +{ "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 20.994873, 52.247983 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.202710 ] } } , -{ "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } +{ "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 46.057985 ] } } , { "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } , -{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } +{ "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116699, 48.151428 ] } } , { "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.380127, 43.850374 ] } } , @@ -622,23 +630,21 @@ , { "type": "Feature", "properties": { "NAME": "Skopje" }, "geometry": { "type": "Point", "coordinates": [ 21.434326, 42.000325 ] } } , -{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } +{ "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.312988, 42.682435 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } +{ "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.433780 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } +{ "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.014893, 41.104191 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.620229 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } ] } ] } , @@ -646,29 +652,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } -, { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } +{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.234758 ] } } +{ "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.590088, 23.614329 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.774414, 38.556757 ] } } +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.319824, 27.712710 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.861328, 19.020577 ] } } +{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.319092, 22.492257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.160158 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.972442 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } ] } ] } , @@ -678,8 +682,6 @@ , { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.433105, 51.179343 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } -, { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } ] } ] } @@ -696,21 +698,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } -, { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } , { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.968283 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.853271, 21.033237 ] } } , -{ "type": "Feature", "properties": { "NAME": "Putrajaya" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 2.910125 ] } } +{ "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.180908, 22.309426 ] } } +{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } , { "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } , -{ "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.574951, 16.425548 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.570705 ] } } , { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } , @@ -734,13 +734,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.470736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.128418, -35.281501 ] } } +{ "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.182861, -33.916013 ] } } , { "type": "Feature", "properties": { "NAME": "Port Vila" }, "geometry": { "type": "Point", "coordinates": [ 168.321533, -17.738223 ] } } , -{ "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.759521, -36.853252 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.302571 ] } } +{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } ] } ] } , @@ -752,6 +750,8 @@ , { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } , +{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +, { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.023682, 1.340210 ] } } ] } ] } @@ -790,8 +790,6 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.671236 ] } } -, { "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } ] } ] } @@ -806,6 +804,8 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } , +{ "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.052612, -12.050065 ] } } +, { "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } ] } ] } @@ -814,19 +814,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.764038, 17.250990 ] } } , +{ "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.220459, 14.104613 ] } } +, { "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.203491, 13.710035 ] } } , { "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270142, 12.152116 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535522, 8.966471 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.766968, 17.973508 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } , { "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.900513, 18.469189 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.086304, 4.598327 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } ] } ] } , @@ -836,7 +834,7 @@ , { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.790000 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.008667, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } , { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.349243, 25.080624 ] } } ] } @@ -846,7 +844,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , +{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +, { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701294, 45.417732 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -856,7 +858,7 @@ , { "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.397827, -34.601563 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.625977, -23.558952 ] } } +{ "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.858890 ] } } ] } ] } , @@ -876,9 +878,9 @@ , { "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.386108, 15.300081 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.210327, 13.149027 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.737671, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Bridgetown" }, "geometry": { "type": "Point", "coordinates": [ -59.617310, 13.100880 ] } } , { "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.504016 ] } } , @@ -916,9 +918,7 @@ , { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } , -{ "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.320705 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } ] } ] } , @@ -928,11 +928,9 @@ , { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.146118, 38.724090 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.600894 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.685913, 40.400948 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.651489, 26.115986 ] } } ] } ] } , @@ -960,9 +958,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.335081 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.459229, 0.384519 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } +{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.329979 ] } } , { "type": "Feature", "properties": { "NAME": "Luanda" }, "geometry": { "type": "Point", "coordinates": [ 13.233032, -8.836223 ] } } ] } @@ -972,21 +968,21 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } , +{ "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.114868, 13.517838 ] } } +, { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.219482, 6.135093 ] } } , -{ "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.521362, 6.402648 ] } } +{ "type": "Feature", "properties": { "NAME": "Porto-Novo" }, "geometry": { "type": "Point", "coordinates": [ 2.620239, 6.484525 ] } } , { "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389282, 6.446318 ] } } , -{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } +{ "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783569, 3.749153 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.459229, 0.384519 ] } } +{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } , { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.561401, 4.362843 ] } } ] } ] } , @@ -994,9 +990,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.048706, 36.765292 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.893426 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.518433, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.893426 ] } } ] } ] } , @@ -1004,13 +1000,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.273682, 52.079506 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.916382, 52.352119 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.334106, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } , -{ "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.334595, 48.868328 ] } } +{ "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.500453 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , @@ -1018,19 +1012,19 @@ , { "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.410278, 43.739352 ] } } , -{ "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.562866, 55.680682 ] } } +{ "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , { "type": "Feature", "properties": { "NAME": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.463501, 50.085344 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.000366, 52.251346 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.518433, 46.054173 ] } } , -{ "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.001587, 45.798170 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.442017, 43.933506 ] } } , { "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453003, 41.902277 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rome" }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.898188 ] } } +{ "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116699, 48.147763 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , @@ -1048,7 +1042,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.750122, 59.919237 ] } } , -{ "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.562866, 55.680682 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } ] } ] } , @@ -1056,11 +1050,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911255, -24.647017 ] } } , -{ "type": "Feature", "properties": { "NAME": "Johannesburg" }, "geometry": { "type": "Point", "coordinates": [ 28.031616, -26.170229 ] } } +{ "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.123373 ] } } , { "type": "Feature", "properties": { "NAME": "Maseru" }, "geometry": { "type": "Point", "coordinates": [ 27.482300, -29.319931 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.229370, -25.705888 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.318037 ] } } , { "type": "Feature", "properties": { "NAME": "Lobamba" }, "geometry": { "type": "Point", "coordinates": [ 31.201172, -26.465656 ] } } , @@ -1078,11 +1072,11 @@ , { "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.041870, -17.816686 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } +{ "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.184246 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.800990 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } +{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } ] } ] } , @@ -1090,13 +1084,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.536011, 15.591293 ] } } , +{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.580200, 4.828260 ] } } +, { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.331870 ] } } , { "type": "Feature", "properties": { "NAME": "Djibouti" }, "geometry": { "type": "Point", "coordinates": [ 43.148804, 11.593051 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.699341, 9.031578 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.368042, 2.064982 ] } } ] } ] } , @@ -1104,17 +1102,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.009399, 41.108330 ] } } , +{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.983175 ] } } +, { "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.865601, 39.926588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.250610, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.771729, 32.082575 ] } } , -{ "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.874976 ] } } +{ "type": "Feature", "properties": { "NAME": "Damascus" }, "geometry": { "type": "Point", "coordinates": [ 36.298828, 33.500179 ] } } , { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511108, 40.183070 ] } } , -{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } +{ "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.205688, 31.779547 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.930786, 31.952162 ] } } ] } @@ -1124,11 +1124,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.317993, 54.683359 ] } } , +{ "type": "Feature", "properties": { "NAME": "Minsk" }, "geometry": { "type": "Point", "coordinates": [ 27.564697, 53.901102 ] } } +, { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.433017 ] } } , { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.318481, 42.682435 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } +{ "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.098022, 44.433780 ] } } , { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.009399, 41.104191 ] } } , @@ -1149,8 +1151,6 @@ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.453491, -4.620229 ] } } , { "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -1164,13 +1164,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.861450, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.670685 ] } } , -{ "type": "Feature", "properties": { "NAME": "Riyadh" }, "geometry": { "type": "Point", "coordinates": [ 46.774292, 24.642024 ] } } +{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.586548, 26.234302 ] } } , { "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.277710, 25.229789 ] } } +{ "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.365845, 24.467151 ] } } , { "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.386841, 37.948529 ] } } , @@ -1188,9 +1188,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855835, 19.015384 ] } } , +{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } +, { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.504028, 4.165637 ] } } , -{ "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.859619, 6.931880 ] } } +{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.953003, 6.899161 ] } } ] } ] } , @@ -1202,11 +1204,9 @@ , { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.598992 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.314331, 27.717573 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.642944, 27.474161 ] } } , { "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.324585, 22.497332 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , @@ -1214,7 +1214,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.179343 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.296265, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.586182, 42.875964 ] } } , { "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.806783 ] } } ] } @@ -1238,7 +1238,7 @@ , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.167940 ] } } , -{ "type": "Feature", "properties": { "NAME": "Putrajaya" }, "geometry": { "type": "Point", "coordinates": [ 101.705933, 2.910125 ] } } +{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } ] } ] } , @@ -1246,7 +1246,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.670991 ] } } ] } ] } , @@ -1278,11 +1278,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.930801 ] } } , -{ "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.186401, 22.304344 ] } } +{ "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.437378, 31.217499 ] } } , { "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.569214, 25.035839 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.755005, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.566351 ] } } ] } ] } , @@ -1291,8 +1291,6 @@ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.818463 ] } } , { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.182861, -33.920572 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.128418, -35.285985 ] } } ] } ] } , @@ -1325,8 +1323,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.765015, -36.848857 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.786987, -41.302571 ] } } ] } ] } , @@ -1344,6 +1340,8 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.153687, 6.915521 ] } } , +{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.381226, 7.100893 ] } } +, { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.018188, 1.334718 ] } } ] } ] } diff --git a/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json b/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json index 15fc745d0..6ed94ce62 100644 --- a/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json +++ b/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json @@ -5,202 +5,501 @@ "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\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":243,\"geometry\":\"Point\",\"attributeCount\":3,\"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\"]},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":93,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92],\"min\":0,\"max\":92}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":0,\"fields\":{\"NAME\":\"String\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":243,\"geometry\":\"Point\",\"attributeCount\":3,\"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\"]},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":243,\"type\":\"number\",\"values\":[0,1,10,100,101,102,103,104,105,106,107,108,109,11,110,111,112,113,114,115,116,117,118,119,12,120,121,122,123,124,125,126,127,128,129,13,130,131,132,133,134,135,136,137,138,139,14,140,141,142,143,144,145,146,147,148,149,15,150,151,152,153,154,155,156,157,158,159,16,160,161,162,163,164,165,166,167,168,169,17,170,171,172,173,174,175,176,177,178,179,18,180,181,182,183,184,185,186,187,188],\"min\":0,\"max\":242}]}]}}", "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": "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": "Abidjan", "tippecanoe:retain_points_multiplier_sequence": 168, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.353521 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bishkek", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 74.619141, 42.875964 ] } } +{ "type": "Feature", "properties": { "NAME": "Abu Dhabi", "tippecanoe:retain_points_multiplier_sequence": 48, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 54.404297, 24.447150 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ 69.257812, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja", "tippecanoe:retain_points_multiplier_sequence": 81, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 7.558594, 9.102097 ] } } , -{ "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": "Accra", "tippecanoe:retain_points_multiplier_sequence": 163, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -0.175781, 5.528511 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vientiane", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ 102.568359, 17.978733 ] } } +{ "type": "Feature", "properties": { "NAME": "Addis Ababa", "tippecanoe:retain_points_multiplier_sequence": 207, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 38.671875, 9.015302 ] } } , -{ "type": "Feature", "properties": { "NAME": "Hanoi", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ 105.820312, 21.043491 ] } } +{ "type": "Feature", "properties": { "NAME": "Algiers", "tippecanoe:retain_points_multiplier_sequence": 173, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 3.076172, 36.738884 ] } } , -{ "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": "Amman", "tippecanoe:retain_points_multiplier_sequence": 83, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 35.947266, 31.952162 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.268157 ] } } +{ "type": "Feature", "properties": { "NAME": "Amsterdam", "tippecanoe:retain_points_multiplier_sequence": 192, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.375599 ] } } , -{ "type": "Feature", "properties": { "NAME": "Prague", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 50.064192 ] } } +{ "type": "Feature", "properties": { "NAME": "Andorra", "tippecanoe:retain_points_multiplier_sequence": 13, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 1.494141, 42.488302 ] } } , -{ "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": "Ankara", "tippecanoe:retain_points_multiplier_sequence": 145, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.871094, 39.909736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -15.996094, 18.062312 ] } } +{ "type": "Feature", "properties": { "NAME": "Antananarivo", "tippecanoe:retain_points_multiplier_sequence": 88, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 47.548828, -18.895893 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dakar", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -17.490234, 14.689881 ] } } +{ "type": "Feature", "properties": { "NAME": "Apia", "tippecanoe:retain_points_multiplier_sequence": 137, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } , -{ "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": "Ashgabat", "tippecanoe:retain_points_multiplier_sequence": 49, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 58.359375, 37.926868 ] } } , -{ "type": "Feature", "properties": { "NAME": "Istanbul", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } +{ "type": "Feature", "properties": { "NAME": "Asmara", "tippecanoe:retain_points_multiplier_sequence": 95, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.368950 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } +{ "type": "Feature", "properties": { "NAME": "Astana", "tippecanoe:retain_points_multiplier_sequence": 107, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 71.455078, 51.179343 ] } } , -{ "type": "Feature", "properties": { "NAME": "Cairo", "tippecanoe:retain_points_multiplier_sequence": 87, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.289062, 30.069094 ] } } +{ "type": "Feature", "properties": { "NAME": "Asuncion", "tippecanoe:retain_points_multiplier_sequence": 62, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -57.656250, -25.324167 ] } } , -{ "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": "Athens", "tippecanoe:retain_points_multiplier_sequence": 205, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.996163 ] } } , -{ "type": "Feature", "properties": { "NAME": "Beirut", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +{ "type": "Feature", "properties": { "NAME": "Atlanta", "tippecanoe:retain_points_multiplier_sequence": 179, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -84.375000, 33.797409 ] } } , -{ "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": "Auckland", "tippecanoe:retain_points_multiplier_sequence": 197, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.726562, -36.879621 ], [ -185.273438, -36.879621 ] ] } } , -{ "type": "Feature", "properties": { "NAME": "London", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -0.087891, 51.508742 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad", "tippecanoe:retain_points_multiplier_sequence": 206, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.358062 ] } } , -{ "type": "Feature", "properties": { "NAME": "Praia", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -23.554688, 14.944785 ] } } +{ "type": "Feature", "properties": { "NAME": "Baguio City", "tippecanoe:retain_points_multiplier_sequence": 24, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 120.585938, 16.467695 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti", "tippecanoe:retain_points_multiplier_sequence": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 179.208984, -8.494105 ], [ -180.791016, -8.494105 ] ] } } +{ "type": "Feature", "properties": { "NAME": "Baku", "tippecanoe:retain_points_multiplier_sequence": 121, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 49.833984, 40.380028 ] } } , -{ "type": "Feature", "properties": { "NAME": "Auckland", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.726562, -36.879621 ], [ -185.273438, -36.879621 ] ] } } +{ "type": "Feature", "properties": { "NAME": "Bamako", "tippecanoe:retain_points_multiplier_sequence": 104, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.640338 ] } } , -{ "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": "Bandar Seri Begawan", "tippecanoe:retain_points_multiplier_sequence": 114, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 114.960938, 4.915833 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala", "tippecanoe:retain_points_multiplier_sequence": 35, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangalore", "tippecanoe:retain_points_multiplier_sequence": 204, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 77.519531, 12.983148 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chicago", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -87.714844, 41.836828 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangkok", "tippecanoe:retain_points_multiplier_sequence": 188, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 100.546875, 13.752725 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -79.453125, 43.707594 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui", "tippecanoe:retain_points_multiplier_sequence": 117, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.390229 ] } } , -{ "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": "Banjul", "tippecanoe:retain_points_multiplier_sequence": 33, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -16.611328, 13.496473 ] } } , -{ "type": "Feature", "properties": { "NAME": "Taipei", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.005973 ] } } +{ "type": "Feature", "properties": { "NAME": "Basseterre", "tippecanoe:retain_points_multiplier_sequence": 40, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -62.753906, 17.308688 ] } } , -{ "type": "Feature", "properties": { "NAME": "Shanghai", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ 121.464844, 31.203405 ] } } +{ "type": "Feature", "properties": { "NAME": "Beijing", "tippecanoe:retain_points_multiplier_sequence": 227, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 116.367188, 39.909736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Jakarta", "tippecanoe:retain_points_multiplier_sequence": 86, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 106.787109, -6.140555 ] } } +{ "type": "Feature", "properties": { "NAME": "Beirut", "tippecanoe:retain_points_multiplier_sequence": 105, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port Moresby", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 147.216797, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade", "tippecanoe:retain_points_multiplier_sequence": 113, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.840291 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +{ "type": "Feature", "properties": { "NAME": "Belmopan", "tippecanoe:retain_points_multiplier_sequence": 116, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.224758 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kabul", "tippecanoe:retain_points_multiplier_sequence": 78, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 69.169922, 34.524661 ] } } +{ "type": "Feature", "properties": { "NAME": "Berlin", "tippecanoe:retain_points_multiplier_sequence": 198, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 13.359375, 52.536273 ] } } , -{ "type": "Feature", "properties": { "NAME": "Islamabad", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 73.125000, 33.724340 ] } } +{ "type": "Feature", "properties": { "NAME": "Bern", "tippecanoe:retain_points_multiplier_sequence": 26, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ 77.167969, 28.613459 ] } } +{ "type": "Feature", "properties": { "NAME": "Bir Lehlou", "tippecanoe:retain_points_multiplier_sequence": 9, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Khartoum", "tippecanoe:retain_points_multiplier_sequence": 54, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.519531, 15.623037 ] } } +{ "type": "Feature", "properties": { "NAME": "Bishkek", "tippecanoe:retain_points_multiplier_sequence": 86, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 74.619141, 42.875964 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kampala", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, 0.351560 ] } } +{ "type": "Feature", "properties": { "NAME": "Bissau", "tippecanoe:retain_points_multiplier_sequence": 82, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -15.556641, 11.867351 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Bloemfontein", "tippecanoe:retain_points_multiplier_sequence": 67, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 26.191406, -29.152161 ] } } , -{ "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": "Bogota", "tippecanoe:retain_points_multiplier_sequence": 230, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -74.091797, 4.565474 ] } } , -{ "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": "Brasilia", "tippecanoe:retain_points_multiplier_sequence": 169, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } , -{ "type": "Feature", "properties": { "NAME": "Santo Domingo", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -69.873047, 18.479609 ] } } +{ "type": "Feature", "properties": { "NAME": "Bratislava", "tippecanoe:retain_points_multiplier_sequence": 20, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.166085 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingstown", "tippecanoe:retain_points_multiplier_sequence": 14, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville", "tippecanoe:retain_points_multiplier_sequence": 109, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.214943 ] } } , -{ "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": "Bridgetown", "tippecanoe:retain_points_multiplier_sequence": 35, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -59.589844, 13.068777 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bridgetown", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -59.589844, 13.068777 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels", "tippecanoe:retain_points_multiplier_sequence": 170, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } , -{ "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": "Bucharest", "tippecanoe:retain_points_multiplier_sequence": 148, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.465151 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luanda", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ 13.271484, -8.841651 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest", "tippecanoe:retain_points_multiplier_sequence": 146, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ 17.050781, -22.593726 ] } } +{ "type": "Feature", "properties": { "NAME": "Buenos Aires", "tippecanoe:retain_points_multiplier_sequence": 211, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -58.359375, -34.597042 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lima", "tippecanoe:retain_points_multiplier_sequence": 69, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -77.080078, -12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Bujumbura", "tippecanoe:retain_points_multiplier_sequence": 37, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.337954 ] } } , -{ "type": "Feature", "properties": { "NAME": "La Paz", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -68.115234, -16.467695 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo", "tippecanoe:retain_points_multiplier_sequence": 231, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.289062, 30.069094 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valparaiso", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.063924 ] } } +{ "type": "Feature", "properties": { "NAME": "Canberra", "tippecanoe:retain_points_multiplier_sequence": 129, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 149.150391, -35.317366 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg", "tippecanoe:retain_points_multiplier_sequence": 0, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Cape Town", "tippecanoe:retain_points_multiplier_sequence": 222, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 18.457031, -33.943360 ] } } , -{ "type": "Feature", "properties": { "NAME": "Andorra", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 1.494141, 42.488302 ] } } +{ "type": "Feature", "properties": { "NAME": "Caracas", "tippecanoe:retain_points_multiplier_sequence": 181, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -66.884766, 10.487812 ] } } , -{ "type": "Feature", "properties": { "NAME": "Paris", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ 2.373047, 48.864715 ] } } +{ "type": "Feature", "properties": { "NAME": "Casablanca", "tippecanoe:retain_points_multiplier_sequence": 193, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -7.646484, 33.578015 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo", "tippecanoe:retain_points_multiplier_sequence": 33, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries", "tippecanoe:retain_points_multiplier_sequence": 39, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu", "tippecanoe:retain_points_multiplier_sequence": 200, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 104.062500, 30.675715 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 0.351560 ] } } +{ "type": "Feature", "properties": { "NAME": "Chicago", "tippecanoe:retain_points_multiplier_sequence": 180, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -87.714844, 41.836828 ] } } , -{ "type": "Feature", "properties": { "NAME": "Male", "tippecanoe:retain_points_multiplier_sequence": 48, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 73.476562, 4.127285 ] } } +{ "type": "Feature", "properties": { "NAME": "Chisinau", "tippecanoe:retain_points_multiplier_sequence": 73, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } , -{ "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": "Colombo", "tippecanoe:retain_points_multiplier_sequence": 77, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 79.892578, 6.926427 ] } } , -{ "type": "Feature", "properties": { "NAME": "Colombo", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 79.892578, 6.926427 ] } } +{ "type": "Feature", "properties": { "NAME": "Conakry", "tippecanoe:retain_points_multiplier_sequence": 110, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama", "tippecanoe:retain_points_multiplier_sequence": 16, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 50.625000, 26.273714 ] } } +{ "type": "Feature", "properties": { "NAME": "Cotonou", "tippecanoe:retain_points_multiplier_sequence": 124, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 2.548828, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dubai", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.244696 ] } } +{ "type": "Feature", "properties": { "NAME": "Dakar", "tippecanoe:retain_points_multiplier_sequence": 190, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -17.490234, 14.689881 ] } } , -{ "type": "Feature", "properties": { "NAME": "Doha", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 51.503906, 25.324167 ] } } +{ "type": "Feature", "properties": { "NAME": "Damascus", "tippecanoe:retain_points_multiplier_sequence": 149, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 36.298828, 33.504759 ] } } , -{ "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": "Dar es Salaam", "tippecanoe:retain_points_multiplier_sequence": 155, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 39.287109, -6.839170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 28.212891, -25.720735 ] } } +{ "type": "Feature", "properties": { "NAME": "Denver", "tippecanoe:retain_points_multiplier_sequence": 176, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -105.029297, 39.774769 ] } } , -{ "type": "Feature", "properties": { "NAME": "Mbabane", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.352498 ] } } +{ "type": "Feature", "properties": { "NAME": "Dhaka", "tippecanoe:retain_points_multiplier_sequence": 171, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 90.439453, 23.725012 ] } } , -{ "type": "Feature", "properties": { "NAME": "Melekeok", "tippecanoe:retain_points_multiplier_sequence": 2, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 134.648438, 7.449624 ] } } +{ "type": "Feature", "properties": { "NAME": "Dili", "tippecanoe:retain_points_multiplier_sequence": 52, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } , -{ "type": "Feature", "properties": { "NAME": "Osaka", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } +{ "type": "Feature", "properties": { "NAME": "Djibouti", "tippecanoe:retain_points_multiplier_sequence": 30, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 43.154297, 11.609193 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kyoto", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 135.791016, 35.029996 ] } } +{ "type": "Feature", "properties": { "NAME": "Dodoma", "tippecanoe:retain_points_multiplier_sequence": 25, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 35.771484, -6.140555 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nairobi", "tippecanoe:retain_points_multiplier_sequence": 85, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.318243 ] } } +{ "type": "Feature", "properties": { "NAME": "Doha", "tippecanoe:retain_points_multiplier_sequence": 21, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 51.503906, 25.324167 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dar es Salaam", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ 39.287109, -6.839170 ] } } +{ "type": "Feature", "properties": { "NAME": "Dubai", "tippecanoe:retain_points_multiplier_sequence": 183, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.244696 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dodoma", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 35.771484, -6.140555 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin", "tippecanoe:retain_points_multiplier_sequence": 156, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "New York", "tippecanoe:retain_points_multiplier_sequence": 81, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } +{ "type": "Feature", "properties": { "NAME": "Dushanbe", "tippecanoe:retain_points_multiplier_sequence": 61, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 68.730469, 38.548165 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nassau", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +{ "type": "Feature", "properties": { "NAME": "Freetown", "tippecanoe:retain_points_multiplier_sequence": 64, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -13.271484, 8.494105 ] } } , -{ "type": "Feature", "properties": { "NAME": "Belmopan", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.224758 ] } } +{ "type": "Feature", "properties": { "NAME": "Funafuti", "tippecanoe:retain_points_multiplier_sequence": 7, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 179.208984, -8.494105 ], [ -180.791016, -8.494105 ] ] } } , -{ "type": "Feature", "properties": { "NAME": "Ouagadougou", "tippecanoe:retain_points_multiplier_sequence": 46, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -1.494141, 12.382928 ] } } +{ "type": "Feature", "properties": { "NAME": "Gaborone", "tippecanoe:retain_points_multiplier_sequence": 128, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.607069 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.839170 ] } } +{ "type": "Feature", "properties": { "NAME": "Geneva", "tippecanoe:retain_points_multiplier_sequence": 186, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monrovia", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } +{ "type": "Feature", "properties": { "NAME": "Georgetown", "tippecanoe:retain_points_multiplier_sequence": 55, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -58.183594, 6.839170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rome", "tippecanoe:retain_points_multiplier_sequence": 84, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "Guatemala", "tippecanoe:retain_points_multiplier_sequence": 99, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } , -{ "type": "Feature", "properties": { "NAME": "Budapest", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi", "tippecanoe:retain_points_multiplier_sequence": 144, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 105.820312, 21.043491 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bratislava", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.166085 ] } } +{ "type": "Feature", "properties": { "NAME": "Harare", "tippecanoe:retain_points_multiplier_sequence": 51, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.025391, -17.811456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sao Paulo", "tippecanoe:retain_points_multiplier_sequence": 91, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -46.669922, -23.563987 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa", "tippecanoe:retain_points_multiplier_sequence": 134, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 9.535749 ] } } , -{ "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": "Havana", "tippecanoe:retain_points_multiplier_sequence": 159, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.160563 ] } } , -{ "type": "Feature", "properties": { "NAME": "Montevideo", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.885931 ] } } +{ "type": "Feature", "properties": { "NAME": "Helsinki", "tippecanoe:retain_points_multiplier_sequence": 166, "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, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 41.967659 ] } } +{ "type": "Feature", "properties": { "NAME": "Hong Kong", "tippecanoe:retain_points_multiplier_sequence": 242, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.268764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tallinn", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 24.697266, 59.445075 ] } } +{ "type": "Feature", "properties": { "NAME": "Honiara", "tippecanoe:retain_points_multiplier_sequence": 70, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } , -{ "type": "Feature", "properties": { "NAME": "Helsinki", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ 24.960938, 60.196156 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston", "tippecanoe:retain_points_multiplier_sequence": 177, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -95.361328, 29.840644 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta", "tippecanoe:retain_points_multiplier_sequence": 47, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad", "tippecanoe:retain_points_multiplier_sequence": 65, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 73.125000, 33.724340 ] } } , -{ "type": "Feature", "properties": { "NAME": "Niamey", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.496473 ] } } +{ "type": "Feature", "properties": { "NAME": "Istanbul", "tippecanoe:retain_points_multiplier_sequence": 220, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lome", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } +{ "type": "Feature", "properties": { "NAME": "Jakarta", "tippecanoe:retain_points_multiplier_sequence": 229, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 106.787109, -6.140555 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vancouver", "tippecanoe:retain_points_multiplier_sequence": 76, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +{ "type": "Feature", "properties": { "NAME": "Jerusalem", "tippecanoe:retain_points_multiplier_sequence": 140, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 35.244141, 31.802893 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Francisco", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +{ "type": "Feature", "properties": { "NAME": "Johannesburg", "tippecanoe:retain_points_multiplier_sequence": 191, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 28.037109, -26.194877 ] } } , -{ "type": "Feature", "properties": { "NAME": "Los Angeles", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.016242 ] } } +{ "type": "Feature", "properties": { "NAME": "Juba", "tippecanoe:retain_points_multiplier_sequence": 17, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kabul", "tippecanoe:retain_points_multiplier_sequence": 212, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 69.169922, 34.524661 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kampala", "tippecanoe:retain_points_multiplier_sequence": 58, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.607422, 0.351560 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kathmandu", "tippecanoe:retain_points_multiplier_sequence": 66, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 85.341797, 27.683528 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Khartoum", "tippecanoe:retain_points_multiplier_sequence": 151, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.519531, 15.623037 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kiev", "tippecanoe:retain_points_multiplier_sequence": 182, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.457504 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kigali", "tippecanoe:retain_points_multiplier_sequence": 15, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.933227 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kingston", "tippecanoe:retain_points_multiplier_sequence": 92, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -76.728516, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kingstown", "tippecanoe:retain_points_multiplier_sequence": 38, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kinshasa", "tippecanoe:retain_points_multiplier_sequence": 202, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kolkata", "tippecanoe:retain_points_multiplier_sequence": 237, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.512557 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kuala Lumpur", "tippecanoe:retain_points_multiplier_sequence": 158, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kuwait", "tippecanoe:retain_points_multiplier_sequence": 161, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kyoto", "tippecanoe:retain_points_multiplier_sequence": 32, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 135.791016, 35.029996 ] } } +, +{ "type": "Feature", "properties": { "NAME": "København", "tippecanoe:retain_points_multiplier_sequence": 167, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.568359, 55.677584 ] } } +, +{ "type": "Feature", "properties": { "NAME": "La Paz", "tippecanoe:retain_points_multiplier_sequence": 123, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -68.115234, -16.467695 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Laayoune", "tippecanoe:retain_points_multiplier_sequence": 27, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lagos", "tippecanoe:retain_points_multiplier_sequence": 225, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 3.427734, 6.402648 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Libreville", "tippecanoe:retain_points_multiplier_sequence": 100, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 0.351560 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lilongwe", "tippecanoe:retain_points_multiplier_sequence": 98, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 33.750000, -14.008696 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lima", "tippecanoe:retain_points_multiplier_sequence": 189, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -77.080078, -12.039321 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lisbon", "tippecanoe:retain_points_multiplier_sequence": 150, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.754083 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ljubljana", "tippecanoe:retain_points_multiplier_sequence": 19, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 46.073231 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lobamba", "tippecanoe:retain_points_multiplier_sequence": 3, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.201172, -26.431228 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lome", "tippecanoe:retain_points_multiplier_sequence": 46, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } +, +{ "type": "Feature", "properties": { "NAME": "London", "tippecanoe:retain_points_multiplier_sequence": 219, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -0.087891, 51.508742 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Los Angeles", "tippecanoe:retain_points_multiplier_sequence": 216, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Luanda", "tippecanoe:retain_points_multiplier_sequence": 172, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 13.271484, -8.841651 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lusaka", "tippecanoe:retain_points_multiplier_sequence": 50, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 28.300781, -15.453680 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Luxembourg", "tippecanoe:retain_points_multiplier_sequence": 4, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 49.610710 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Madrid", "tippecanoe:retain_points_multiplier_sequence": 185, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Majuro", "tippecanoe:retain_points_multiplier_sequence": 6, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Malabo", "tippecanoe:retain_points_multiplier_sequence": 94, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Male", "tippecanoe:retain_points_multiplier_sequence": 139, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 73.476562, 4.127285 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Managua", "tippecanoe:retain_points_multiplier_sequence": 63, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -86.308594, 12.125264 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Manama", "tippecanoe:retain_points_multiplier_sequence": 43, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 50.625000, 26.273714 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Manila", "tippecanoe:retain_points_multiplier_sequence": 195, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 120.937500, 14.604847 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Maputo", "tippecanoe:retain_points_multiplier_sequence": 74, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Maseru", "tippecanoe:retain_points_multiplier_sequence": 87, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 27.509766, -29.305561 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mbabane", "tippecanoe:retain_points_multiplier_sequence": 16, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.352498 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Melbourne", "tippecanoe:retain_points_multiplier_sequence": 214, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 144.931641, -37.788081 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Melekeok", "tippecanoe:retain_points_multiplier_sequence": 8, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 134.648438, 7.449624 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mexico City", "tippecanoe:retain_points_multiplier_sequence": 224, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.476950 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Miami", "tippecanoe:retain_points_multiplier_sequence": 178, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -80.244141, 25.799891 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Minsk", "tippecanoe:retain_points_multiplier_sequence": 126, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 27.597656, 53.904338 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu", "tippecanoe:retain_points_multiplier_sequence": 75, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 45.351562, 2.108899 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Monaco", "tippecanoe:retain_points_multiplier_sequence": 10, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 7.382812, 43.771094 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Monrovia", "tippecanoe:retain_points_multiplier_sequence": 157, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Monterrey", "tippecanoe:retain_points_multiplier_sequence": 196, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -100.371094, 25.641526 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Montevideo", "tippecanoe:retain_points_multiplier_sequence": 45, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.885931 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Moroni", "tippecanoe:retain_points_multiplier_sequence": 12, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Moscow", "tippecanoe:retain_points_multiplier_sequence": 223, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.776573 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mumbai", "tippecanoe:retain_points_multiplier_sequence": 234, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 72.861328, 18.979026 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Muscat", "tippecanoe:retain_points_multiplier_sequence": 76, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 58.623047, 23.644524 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nairobi", "tippecanoe:retain_points_multiplier_sequence": 228, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.318243 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nassau", "tippecanoe:retain_points_multiplier_sequence": 142, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Naypyidaw", "tippecanoe:retain_points_multiplier_sequence": 132, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 19.808054 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ndjamena", "tippecanoe:retain_points_multiplier_sequence": 93, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New Delhi", "tippecanoe:retain_points_multiplier_sequence": 203, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 77.167969, 28.613459 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York", "tippecanoe:retain_points_multiplier_sequence": 218, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Niamey", "tippecanoe:retain_points_multiplier_sequence": 60, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.496473 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nicosia", "tippecanoe:retain_points_multiplier_sequence": 143, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 33.398438, 35.173808 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nouakchott", "tippecanoe:retain_points_multiplier_sequence": 103, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -15.996094, 18.062312 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nukualofa", "tippecanoe:retain_points_multiplier_sequence": 133, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -175.253906, -21.125498 ], [ 184.746094, -21.125498 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Osaka", "tippecanoe:retain_points_multiplier_sequence": 201, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Oslo", "tippecanoe:retain_points_multiplier_sequence": 152, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 10.722656, 59.933000 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ottawa", "tippecanoe:retain_points_multiplier_sequence": 112, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -75.673828, 45.398450 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ouagadougou", "tippecanoe:retain_points_multiplier_sequence": 130, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -1.494141, 12.382928 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Palikir", "tippecanoe:retain_points_multiplier_sequence": 5, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 158.115234, 6.926427 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Panama City", "tippecanoe:retain_points_multiplier_sequence": 71, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.928487 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Paramaribo", "tippecanoe:retain_points_multiplier_sequence": 59, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -55.195312, 5.878332 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Paris", "tippecanoe:retain_points_multiplier_sequence": 235, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 2.373047, 48.864715 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Phnom Penh", "tippecanoe:retain_points_multiplier_sequence": 122, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 104.941406, 11.523088 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Podgorica", "tippecanoe:retain_points_multiplier_sequence": 22, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 19.248047, 42.488302 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Port Louis", "tippecanoe:retain_points_multiplier_sequence": 41, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 57.480469, -20.138470 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Port Moresby", "tippecanoe:retain_points_multiplier_sequence": 69, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 147.216797, -9.449062 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Port Vila", "tippecanoe:retain_points_multiplier_sequence": 53, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 168.310547, -17.727759 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Port-au-Prince", "tippecanoe:retain_points_multiplier_sequence": 57, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.562947 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain", "tippecanoe:retain_points_multiplier_sequence": 14, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Porto-Novo", "tippecanoe:retain_points_multiplier_sequence": 36, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 2.636719, 6.489983 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Prague", "tippecanoe:retain_points_multiplier_sequence": 160, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 50.064192 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Praia", "tippecanoe:retain_points_multiplier_sequence": 141, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -23.554688, 14.944785 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Pretoria", "tippecanoe:retain_points_multiplier_sequence": 68, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 28.212891, -25.720735 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Pristina", "tippecanoe:retain_points_multiplier_sequence": 28, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.682435 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Putrajaya", "tippecanoe:retain_points_multiplier_sequence": 31, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 2.899153 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Pyongyang", "tippecanoe:retain_points_multiplier_sequence": 154, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 125.771484, 39.027719 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Quito", "tippecanoe:retain_points_multiplier_sequence": 89, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.175781 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rabat", "tippecanoe:retain_points_multiplier_sequence": 72, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -6.855469, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rangoon", "tippecanoe:retain_points_multiplier_sequence": 174, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 16.804541 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Reykjavík", "tippecanoe:retain_points_multiplier_sequence": 56, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -21.972656, 64.168107 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Riga", "tippecanoe:retain_points_multiplier_sequence": 85, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rio de Janeiro", "tippecanoe:retain_points_multiplier_sequence": 238, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -43.242188, -22.917923 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Riyadh", "tippecanoe:retain_points_multiplier_sequence": 221, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 46.757812, 24.607069 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rome", "tippecanoe:retain_points_multiplier_sequence": 226, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Roseau", "tippecanoe:retain_points_multiplier_sequence": 29, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.347656, 15.284185 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Saint George's", "tippecanoe:retain_points_multiplier_sequence": 42, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.699219, 12.039321 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Saint John's", "tippecanoe:retain_points_multiplier_sequence": 44, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.875000, 17.140790 ] } } +, +{ "type": "Feature", "properties": { "NAME": "San Francisco", "tippecanoe:retain_points_multiplier_sequence": 175, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "NAME": "San Jose", "tippecanoe:retain_points_multiplier_sequence": 90, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -84.111328, 9.968851 ] } } +, +{ "type": "Feature", "properties": { "NAME": "San Marino", "tippecanoe:retain_points_multiplier_sequence": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 43.961191 ] } } +, +{ "type": "Feature", "properties": { "NAME": "San Salvador", "tippecanoe:retain_points_multiplier_sequence": 91, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.752725 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sanaa", "tippecanoe:retain_points_multiplier_sequence": 147, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.368950 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Santiago", "tippecanoe:retain_points_multiplier_sequence": 236, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -70.664062, -33.431441 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Santo Domingo", "tippecanoe:retain_points_multiplier_sequence": 162, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -69.873047, 18.479609 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sao Paulo", "tippecanoe:retain_points_multiplier_sequence": 239, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -46.669922, -23.563987 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sao Tome", "tippecanoe:retain_points_multiplier_sequence": 136, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 6.767578, 0.351560 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sarajevo", "tippecanoe:retain_points_multiplier_sequence": 131, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 18.369141, 43.834527 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul", "tippecanoe:retain_points_multiplier_sequence": 194, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Shanghai", "tippecanoe:retain_points_multiplier_sequence": 232, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 121.464844, 31.203405 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Singapore", "tippecanoe:retain_points_multiplier_sequence": 241, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 103.886719, 1.318243 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Skopje", "tippecanoe:retain_points_multiplier_sequence": 34, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 41.967659 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sofia", "tippecanoe:retain_points_multiplier_sequence": 125, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 23.291016, 42.682435 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte", "tippecanoe:retain_points_multiplier_sequence": 23, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Stockholm", "tippecanoe:retain_points_multiplier_sequence": 187, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sucre", "tippecanoe:retain_points_multiplier_sequence": 115, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -65.302734, -19.062118 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Suva", "tippecanoe:retain_points_multiplier_sequence": 101, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 178.417969, -18.145852 ], [ -181.582031, -18.145852 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sydney", "tippecanoe:retain_points_multiplier_sequence": 240, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 151.171875, -33.943360 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Taipei", "tippecanoe:retain_points_multiplier_sequence": 215, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.005973 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tallinn", "tippecanoe:retain_points_multiplier_sequence": 97, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 24.697266, 59.445075 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tarawa", "tippecanoe:retain_points_multiplier_sequence": 11, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 173.056641, 1.318243 ], [ -186.943359, 1.318243 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tashkent", "tippecanoe:retain_points_multiplier_sequence": 184, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 69.257812, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tbilisi", "tippecanoe:retain_points_multiplier_sequence": 106, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.824219, 41.705729 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tegucigalpa", "tippecanoe:retain_points_multiplier_sequence": 54, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -87.187500, 14.093957 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tehran", "tippecanoe:retain_points_multiplier_sequence": 208, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo", "tippecanoe:retain_points_multiplier_sequence": 165, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 34.804688, 32.101190 ] } } +, +{ "type": "Feature", "properties": { "NAME": "The Hague", "tippecanoe:retain_points_multiplier_sequence": 18, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 52.106505 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Thimphu", "tippecanoe:retain_points_multiplier_sequence": 127, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.449790 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tirana", "tippecanoe:retain_points_multiplier_sequence": 119, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 19.775391, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tokyo", "tippecanoe:retain_points_multiplier_sequence": 233, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Toronto", "tippecanoe:retain_points_multiplier_sequence": 210, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -79.453125, 43.707594 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tripoli", "tippecanoe:retain_points_multiplier_sequence": 164, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.916485 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tunis", "tippecanoe:retain_points_multiplier_sequence": 47, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ulaanbaatar", "tippecanoe:retain_points_multiplier_sequence": 78, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 106.875000, 47.931066 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Urumqi", "tippecanoe:retain_points_multiplier_sequence": 199, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 87.539062, 43.834527 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vaduz", "tippecanoe:retain_points_multiplier_sequence": 2, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 47.159840 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Valletta", "tippecanoe:retain_points_multiplier_sequence": 138, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Valparaiso", "tippecanoe:retain_points_multiplier_sequence": 102, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.063924 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vancouver", "tippecanoe:retain_points_multiplier_sequence": 209, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vatican City", "tippecanoe:retain_points_multiplier_sequence": 0, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Victoria", "tippecanoe:retain_points_multiplier_sequence": 135, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.653080 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vienna", "tippecanoe:retain_points_multiplier_sequence": 213, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 16.347656, 48.224673 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vientiane", "tippecanoe:retain_points_multiplier_sequence": 108, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 102.568359, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vilnius", "tippecanoe:retain_points_multiplier_sequence": 84, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.673831 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Warsaw", "tippecanoe:retain_points_multiplier_sequence": 153, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.268157 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Washington, D.C.", "tippecanoe:retain_points_multiplier_sequence": 217, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -76.992188, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Wellington", "tippecanoe:retain_points_multiplier_sequence": 79, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.814453, -41.310824 ], [ -185.185547, -41.310824 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Windhoek", "tippecanoe:retain_points_multiplier_sequence": 80, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 17.050781, -22.593726 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Yamoussoukro", "tippecanoe:retain_points_multiplier_sequence": 111, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.839170 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Yaounde", "tippecanoe:retain_points_multiplier_sequence": 118, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Yerevan", "tippecanoe:retain_points_multiplier_sequence": 120, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.472656, 40.178873 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Zagreb", "tippecanoe:retain_points_multiplier_sequence": 96, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.828799 ] } } ] } ] } ] } diff --git a/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json b/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json index 8aa08548a..1856b66c8 100644 --- a/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json +++ b/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json @@ -5,202 +5,501 @@ "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\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":243,\"geometry\":\"Point\",\"attributeCount\":3,\"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\"]},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":93,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92],\"min\":0,\"max\":92}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":0,\"fields\":{\"NAME\":\"String\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":243,\"geometry\":\"Point\",\"attributeCount\":3,\"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\"]},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":243,\"type\":\"number\",\"values\":[0,1,10,100,101,102,103,104,105,106,107,108,109,11,110,111,112,113,114,115,116,117,118,119,12,120,121,122,123,124,125,126,127,128,129,13,130,131,132,133,134,135,136,137,138,139,14,140,141,142,143,144,145,146,147,148,149,15,150,151,152,153,154,155,156,157,158,159,16,160,161,162,163,164,165,166,167,168,169,17,170,171,172,173,174,175,176,177,178,179,18,180,181,182,183,184,185,186,187,188],\"min\":0,\"max\":242}]}]}}", "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": "Luxembourg", "tippecanoe:retain_points_multiplier_sequence": 0, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Vatican City", "tippecanoe:retain_points_multiplier_sequence": 0, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } , -{ "type": "Feature", "properties": { "NAME": "Andorra", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 1.494141, 42.488302 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino", "tippecanoe:retain_points_multiplier_sequence": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 43.961191 ] } } , -{ "type": "Feature", "properties": { "NAME": "Paris", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ 2.373047, 48.864715 ] } } +{ "type": "Feature", "properties": { "NAME": "Vaduz", "tippecanoe:retain_points_multiplier_sequence": 2, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 47.159840 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti", "tippecanoe:retain_points_multiplier_sequence": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 179.208984, -8.494105 ], [ -180.791016, -8.494105 ] ] } } +{ "type": "Feature", "properties": { "NAME": "Lobamba", "tippecanoe:retain_points_multiplier_sequence": 3, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.201172, -26.431228 ] } } , -{ "type": "Feature", "properties": { "NAME": "Auckland", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.726562, -36.879621 ], [ -185.273438, -36.879621 ] ] } } +{ "type": "Feature", "properties": { "NAME": "Luxembourg", "tippecanoe:retain_points_multiplier_sequence": 4, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 49.610710 ] } } , -{ "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": "Palikir", "tippecanoe:retain_points_multiplier_sequence": 5, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 158.115234, 6.926427 ] } } , -{ "type": "Feature", "properties": { "NAME": "Melekeok", "tippecanoe:retain_points_multiplier_sequence": 2, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 134.648438, 7.449624 ] } } +{ "type": "Feature", "properties": { "NAME": "Majuro", "tippecanoe:retain_points_multiplier_sequence": 6, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } , -{ "type": "Feature", "properties": { "NAME": "Osaka", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } +{ "type": "Feature", "properties": { "NAME": "Funafuti", "tippecanoe:retain_points_multiplier_sequence": 7, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 179.208984, -8.494105 ], [ -180.791016, -8.494105 ] ] } } , -{ "type": "Feature", "properties": { "NAME": "Kyoto", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 135.791016, 35.029996 ] } } +{ "type": "Feature", "properties": { "NAME": "Melekeok", "tippecanoe:retain_points_multiplier_sequence": 8, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 134.648438, 7.449624 ] } } , -{ "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": "Bir Lehlou", "tippecanoe:retain_points_multiplier_sequence": 9, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -15.996094, 18.062312 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco", "tippecanoe:retain_points_multiplier_sequence": 10, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 7.382812, 43.771094 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dakar", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -17.490234, 14.689881 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa", "tippecanoe:retain_points_multiplier_sequence": 11, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 173.056641, 1.318243 ], [ -186.943359, 1.318243 ] ] } } , -{ "type": "Feature", "properties": { "NAME": "Skopje", "tippecanoe:retain_points_multiplier_sequence": 12, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 41.967659 ] } } +{ "type": "Feature", "properties": { "NAME": "Moroni", "tippecanoe:retain_points_multiplier_sequence": 12, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tallinn", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 24.697266, 59.445075 ] } } +{ "type": "Feature", "properties": { "NAME": "Andorra", "tippecanoe:retain_points_multiplier_sequence": 13, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 1.494141, 42.488302 ] } } , -{ "type": "Feature", "properties": { "NAME": "Helsinki", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ 24.960938, 60.196156 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain", "tippecanoe:retain_points_multiplier_sequence": 14, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingstown", "tippecanoe:retain_points_multiplier_sequence": 14, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } +{ "type": "Feature", "properties": { "NAME": "Kigali", "tippecanoe:retain_points_multiplier_sequence": 15, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.933227 ] } } , -{ "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": "Mbabane", "tippecanoe:retain_points_multiplier_sequence": 16, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.352498 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bridgetown", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -59.589844, 13.068777 ] } } +{ "type": "Feature", "properties": { "NAME": "Juba", "tippecanoe:retain_points_multiplier_sequence": 17, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama", "tippecanoe:retain_points_multiplier_sequence": 16, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 50.625000, 26.273714 ] } } +{ "type": "Feature", "properties": { "NAME": "The Hague", "tippecanoe:retain_points_multiplier_sequence": 18, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 52.106505 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dubai", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.244696 ] } } +{ "type": "Feature", "properties": { "NAME": "Ljubljana", "tippecanoe:retain_points_multiplier_sequence": 19, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 46.073231 ] } } , -{ "type": "Feature", "properties": { "NAME": "Doha", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 51.503906, 25.324167 ] } } +{ "type": "Feature", "properties": { "NAME": "Bratislava", "tippecanoe:retain_points_multiplier_sequence": 20, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.166085 ] } } , -{ "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": "Doha", "tippecanoe:retain_points_multiplier_sequence": 21, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 51.503906, 25.324167 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 28.212891, -25.720735 ] } } +{ "type": "Feature", "properties": { "NAME": "Podgorica", "tippecanoe:retain_points_multiplier_sequence": 22, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 19.248047, 42.488302 ] } } , -{ "type": "Feature", "properties": { "NAME": "Mbabane", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.352498 ] } } +{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte", "tippecanoe:retain_points_multiplier_sequence": 23, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } , -{ "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": "Baguio City", "tippecanoe:retain_points_multiplier_sequence": 24, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 120.585938, 16.467695 ] } } , -{ "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": "Dodoma", "tippecanoe:retain_points_multiplier_sequence": 25, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 35.771484, -6.140555 ] } } , -{ "type": "Feature", "properties": { "NAME": "Santo Domingo", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -69.873047, 18.479609 ] } } +{ "type": "Feature", "properties": { "NAME": "Bern", "tippecanoe:retain_points_multiplier_sequence": 26, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo", "tippecanoe:retain_points_multiplier_sequence": 33, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Laayoune", "tippecanoe:retain_points_multiplier_sequence": 27, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } +{ "type": "Feature", "properties": { "NAME": "Pristina", "tippecanoe:retain_points_multiplier_sequence": 28, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.682435 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 0.351560 ] } } +{ "type": "Feature", "properties": { "NAME": "Roseau", "tippecanoe:retain_points_multiplier_sequence": 29, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.347656, 15.284185 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala", "tippecanoe:retain_points_multiplier_sequence": 35, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +{ "type": "Feature", "properties": { "NAME": "Djibouti", "tippecanoe:retain_points_multiplier_sequence": 30, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 43.154297, 11.609193 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chicago", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -87.714844, 41.836828 ] } } +{ "type": "Feature", "properties": { "NAME": "Putrajaya", "tippecanoe:retain_points_multiplier_sequence": 31, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 2.899153 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -79.453125, 43.707594 ] } } +{ "type": "Feature", "properties": { "NAME": "Kyoto", "tippecanoe:retain_points_multiplier_sequence": 32, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 135.791016, 35.029996 ] } } , -{ "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": "Banjul", "tippecanoe:retain_points_multiplier_sequence": 33, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -16.611328, 13.496473 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bishkek", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 74.619141, 42.875964 ] } } +{ "type": "Feature", "properties": { "NAME": "Skopje", "tippecanoe:retain_points_multiplier_sequence": 34, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 41.967659 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ 69.257812, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Bridgetown", "tippecanoe:retain_points_multiplier_sequence": 35, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -59.589844, 13.068777 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ouagadougou", "tippecanoe:retain_points_multiplier_sequence": 46, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -1.494141, 12.382928 ] } } +{ "type": "Feature", "properties": { "NAME": "Porto-Novo", "tippecanoe:retain_points_multiplier_sequence": 36, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 2.636719, 6.489983 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.839170 ] } } +{ "type": "Feature", "properties": { "NAME": "Bujumbura", "tippecanoe:retain_points_multiplier_sequence": 37, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.337954 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monrovia", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown", "tippecanoe:retain_points_multiplier_sequence": 38, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta", "tippecanoe:retain_points_multiplier_sequence": 47, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries", "tippecanoe:retain_points_multiplier_sequence": 39, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } , -{ "type": "Feature", "properties": { "NAME": "Niamey", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.496473 ] } } +{ "type": "Feature", "properties": { "NAME": "Basseterre", "tippecanoe:retain_points_multiplier_sequence": 40, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -62.753906, 17.308688 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lome", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis", "tippecanoe:retain_points_multiplier_sequence": 41, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 57.480469, -20.138470 ] } } , -{ "type": "Feature", "properties": { "NAME": "Male", "tippecanoe:retain_points_multiplier_sequence": 48, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 73.476562, 4.127285 ] } } +{ "type": "Feature", "properties": { "NAME": "Saint George's", "tippecanoe:retain_points_multiplier_sequence": 42, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.699219, 12.039321 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } +{ "type": "Feature", "properties": { "NAME": "Manama", "tippecanoe:retain_points_multiplier_sequence": 43, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 50.625000, 26.273714 ] } } , -{ "type": "Feature", "properties": { "NAME": "Colombo", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 79.892578, 6.926427 ] } } +{ "type": "Feature", "properties": { "NAME": "Saint John's", "tippecanoe:retain_points_multiplier_sequence": 44, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.875000, 17.140790 ] } } , -{ "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": "Montevideo", "tippecanoe:retain_points_multiplier_sequence": 45, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.885931 ] } } , -{ "type": "Feature", "properties": { "NAME": "Istanbul", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } +{ "type": "Feature", "properties": { "NAME": "Lome", "tippecanoe:retain_points_multiplier_sequence": 46, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis", "tippecanoe:retain_points_multiplier_sequence": 47, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Khartoum", "tippecanoe:retain_points_multiplier_sequence": 54, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.519531, 15.623037 ] } } +{ "type": "Feature", "properties": { "NAME": "Abu Dhabi", "tippecanoe:retain_points_multiplier_sequence": 48, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 54.404297, 24.447150 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kampala", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, 0.351560 ] } } +{ "type": "Feature", "properties": { "NAME": "Ashgabat", "tippecanoe:retain_points_multiplier_sequence": 49, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 58.359375, 37.926868 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Lusaka", "tippecanoe:retain_points_multiplier_sequence": 50, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 28.300781, -15.453680 ] } } , -{ "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": "Harare", "tippecanoe:retain_points_multiplier_sequence": 51, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.025391, -17.811456 ] } } , -{ "type": "Feature", "properties": { "NAME": "London", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -0.087891, 51.508742 ] } } +{ "type": "Feature", "properties": { "NAME": "Dili", "tippecanoe:retain_points_multiplier_sequence": 52, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } , -{ "type": "Feature", "properties": { "NAME": "Praia", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -23.554688, 14.944785 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Vila", "tippecanoe:retain_points_multiplier_sequence": 53, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 168.310547, -17.727759 ] } } , -{ "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": "Tegucigalpa", "tippecanoe:retain_points_multiplier_sequence": 54, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -87.187500, 14.093957 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vientiane", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ 102.568359, 17.978733 ] } } +{ "type": "Feature", "properties": { "NAME": "Georgetown", "tippecanoe:retain_points_multiplier_sequence": 55, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -58.183594, 6.839170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Hanoi", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ 105.820312, 21.043491 ] } } +{ "type": "Feature", "properties": { "NAME": "Reykjavík", "tippecanoe:retain_points_multiplier_sequence": 56, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -21.972656, 64.168107 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lima", "tippecanoe:retain_points_multiplier_sequence": 69, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -77.080078, -12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-au-Prince", "tippecanoe:retain_points_multiplier_sequence": 57, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.562947 ] } } , -{ "type": "Feature", "properties": { "NAME": "La Paz", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -68.115234, -16.467695 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala", "tippecanoe:retain_points_multiplier_sequence": 58, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.607422, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valparaiso", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.063924 ] } } +{ "type": "Feature", "properties": { "NAME": "Paramaribo", "tippecanoe:retain_points_multiplier_sequence": 59, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -55.195312, 5.878332 ] } } , -{ "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": "Niamey", "tippecanoe:retain_points_multiplier_sequence": 60, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.496473 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.268157 ] } } +{ "type": "Feature", "properties": { "NAME": "Dushanbe", "tippecanoe:retain_points_multiplier_sequence": 61, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 68.730469, 38.548165 ] } } , -{ "type": "Feature", "properties": { "NAME": "Prague", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 50.064192 ] } } +{ "type": "Feature", "properties": { "NAME": "Asuncion", "tippecanoe:retain_points_multiplier_sequence": 62, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -57.656250, -25.324167 ] } } , -{ "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": "Managua", "tippecanoe:retain_points_multiplier_sequence": 63, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -86.308594, 12.125264 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luanda", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ 13.271484, -8.841651 ] } } +{ "type": "Feature", "properties": { "NAME": "Freetown", "tippecanoe:retain_points_multiplier_sequence": 64, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -13.271484, 8.494105 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ 17.050781, -22.593726 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad", "tippecanoe:retain_points_multiplier_sequence": 65, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 73.125000, 33.724340 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vancouver", "tippecanoe:retain_points_multiplier_sequence": 76, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +{ "type": "Feature", "properties": { "NAME": "Kathmandu", "tippecanoe:retain_points_multiplier_sequence": 66, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 85.341797, 27.683528 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Francisco", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +{ "type": "Feature", "properties": { "NAME": "Bloemfontein", "tippecanoe:retain_points_multiplier_sequence": 67, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 26.191406, -29.152161 ] } } , -{ "type": "Feature", "properties": { "NAME": "Los Angeles", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.016242 ] } } +{ "type": "Feature", "properties": { "NAME": "Pretoria", "tippecanoe:retain_points_multiplier_sequence": 68, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 28.212891, -25.720735 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kabul", "tippecanoe:retain_points_multiplier_sequence": 78, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 69.169922, 34.524661 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Moresby", "tippecanoe:retain_points_multiplier_sequence": 69, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 147.216797, -9.449062 ] } } , -{ "type": "Feature", "properties": { "NAME": "Islamabad", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 73.125000, 33.724340 ] } } +{ "type": "Feature", "properties": { "NAME": "Honiara", "tippecanoe:retain_points_multiplier_sequence": 70, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ 77.167969, 28.613459 ] } } +{ "type": "Feature", "properties": { "NAME": "Panama City", "tippecanoe:retain_points_multiplier_sequence": 71, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.928487 ] } } , -{ "type": "Feature", "properties": { "NAME": "New York", "tippecanoe:retain_points_multiplier_sequence": 81, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat", "tippecanoe:retain_points_multiplier_sequence": 72, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -6.855469, 34.016242 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nassau", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +{ "type": "Feature", "properties": { "NAME": "Chisinau", "tippecanoe:retain_points_multiplier_sequence": 73, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } , -{ "type": "Feature", "properties": { "NAME": "Belmopan", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.224758 ] } } +{ "type": "Feature", "properties": { "NAME": "Maputo", "tippecanoe:retain_points_multiplier_sequence": 74, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rome", "tippecanoe:retain_points_multiplier_sequence": 84, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "Mogadishu", "tippecanoe:retain_points_multiplier_sequence": 75, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 45.351562, 2.108899 ] } } , -{ "type": "Feature", "properties": { "NAME": "Budapest", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } +{ "type": "Feature", "properties": { "NAME": "Muscat", "tippecanoe:retain_points_multiplier_sequence": 76, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 58.623047, 23.644524 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bratislava", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.166085 ] } } +{ "type": "Feature", "properties": { "NAME": "Colombo", "tippecanoe:retain_points_multiplier_sequence": 77, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 79.892578, 6.926427 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nairobi", "tippecanoe:retain_points_multiplier_sequence": 85, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.318243 ] } } +{ "type": "Feature", "properties": { "NAME": "Ulaanbaatar", "tippecanoe:retain_points_multiplier_sequence": 78, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 106.875000, 47.931066 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dar es Salaam", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ 39.287109, -6.839170 ] } } +{ "type": "Feature", "properties": { "NAME": "Wellington", "tippecanoe:retain_points_multiplier_sequence": 79, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.814453, -41.310824 ], [ -185.185547, -41.310824 ] ] } } , -{ "type": "Feature", "properties": { "NAME": "Dodoma", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 35.771484, -6.140555 ] } } +{ "type": "Feature", "properties": { "NAME": "Windhoek", "tippecanoe:retain_points_multiplier_sequence": 80, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 17.050781, -22.593726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Jakarta", "tippecanoe:retain_points_multiplier_sequence": 86, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 106.787109, -6.140555 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja", "tippecanoe:retain_points_multiplier_sequence": 81, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 7.558594, 9.102097 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port Moresby", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 147.216797, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Bissau", "tippecanoe:retain_points_multiplier_sequence": 82, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -15.556641, 11.867351 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +{ "type": "Feature", "properties": { "NAME": "Amman", "tippecanoe:retain_points_multiplier_sequence": 83, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 35.947266, 31.952162 ] } } , -{ "type": "Feature", "properties": { "NAME": "Cairo", "tippecanoe:retain_points_multiplier_sequence": 87, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.289062, 30.069094 ] } } +{ "type": "Feature", "properties": { "NAME": "Vilnius", "tippecanoe:retain_points_multiplier_sequence": 84, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.673831 ] } } , -{ "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": "Riga", "tippecanoe:retain_points_multiplier_sequence": 85, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Beirut", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +{ "type": "Feature", "properties": { "NAME": "Bishkek", "tippecanoe:retain_points_multiplier_sequence": 86, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 74.619141, 42.875964 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sao Paulo", "tippecanoe:retain_points_multiplier_sequence": 91, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -46.669922, -23.563987 ] } } +{ "type": "Feature", "properties": { "NAME": "Maseru", "tippecanoe:retain_points_multiplier_sequence": 87, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 27.509766, -29.305561 ] } } , -{ "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": "Antananarivo", "tippecanoe:retain_points_multiplier_sequence": 88, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 47.548828, -18.895893 ] } } , -{ "type": "Feature", "properties": { "NAME": "Montevideo", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.885931 ] } } +{ "type": "Feature", "properties": { "NAME": "Quito", "tippecanoe:retain_points_multiplier_sequence": 89, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.175781 ] } } , -{ "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": "San Jose", "tippecanoe:retain_points_multiplier_sequence": 90, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -84.111328, 9.968851 ] } } , -{ "type": "Feature", "properties": { "NAME": "Taipei", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.005973 ] } } +{ "type": "Feature", "properties": { "NAME": "San Salvador", "tippecanoe:retain_points_multiplier_sequence": 91, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.752725 ] } } , -{ "type": "Feature", "properties": { "NAME": "Shanghai", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ 121.464844, 31.203405 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingston", "tippecanoe:retain_points_multiplier_sequence": 92, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -76.728516, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ndjamena", "tippecanoe:retain_points_multiplier_sequence": 93, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Malabo", "tippecanoe:retain_points_multiplier_sequence": 94, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Asmara", "tippecanoe:retain_points_multiplier_sequence": 95, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.368950 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Zagreb", "tippecanoe:retain_points_multiplier_sequence": 96, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.828799 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tallinn", "tippecanoe:retain_points_multiplier_sequence": 97, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 24.697266, 59.445075 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lilongwe", "tippecanoe:retain_points_multiplier_sequence": 98, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 33.750000, -14.008696 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Guatemala", "tippecanoe:retain_points_multiplier_sequence": 99, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Libreville", "tippecanoe:retain_points_multiplier_sequence": 100, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 0.351560 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Suva", "tippecanoe:retain_points_multiplier_sequence": 101, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 178.417969, -18.145852 ], [ -181.582031, -18.145852 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Valparaiso", "tippecanoe:retain_points_multiplier_sequence": 102, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.063924 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nouakchott", "tippecanoe:retain_points_multiplier_sequence": 103, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -15.996094, 18.062312 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bamako", "tippecanoe:retain_points_multiplier_sequence": 104, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.640338 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Beirut", "tippecanoe:retain_points_multiplier_sequence": 105, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tbilisi", "tippecanoe:retain_points_multiplier_sequence": 106, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.824219, 41.705729 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Astana", "tippecanoe:retain_points_multiplier_sequence": 107, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 71.455078, 51.179343 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vientiane", "tippecanoe:retain_points_multiplier_sequence": 108, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 102.568359, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brazzaville", "tippecanoe:retain_points_multiplier_sequence": 109, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.214943 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Conakry", "tippecanoe:retain_points_multiplier_sequence": 110, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Yamoussoukro", "tippecanoe:retain_points_multiplier_sequence": 111, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.839170 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ottawa", "tippecanoe:retain_points_multiplier_sequence": 112, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -75.673828, 45.398450 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Belgrade", "tippecanoe:retain_points_multiplier_sequence": 113, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.840291 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bandar Seri Begawan", "tippecanoe:retain_points_multiplier_sequence": 114, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 114.960938, 4.915833 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sucre", "tippecanoe:retain_points_multiplier_sequence": 115, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -65.302734, -19.062118 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Belmopan", "tippecanoe:retain_points_multiplier_sequence": 116, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.224758 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangui", "tippecanoe:retain_points_multiplier_sequence": 117, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.390229 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Yaounde", "tippecanoe:retain_points_multiplier_sequence": 118, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tirana", "tippecanoe:retain_points_multiplier_sequence": 119, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 19.775391, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Yerevan", "tippecanoe:retain_points_multiplier_sequence": 120, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.472656, 40.178873 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Baku", "tippecanoe:retain_points_multiplier_sequence": 121, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 49.833984, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Phnom Penh", "tippecanoe:retain_points_multiplier_sequence": 122, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 104.941406, 11.523088 ] } } +, +{ "type": "Feature", "properties": { "NAME": "La Paz", "tippecanoe:retain_points_multiplier_sequence": 123, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -68.115234, -16.467695 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cotonou", "tippecanoe:retain_points_multiplier_sequence": 124, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 2.548828, 6.402648 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sofia", "tippecanoe:retain_points_multiplier_sequence": 125, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 23.291016, 42.682435 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Minsk", "tippecanoe:retain_points_multiplier_sequence": 126, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 27.597656, 53.904338 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Thimphu", "tippecanoe:retain_points_multiplier_sequence": 127, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.449790 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Gaborone", "tippecanoe:retain_points_multiplier_sequence": 128, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.607069 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Canberra", "tippecanoe:retain_points_multiplier_sequence": 129, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 149.150391, -35.317366 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ouagadougou", "tippecanoe:retain_points_multiplier_sequence": 130, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -1.494141, 12.382928 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sarajevo", "tippecanoe:retain_points_multiplier_sequence": 131, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 18.369141, 43.834527 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Naypyidaw", "tippecanoe:retain_points_multiplier_sequence": 132, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 19.808054 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nukualofa", "tippecanoe:retain_points_multiplier_sequence": 133, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -175.253906, -21.125498 ], [ 184.746094, -21.125498 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hargeysa", "tippecanoe:retain_points_multiplier_sequence": 134, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 9.535749 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Victoria", "tippecanoe:retain_points_multiplier_sequence": 135, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.653080 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sao Tome", "tippecanoe:retain_points_multiplier_sequence": 136, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 6.767578, 0.351560 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Apia", "tippecanoe:retain_points_multiplier_sequence": 137, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Valletta", "tippecanoe:retain_points_multiplier_sequence": 138, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Male", "tippecanoe:retain_points_multiplier_sequence": 139, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 73.476562, 4.127285 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Jerusalem", "tippecanoe:retain_points_multiplier_sequence": 140, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 35.244141, 31.802893 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Praia", "tippecanoe:retain_points_multiplier_sequence": 141, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -23.554688, 14.944785 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nassau", "tippecanoe:retain_points_multiplier_sequence": 142, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nicosia", "tippecanoe:retain_points_multiplier_sequence": 143, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 33.398438, 35.173808 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hanoi", "tippecanoe:retain_points_multiplier_sequence": 144, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 105.820312, 21.043491 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ankara", "tippecanoe:retain_points_multiplier_sequence": 145, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.871094, 39.909736 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Budapest", "tippecanoe:retain_points_multiplier_sequence": 146, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sanaa", "tippecanoe:retain_points_multiplier_sequence": 147, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.368950 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bucharest", "tippecanoe:retain_points_multiplier_sequence": 148, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.465151 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Damascus", "tippecanoe:retain_points_multiplier_sequence": 149, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 36.298828, 33.504759 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lisbon", "tippecanoe:retain_points_multiplier_sequence": 150, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.754083 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Khartoum", "tippecanoe:retain_points_multiplier_sequence": 151, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.519531, 15.623037 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Oslo", "tippecanoe:retain_points_multiplier_sequence": 152, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 10.722656, 59.933000 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Warsaw", "tippecanoe:retain_points_multiplier_sequence": 153, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.268157 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Pyongyang", "tippecanoe:retain_points_multiplier_sequence": 154, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 125.771484, 39.027719 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dar es Salaam", "tippecanoe:retain_points_multiplier_sequence": 155, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 39.287109, -6.839170 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dublin", "tippecanoe:retain_points_multiplier_sequence": 156, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Monrovia", "tippecanoe:retain_points_multiplier_sequence": 157, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kuala Lumpur", "tippecanoe:retain_points_multiplier_sequence": 158, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Havana", "tippecanoe:retain_points_multiplier_sequence": 159, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.160563 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Prague", "tippecanoe:retain_points_multiplier_sequence": 160, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 50.064192 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kuwait", "tippecanoe:retain_points_multiplier_sequence": 161, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Santo Domingo", "tippecanoe:retain_points_multiplier_sequence": 162, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -69.873047, 18.479609 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Accra", "tippecanoe:retain_points_multiplier_sequence": 163, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -0.175781, 5.528511 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tripoli", "tippecanoe:retain_points_multiplier_sequence": 164, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.916485 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo", "tippecanoe:retain_points_multiplier_sequence": 165, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 34.804688, 32.101190 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Helsinki", "tippecanoe:retain_points_multiplier_sequence": 166, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 24.960938, 60.196156 ] } } +, +{ "type": "Feature", "properties": { "NAME": "København", "tippecanoe:retain_points_multiplier_sequence": 167, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.568359, 55.677584 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Abidjan", "tippecanoe:retain_points_multiplier_sequence": 168, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.353521 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brasilia", "tippecanoe:retain_points_multiplier_sequence": 169, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brussels", "tippecanoe:retain_points_multiplier_sequence": 170, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dhaka", "tippecanoe:retain_points_multiplier_sequence": 171, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 90.439453, 23.725012 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Luanda", "tippecanoe:retain_points_multiplier_sequence": 172, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 13.271484, -8.841651 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Algiers", "tippecanoe:retain_points_multiplier_sequence": 173, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 3.076172, 36.738884 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rangoon", "tippecanoe:retain_points_multiplier_sequence": 174, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 16.804541 ] } } +, +{ "type": "Feature", "properties": { "NAME": "San Francisco", "tippecanoe:retain_points_multiplier_sequence": 175, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Denver", "tippecanoe:retain_points_multiplier_sequence": 176, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -105.029297, 39.774769 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Houston", "tippecanoe:retain_points_multiplier_sequence": 177, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -95.361328, 29.840644 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Miami", "tippecanoe:retain_points_multiplier_sequence": 178, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -80.244141, 25.799891 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Atlanta", "tippecanoe:retain_points_multiplier_sequence": 179, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -84.375000, 33.797409 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Chicago", "tippecanoe:retain_points_multiplier_sequence": 180, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -87.714844, 41.836828 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Caracas", "tippecanoe:retain_points_multiplier_sequence": 181, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -66.884766, 10.487812 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kiev", "tippecanoe:retain_points_multiplier_sequence": 182, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.457504 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dubai", "tippecanoe:retain_points_multiplier_sequence": 183, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.244696 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tashkent", "tippecanoe:retain_points_multiplier_sequence": 184, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 69.257812, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Madrid", "tippecanoe:retain_points_multiplier_sequence": 185, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Geneva", "tippecanoe:retain_points_multiplier_sequence": 186, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Stockholm", "tippecanoe:retain_points_multiplier_sequence": 187, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangkok", "tippecanoe:retain_points_multiplier_sequence": 188, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 100.546875, 13.752725 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lima", "tippecanoe:retain_points_multiplier_sequence": 189, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -77.080078, -12.039321 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dakar", "tippecanoe:retain_points_multiplier_sequence": 190, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -17.490234, 14.689881 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Johannesburg", "tippecanoe:retain_points_multiplier_sequence": 191, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 28.037109, -26.194877 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Amsterdam", "tippecanoe:retain_points_multiplier_sequence": 192, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.375599 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Casablanca", "tippecanoe:retain_points_multiplier_sequence": 193, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -7.646484, 33.578015 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul", "tippecanoe:retain_points_multiplier_sequence": 194, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Manila", "tippecanoe:retain_points_multiplier_sequence": 195, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 120.937500, 14.604847 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Monterrey", "tippecanoe:retain_points_multiplier_sequence": 196, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -100.371094, 25.641526 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Auckland", "tippecanoe:retain_points_multiplier_sequence": 197, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.726562, -36.879621 ], [ -185.273438, -36.879621 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Berlin", "tippecanoe:retain_points_multiplier_sequence": 198, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 13.359375, 52.536273 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Urumqi", "tippecanoe:retain_points_multiplier_sequence": 199, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 87.539062, 43.834527 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Chengdu", "tippecanoe:retain_points_multiplier_sequence": 200, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 104.062500, 30.675715 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Osaka", "tippecanoe:retain_points_multiplier_sequence": 201, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kinshasa", "tippecanoe:retain_points_multiplier_sequence": 202, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New Delhi", "tippecanoe:retain_points_multiplier_sequence": 203, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 77.167969, 28.613459 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangalore", "tippecanoe:retain_points_multiplier_sequence": 204, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 77.519531, 12.983148 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Athens", "tippecanoe:retain_points_multiplier_sequence": 205, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.996163 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Baghdad", "tippecanoe:retain_points_multiplier_sequence": 206, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.358062 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Addis Ababa", "tippecanoe:retain_points_multiplier_sequence": 207, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 38.671875, 9.015302 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tehran", "tippecanoe:retain_points_multiplier_sequence": 208, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vancouver", "tippecanoe:retain_points_multiplier_sequence": 209, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Toronto", "tippecanoe:retain_points_multiplier_sequence": 210, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -79.453125, 43.707594 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Buenos Aires", "tippecanoe:retain_points_multiplier_sequence": 211, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -58.359375, -34.597042 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kabul", "tippecanoe:retain_points_multiplier_sequence": 212, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 69.169922, 34.524661 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vienna", "tippecanoe:retain_points_multiplier_sequence": 213, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 16.347656, 48.224673 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Melbourne", "tippecanoe:retain_points_multiplier_sequence": 214, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 144.931641, -37.788081 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Taipei", "tippecanoe:retain_points_multiplier_sequence": 215, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.005973 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Los Angeles", "tippecanoe:retain_points_multiplier_sequence": 216, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Washington, D.C.", "tippecanoe:retain_points_multiplier_sequence": 217, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -76.992188, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York", "tippecanoe:retain_points_multiplier_sequence": 218, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } +, +{ "type": "Feature", "properties": { "NAME": "London", "tippecanoe:retain_points_multiplier_sequence": 219, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -0.087891, 51.508742 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Istanbul", "tippecanoe:retain_points_multiplier_sequence": 220, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Riyadh", "tippecanoe:retain_points_multiplier_sequence": 221, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 46.757812, 24.607069 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cape Town", "tippecanoe:retain_points_multiplier_sequence": 222, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 18.457031, -33.943360 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Moscow", "tippecanoe:retain_points_multiplier_sequence": 223, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.776573 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mexico City", "tippecanoe:retain_points_multiplier_sequence": 224, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.476950 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lagos", "tippecanoe:retain_points_multiplier_sequence": 225, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 3.427734, 6.402648 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rome", "tippecanoe:retain_points_multiplier_sequence": 226, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Beijing", "tippecanoe:retain_points_multiplier_sequence": 227, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 116.367188, 39.909736 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nairobi", "tippecanoe:retain_points_multiplier_sequence": 228, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.318243 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Jakarta", "tippecanoe:retain_points_multiplier_sequence": 229, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 106.787109, -6.140555 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bogota", "tippecanoe:retain_points_multiplier_sequence": 230, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -74.091797, 4.565474 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cairo", "tippecanoe:retain_points_multiplier_sequence": 231, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.289062, 30.069094 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Shanghai", "tippecanoe:retain_points_multiplier_sequence": 232, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 121.464844, 31.203405 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tokyo", "tippecanoe:retain_points_multiplier_sequence": 233, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mumbai", "tippecanoe:retain_points_multiplier_sequence": 234, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 72.861328, 18.979026 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Paris", "tippecanoe:retain_points_multiplier_sequence": 235, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 2.373047, 48.864715 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Santiago", "tippecanoe:retain_points_multiplier_sequence": 236, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -70.664062, -33.431441 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kolkata", "tippecanoe:retain_points_multiplier_sequence": 237, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.512557 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rio de Janeiro", "tippecanoe:retain_points_multiplier_sequence": 238, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -43.242188, -22.917923 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sao Paulo", "tippecanoe:retain_points_multiplier_sequence": 239, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -46.669922, -23.563987 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sydney", "tippecanoe:retain_points_multiplier_sequence": 240, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 151.171875, -33.943360 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Singapore", "tippecanoe:retain_points_multiplier_sequence": 241, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 103.886719, 1.318243 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hong Kong", "tippecanoe:retain_points_multiplier_sequence": 242, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.268764 ] } } ] } ] } ] } diff --git a/tests/ne_110m_populated_places/out/-z1_-M10000_--coalesce-smallest-as-needed.json b/tests/ne_110m_populated_places/out/-z1_-M10000_--coalesce-smallest-as-needed.json index 685a24dde..4b7c56ab5 100644 --- a/tests/ne_110m_populated_places/out/-z1_-M10000_--coalesce-smallest-as-needed.json +++ b/tests/ne_110m_populated_places/out/-z1_-M10000_--coalesce-smallest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "1", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-z1_-M10000_--coalesce-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":145,\"coalesced_as_needed\":77,\"tile_size_desired\":33283},{\"coalesced_as_needed\":226,\"tile_size_desired\":44899}]", +"strategies": "[{\"dropped_by_rate\":145,\"coalesced_as_needed\":80,\"tile_size_desired\":34115},{\"coalesced_as_needed\":226,\"tile_size_desired\":44899}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,44 +17,38 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.125000, 33.943360 ], [ -100.283203, 25.641526 ] ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.125000, 33.943360 ], [ -95.361328, 29.840644 ], [ -90.527344, 14.604847 ], [ -75.673828, 45.398450 ], [ -82.353516, 23.079732 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -90.527344, 14.604847 ], [ -79.365234, 43.707594 ], [ -82.353516, 23.079732 ], [ -76.992188, 38.891033 ] ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -88.769531, 17.224758 ], [ -89.208984, 13.667338 ], [ -79.541016, 8.928487 ], [ -72.333984, 18.562947 ], [ -61.347656, 15.284185 ], [ -61.699219, 12.039321 ], [ -66.884766, 10.487812 ], [ -55.107422, 5.790897 ], [ -7.558594, 33.578015 ], [ -9.667969, 26.115986 ], [ -15.996094, 18.062312 ], [ -13.623047, 9.535749 ] ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -74.003906, 40.713956 ], [ -88.769531, 17.224758 ], [ -86.220703, 12.125264 ], [ -79.541016, 8.928487 ], [ -69.873047, 18.479609 ], [ -60.996094, 14.008696 ], [ -61.699219, 12.039321 ], [ -61.523438, 10.660608 ], [ -55.107422, 5.790897 ], [ -0.087891, 51.508742 ] ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -62.666016, 17.308688 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laâyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laâyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -13.183594, 27.137368 ], [ -6.855469, 34.016242 ], [ -9.667969, 26.115986 ], [ -16.611328, 13.410994 ], [ -13.623047, 9.535749 ], [ -1.494141, 12.382928 ], [ -5.273438, 6.839170 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bamako", "DIFFASCII": 0, "NAMEASCII": "Bamako", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mali", "SOV_A3": "MLI", "ADM0NAME": "Mali", "ADM0_A3": "MLI", "ADM1NAME": "Bamako", "ISO_A2": "ML", "LATITUDE": 12.650015, "LONGITUDE": -8.000039, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1297281, "POP_OTHER": 1301407, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2460596, "MEGANAME": "Bamako", "LS_NAME": "Bamako", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1316564, "MAX_POP20": 1316564, "MAX_POP50": 1316564, "MAX_POP300": 1316564, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 172, "MAX_AREAKM": 172, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 106, "MAX_PERKM": 106, "MIN_PERMI": 66, "MAX_PERMI": 66, "MIN_BBXMIN": -8.058333, "MAX_BBXMIN": -8.058333, "MIN_BBXMAX": -7.908333, "MAX_BBXMAX": -7.908333, "MIN_BBYMIN": 12.541667, "MAX_BBYMIN": 12.541667, "MIN_BBYMAX": 12.716667, "MAX_BBYMAX": 12.716667, "MEAN_BBXC": -7.987419, "MEAN_BBYC": 12.626173, "COMPARE": 0, "GN_ASCII": "Bamako", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1297281, "ELEVATION": 0, "GTOPO30": 350, "TIMEZONE": "Africa/Bamako", "GEONAMESNO": "GeoNames match general.", "UN_FID": 349, "UN_ADM0": "Mali", "UN_LAT": 12.65, "UN_LONG": -7.98, "POP1950": 89, "POP1955": 111, "POP1960": 130, "POP1965": 158, "POP1970": 222, "POP1975": 363, "POP1980": 489, "POP1985": 608, "POP1990": 746, "POP1995": 910, "POP2000": 1110, "POP2005": 1368, "POP2010": 1494, "POP2015": 1708, "POP2020": 2130, "POP2025": 2633, "POP2050": 3214 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -7.998047, 12.640338 ], [ -5.273438, 6.839170 ], [ -0.175781, 5.528511 ], [ -68.115234, -16.551962 ], [ -65.214844, -19.062118 ] ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -175.166016, -21.125498 ], [ 184.833984, -21.125498 ], [ -71.630859, -33.063924 ] ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.263671 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunción", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunción", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunción", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -57.656250, -25.324167 ], [ -56.162109, -34.885931 ], [ 4.921875, 52.321911 ], [ 6.152344, 49.610710 ], [ 6.152344, 46.195042 ], [ 9.580078, 47.100045 ], [ 13.447266, 52.536273 ], [ 21.005859, 52.214339 ], [ 15.996094, 45.767523 ], [ 12.480469, 41.902277 ], [ 19.072266, 47.457809 ], [ 19.248047, 42.423457 ], [ 21.181641, 42.682435 ], [ 24.960938, 60.152442 ], [ 30.498047, 50.401515 ], [ 28.916016, 46.980252 ], [ 37.617188, 55.727110 ], [ 10.195312, 36.809285 ], [ 14.501953, 35.889050 ], [ 2.548828, 6.402648 ], [ 3.427734, 6.402648 ], [ 8.789062, 3.688855 ], [ 15.029297, 12.125264 ], [ 23.730469, 37.996163 ] ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sucre", "DIFFASCII": 0, "NAMEASCII": "Sucre", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official (const", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "Chuquisaca", "ISO_A2": "BO", "LATITUDE": -19.040971, "LONGITUDE": -65.259516, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224838, "POP_MIN": 221736, "POP_OTHER": 221736, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3903987, "LS_NAME": "Sucre", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 221736, "MAX_POP20": 221736, "MAX_POP50": 221736, "MAX_POP300": 221736, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 34, "MAX_AREAKM": 34, "MIN_AREAMI": 13, "MAX_AREAMI": 13, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": -65.3, "MAX_BBXMIN": -65.3, "MIN_BBXMAX": -65.225, "MAX_BBXMAX": -65.225, "MIN_BBYMIN": -19.066667, "MAX_BBYMIN": -19.066667, "MIN_BBYMAX": -18.991667, "MAX_BBYMAX": -18.991667, "MEAN_BBXC": -65.260317, "MEAN_BBYC": -19.030556, "COMPARE": 0, "GN_ASCII": "Sucre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 224838, "ELEVATION": 0, "GTOPO30": 2759, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -65.214844, -19.062118 ], [ -58.359375, -34.597042 ], [ -56.162109, -34.885931 ], [ 18.105469, 59.355596 ], [ 4.921875, 52.321911 ], [ 2.373047, 48.864715 ], [ 6.152344, 46.195042 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936 }, "geometry": { "type": "Point", "coordinates": [ 10.810547, 59.888937 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 7.470703, 43.707594 ], [ 13.447266, 52.536273 ], [ 16.347656, 48.166085 ], [ 15.996094, 45.767523 ], [ 12.480469, 41.902277 ], [ 19.072266, 47.457809 ], [ 20.478516, 44.777936 ], [ 21.181641, 42.682435 ], [ 24.785156, 59.400365 ], [ 25.312500, 54.673831 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.673831 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Sofia", "DIFFASCII": 0, "NAMEASCII": "Sofia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bulgaria", "SOV_A3": "BGR", "ADM0NAME": "Bulgaria", "ADM0_A3": "BGR", "ADM1NAME": "Grad Sofiya", "ISO_A2": "BG", "LATITUDE": 42.683349, "LONGITUDE": 23.316654, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1185000, "POP_MIN": 874827, "POP_OTHER": 871735, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 727011, "MEGANAME": "Sofia", "LS_NAME": "Sofia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 874827, "MAX_POP20": 874827, "MAX_POP50": 874827, "MAX_POP300": 874827, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 174, "MAX_PERKM": 174, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.208333, "MAX_BBXMIN": 23.208333, "MIN_BBXMAX": 23.45, "MAX_BBXMAX": 23.45, "MIN_BBYMIN": 42.575, "MAX_BBYMIN": 42.575, "MIN_BBYMAX": 42.8, "MAX_BBYMAX": 42.8, "MEAN_BBXC": 23.328319, "MEAN_BBYC": 42.68234, "COMPARE": 0, "GN_ASCII": "Sofia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 42, "GN_POP": 1152556, "ELEVATION": 0, "GTOPO30": 558, "TIMEZONE": "Europe/Sofia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": "Bulgaria", "UN_LAT": 42.7, "UN_LONG": 23.33, "POP1950": 522, "POP1955": 616, "POP1960": 708, "POP1965": 806, "POP1970": 888, "POP1975": 977, "POP1980": 1074, "POP1985": 1181, "POP1990": 1191, "POP1995": 1168, "POP2000": 1128, "POP2005": 1166, "POP2010": 1185, "POP2015": 1212, "POP2020": 1233, "POP2025": 1236, "POP2050": 1236 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 23.378906, 42.682435 ], [ 28.916016, 46.980252 ], [ 44.824219, 41.705729 ], [ 10.195312, 36.809285 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nicosia", "DIFFASCII": 0, "NAMEASCII": "Nicosia", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Capital of both", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cyprus", "SOV_A3": "CYP", "ADM0NAME": "Cyprus", "ADM0_A3": "CYP", "ISO_A2": "CY", "LATITUDE": 35.166676, "LONGITUDE": 33.366635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224300, "POP_MIN": 200452, "POP_OTHER": 222985, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 146268, "LS_NAME": "Nicosia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 224300, "MAX_POP20": 224300, "MAX_POP50": 224300, "MAX_POP300": 224300, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 128, "MAX_AREAKM": 128, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 68, "MAX_PERMI": 68, "MIN_BBXMIN": 33.275, "MAX_BBXMIN": 33.275, "MIN_BBXMAX": 33.425, "MAX_BBXMAX": 33.425, "MIN_BBYMIN": 35.041667, "MAX_BBYMIN": 35.041667, "MIN_BBYMAX": 35.225, "MAX_BBYMAX": 35.225, "MEAN_BBXC": 33.352244, "MEAN_BBYC": 35.15, "COMPARE": 0, "GN_ASCII": "Nicosia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 200452, "ELEVATION": 0, "GTOPO30": 128, "TIMEZONE": "Asia/Nicosia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 33.398438, 35.173808 ], [ 35.507812, 33.870416 ], [ 44.560547, 40.178873 ], [ 35.947266, 31.952162 ], [ 31.640625, 4.828260 ], [ 44.208984, 15.368950 ], [ 38.759766, 9.015302 ] ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 2.109375, 13.496473 ], [ 2.548828, 6.402648 ], [ 7.558594, 9.102097 ], [ 8.789062, 3.688855 ], [ 11.513672, 3.864255 ], [ 23.730469, 37.996163 ], [ 31.289062, 30.069094 ], [ 35.507812, 33.870416 ], [ 44.384766, 33.358062 ], [ 35.947266, 31.952162 ], [ 32.607422, 0.263671 ], [ 44.208984, 15.368950 ], [ 44.121094, 9.535749 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 69.345703, 41.310824 ], [ 87.626953, 43.771094 ], [ 47.988281, 29.382175 ], [ 50.625000, 26.194877 ], [ 54.404297, 24.447150 ] ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 69.345703, 41.310824 ], [ 49.921875, 40.380028 ], [ 47.988281, 29.382175 ], [ 51.591797, 25.244696 ], [ 54.404297, 24.447150 ], [ 45.351562, 2.021065 ], [ 69.169922, 34.524661 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861, "MAX_POP20": 586861, "MAX_POP50": 586861, "MAX_POP300": 586861, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 797000, "ELEVATION": 0, "GTOPO30": 69, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 58.623047, 23.563987 ], [ 69.169922, 34.524661 ], [ 77.255859, 28.613459 ], [ 88.330078, 22.512557 ], [ 77.607422, 12.983148 ], [ 79.980469, 6.839170 ], [ 96.152344, 16.804541 ], [ 102.656250, 17.978733 ], [ 101.689453, 3.162456 ], [ 103.886719, 1.230374 ], [ 121.464844, 31.203405 ], [ 125.771484, 39.027719 ], [ 121.025391, 14.604847 ] ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 85.341797, 27.683528 ], [ 88.330078, 22.512557 ], [ 73.564453, 4.127285 ], [ 79.980469, 6.839170 ], [ 104.062500, 30.675715 ], [ 96.152344, 16.804541 ], [ 105.908203, 21.043491 ], [ 101.689453, 3.162456 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015 }, "geometry": { "type": "Point", "coordinates": [ 90.439453, 23.725012 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861, "MAX_POP20": 11120470, "MAX_POP50": 16510327, "MAX_POP300": 23647944, "MAX_POP310": 137121250, "MAX_NATSCA": 300, "MIN_AREAKM": 2512, "MAX_AREAKM": 118844, "MIN_AREAMI": 970, "MAX_AREAMI": 45886, "MIN_PERKM": 1837, "MAX_PERKM": 93615, "MIN_PERMI": 1141, "MAX_PERMI": 58169, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22, "GN_POP": 7480601, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331, "POP1955": 4628, "POP1960": 4945, "POP1965": 5284, "POP1970": 5646, "POP1975": 6034, "POP1980": 6448, "POP1985": 6890, "POP1990": 7362, "POP1995": 8486, "POP2000": 9782, "POP2005": 10717, "POP2010": 11106, "POP2015": 11741, "POP2020": 12842, "POP2025": 13807, "POP2050": 14545 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 116.367188, 39.909736 ], [ 121.464844, 31.203405 ], [ 127.001953, 37.579413 ], [ 121.025391, 14.604847 ], [ 139.746094, 35.675147 ], [ 173.056641, 1.318243 ], [ -187.031250, 1.318243 ], [ 15.292969, -4.390229 ], [ 18.457031, -33.943360 ], [ 29.355469, -3.425692 ], [ 36.826172, -1.318243 ], [ 39.287109, -6.839170 ], [ 25.927734, -24.686952 ], [ 26.279297, -29.152161 ], [ 31.113281, -26.352498 ], [ 32.607422, -25.958045 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 134.648438, 7.449624 ], [ 139.746094, 35.675147 ], [ 171.386719, 7.100893 ], [ 15.292969, -4.390229 ], [ 29.355469, -3.425692 ], [ 31.025391, -17.811456 ], [ 39.287109, -6.839170 ], [ 43.242188, -11.695273 ], [ 26.279297, -29.152161 ], [ 28.212891, -25.720735 ], [ 32.607422, -25.958045 ], [ 47.548828, -18.895893 ], [ 159.960938, -9.449062 ], [ 179.208984, -8.581021 ], [ -180.791016, -8.581021 ] ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 17.138672, -22.593726 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Port Louis", "DIFFASCII": 0, "NAMEASCII": "Port Louis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritius", "SOV_A3": "MUS", "ADM0NAME": "Mauritius", "ADM0_A3": "MUS", "ISO_A2": "MU", "LATITUDE": -20.166639, "LONGITUDE": 57.499994, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 595491, "POP_MIN": 148416, "POP_OTHER": 304613, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 934154, "LS_NAME": "Port Louis", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 291837, "MAX_POP20": 595491, "MAX_POP50": 595491, "MAX_POP300": 595491, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 152, "MIN_AREAMI": 27, "MAX_AREAMI": 59, "MIN_PERKM": 85, "MAX_PERKM": 154, "MIN_PERMI": 53, "MAX_PERMI": 96, "MIN_BBXMIN": 57.425, "MAX_BBXMIN": 57.425, "MIN_BBXMAX": 57.541667, "MAX_BBXMAX": 57.575, "MIN_BBYMIN": -20.333333, "MAX_BBYMIN": -20.248073, "MIN_BBYMAX": -20.108333, "MAX_BBYMAX": -20.108333, "MEAN_BBXC": 57.491611, "MEAN_BBYC": -20.221833, "COMPARE": 0, "GN_ASCII": "Port Louis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 155226, "ELEVATION": 0, "GTOPO30": 133, "TIMEZONE": "Indian/Mauritius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 57.480469, -20.220966 ], [ 151.171875, -33.943360 ], [ 159.960938, -9.449062 ], [ 178.505859, -18.145852 ], [ -181.582031, -18.145852 ] ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 145.019531, -37.857507 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Wellington", "DIFFASCII": 0, "NAMEASCII": "Wellington", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Manawatu-Wanganui", "ISO_A2": "NZ", "LATITUDE": -41.299974, "LONGITUDE": 174.783274, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 393400, "POP_MIN": 199200, "POP_OTHER": 140594, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2144168, "LS_NAME": "Wellington", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144164, "MAX_POP20": 144164, "MAX_POP50": 144164, "MAX_POP300": 144164, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 79, "MAX_PERKM": 79, "MIN_PERMI": 49, "MAX_PERMI": 49, "MIN_BBXMIN": 174.725, "MAX_BBXMIN": 174.725, "MIN_BBXMAX": 174.841667, "MAX_BBXMAX": 174.841667, "MIN_BBYMIN": -41.35, "MAX_BBYMIN": -41.35, "MIN_BBYMAX": -41.2, "MAX_BBYMAX": -41.2, "MEAN_BBXC": 174.78792, "MEAN_BBYC": -41.285539, "COMPARE": 0, "GN_ASCII": "Wellington", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 5428, "ELEVATION": 0, "GTOPO30": 304, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.814453, -41.310824 ], [ -185.273438, -41.310824 ] ] } } ] } ] } diff --git a/tests/ne_110m_populated_places/out/-z1_-M10000_--drop-smallest-as-needed.json b/tests/ne_110m_populated_places/out/-z1_-M10000_--drop-smallest-as-needed.json index 34ef51cbd..ae76aa05e 100644 --- a/tests/ne_110m_populated_places/out/-z1_-M10000_--drop-smallest-as-needed.json +++ b/tests/ne_110m_populated_places/out/-z1_-M10000_--drop-smallest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "1", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-z1_-M10000_--drop-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":145,\"dropped_as_needed\":76,\"tile_size_desired\":33283},{\"dropped_as_needed\":206,\"tile_size_desired\":44899}]", +"strategies": "[{\"dropped_by_rate\":145,\"dropped_as_needed\":76,\"tile_size_desired\":34115},{\"dropped_as_needed\":206,\"tile_size_desired\":44899}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,7 +17,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo León", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413 }, "geometry": { "type": "Point", "coordinates": [ -100.283203, 25.641526 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780, "MAX_POP20": 885780, "MAX_POP50": 885780, "MAX_POP300": 885780, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 504, "MAX_AREAKM": 504, "MIN_AREAMI": 195, "MAX_AREAMI": 195, "MIN_PERKM": 442, "MAX_PERKM": 442, "MIN_PERMI": 274, "MAX_PERMI": 274, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 812129, "ELEVATION": 0, "GTOPO30": 61, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282, "POP1955": 342, "POP1960": 415, "POP1965": 482, "POP1970": 581, "POP1975": 676, "POP1980": 729, "POP1985": 803, "POP1990": 918, "POP1995": 988, "POP2000": 1079, "POP2005": 1119, "POP2010": 1145, "POP2015": 1182, "POP2020": 1232, "POP2025": 1274, "POP2050": 1315, "CITYALT": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.673828, 45.398450 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.079732 ] } } , @@ -25,37 +25,37 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.107422, 5.790897 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laâyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } , +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -175.166016, -21.125498 ], [ 184.833984, -21.125498 ] ] } } +, { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.263671 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sucre", "DIFFASCII": 0, "NAMEASCII": "Sucre", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official (const", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "Chuquisaca", "ISO_A2": "BO", "LATITUDE": -19.040971, "LONGITUDE": -65.259516, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224838, "POP_MIN": 221736, "POP_OTHER": 221736, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3903987, "LS_NAME": "Sucre", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 221736, "MAX_POP20": 221736, "MAX_POP50": 221736, "MAX_POP300": 221736, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 34, "MAX_AREAKM": 34, "MIN_AREAMI": 13, "MAX_AREAMI": 13, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": -65.3, "MAX_BBXMIN": -65.3, "MIN_BBXMAX": -65.225, "MAX_BBXMAX": -65.225, "MIN_BBYMIN": -19.066667, "MAX_BBYMIN": -19.066667, "MIN_BBYMAX": -18.991667, "MAX_BBYMAX": -18.991667, "MEAN_BBXC": -65.260317, "MEAN_BBYC": -19.030556, "COMPARE": 0, "GN_ASCII": "Sucre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 224838, "ELEVATION": 0, "GTOPO30": 2759, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -65.214844, -19.062118 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEALT": "Valparaíso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valparaíso", "ISO_A2": "CL", "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575, "MEGANAME": "Valparaíso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390, "MAX_POP20": 637860, "MAX_POP50": 637860, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 34, "MAX_AREAKM": 184, "MIN_AREAMI": 13, "MAX_AREAMI": 71, "MIN_PERKM": 33, "MAX_PERKM": 151, "MIN_PERMI": 21, "MAX_PERMI": 94, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27, "GN_POP": 15938, "ELEVATION": 0, "GTOPO30": 405, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328, "POP1955": 377, "POP1960": 433, "POP1965": 481, "POP1970": 532, "POP1975": 581, "POP1980": 635, "POP1985": 685, "POP1990": 733, "POP1995": 771, "POP2000": 803, "POP2005": 838, "POP2010": 854, "POP2015": 880, "POP2020": 922, "POP2025": 956, "POP2050": 982, "CITYALT": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.063924 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936 }, "geometry": { "type": "Point", "coordinates": [ 10.810547, 59.888937 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sucre", "DIFFASCII": 0, "NAMEASCII": "Sucre", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official (const", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "Chuquisaca", "ISO_A2": "BO", "LATITUDE": -19.040971, "LONGITUDE": -65.259516, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224838, "POP_MIN": 221736, "POP_OTHER": 221736, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3903987, "LS_NAME": "Sucre", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 221736, "MAX_POP20": 221736, "MAX_POP50": 221736, "MAX_POP300": 221736, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 34, "MAX_AREAKM": 34, "MIN_AREAMI": 13, "MAX_AREAMI": 13, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": -65.3, "MAX_BBXMIN": -65.3, "MIN_BBXMAX": -65.225, "MAX_BBXMAX": -65.225, "MIN_BBYMIN": -19.066667, "MAX_BBYMIN": -19.066667, "MIN_BBYMAX": -18.991667, "MAX_BBYMAX": -18.991667, "MEAN_BBXC": -65.260317, "MEAN_BBYC": -19.030556, "COMPARE": 0, "GN_ASCII": "Sucre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 224838, "ELEVATION": 0, "GTOPO30": 2759, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -65.214844, -19.062118 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220 }, "geometry": { "type": "Point", "coordinates": [ 24.960938, 60.152442 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.673831 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEALT": "Ürümqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102, "MEGANAME": "Ürümqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046, "MAX_POP20": 2066046, "MAX_POP50": 2066046, "MAX_POP300": 2066046, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 361, "MAX_AREAKM": 361, "MIN_AREAMI": 139, "MAX_AREAMI": 139, "MIN_PERKM": 318, "MAX_PERKM": 318, "MIN_PERMI": 198, "MAX_PERMI": 198, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13, "GN_POP": 1508225, "ELEVATION": 0, "GTOPO30": 915, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253, "POP1955": 312, "POP1960": 384, "POP1965": 472, "POP1970": 581, "POP1975": 715, "POP1980": 881, "POP1985": 1029, "POP1990": 1161, "POP1995": 1417, "POP2000": 1730, "POP2005": 2025, "POP2010": 2151, "POP2015": 2340, "POP2020": 2620, "POP2025": 2851, "POP2050": 3038, "CITYALT": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.626953, 43.771094 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.824219, 41.705729 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861, "MAX_POP20": 586861, "MAX_POP50": 586861, "MAX_POP300": 586861, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 797000, "ELEVATION": 0, "GTOPO30": 69, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 58.623047, 23.563987 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.496473 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015 }, "geometry": { "type": "Point", "coordinates": [ 90.439453, 23.725012 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.351562, 2.021065 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 134.648438, 7.449624 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907 }, "geometry": { "type": "Point", "coordinates": [ 85.341797, 27.683528 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ISO_A2": "MH", "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084, "MAX_POP20": 2084, "MAX_POP50": 2084, "MAX_POP300": 2084, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 20500, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Chengdu", "DIFFASCII": 0, "NAMEASCII": "Chengdu", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Sichuan", "ISO_A2": "CN", "LATITUDE": 30.67, "LONGITUDE": 104.070019, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4123000, "POP_MIN": 3950437, "POP_OTHER": 11622929, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1815286, "MEGANAME": "Chengdu", "LS_NAME": "Chengdu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9954810, "MAX_POP20": 11359674, "MAX_POP50": 24374217, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 5912, "MAX_AREAKM": 24244, "MIN_AREAMI": 2283, "MAX_AREAMI": 9361, "MIN_PERKM": 2296, "MAX_PERKM": 11900, "MIN_PERMI": 1427, "MAX_PERMI": 7394, "MIN_BBXMIN": 103.125, "MAX_BBXMIN": 103.383333, "MIN_BBXMAX": 104.433333, "MAX_BBXMAX": 105.375, "MIN_BBYMIN": 28.738768, "MAX_BBYMIN": 30.065456, "MIN_BBYMAX": 31.083333, "MAX_BBYMAX": 31.341667, "MEAN_BBXC": 104.039242, "MEAN_BBYC": 30.486458, "COMPARE": 0, "GN_ASCII": "Chengdu", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 3950437, "ELEVATION": 0, "GTOPO30": 529, "TIMEZONE": "Asia/Chongqing", "GEONAMESNO": "GeoNames match general.", "UN_FID": 31, "UN_ADM0": "China", "UN_LAT": 30.67, "UN_LONG": 104.07, "POP1950": 768, "POP1955": 922, "POP1960": 1106, "POP1965": 1327, "POP1970": 1592, "POP1975": 1911, "POP1980": 2293, "POP1985": 2639, "POP1990": 2955, "POP1995": 3403, "POP2000": 3919, "POP2005": 4065, "POP2010": 4123, "POP2015": 4266, "POP2020": 4634, "POP2025": 5014, "POP2050": 5320 }, "geometry": { "type": "Point", "coordinates": [ 104.062500, 30.675715 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 17.138672, -22.593726 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Port Louis", "DIFFASCII": 0, "NAMEASCII": "Port Louis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritius", "SOV_A3": "MUS", "ADM0NAME": "Mauritius", "ADM0_A3": "MUS", "ISO_A2": "MU", "LATITUDE": -20.166639, "LONGITUDE": 57.499994, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 595491, "POP_MIN": 148416, "POP_OTHER": 304613, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 934154, "LS_NAME": "Port Louis", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 291837, "MAX_POP20": 595491, "MAX_POP50": 595491, "MAX_POP300": 595491, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 152, "MIN_AREAMI": 27, "MAX_AREAMI": 59, "MIN_PERKM": 85, "MAX_PERKM": 154, "MIN_PERMI": 53, "MAX_PERMI": 96, "MIN_BBXMIN": 57.425, "MAX_BBXMIN": 57.425, "MIN_BBXMAX": 57.541667, "MAX_BBXMAX": 57.575, "MIN_BBYMIN": -20.333333, "MAX_BBYMIN": -20.248073, "MIN_BBYMAX": -20.108333, "MAX_BBYMAX": -20.108333, "MEAN_BBXC": 57.491611, "MEAN_BBYC": -20.221833, "COMPARE": 0, "GN_ASCII": "Port Louis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 155226, "ELEVATION": 0, "GTOPO30": 133, "TIMEZONE": "Indian/Mauritius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 57.480469, -20.220966 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 145.019531, -37.857507 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Sydney", "DIFFASCII": 0, "NAMEASCII": "Sydney", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "New South Wales", "ISO_A2": "AU", "LATITUDE": -33.920011, "LONGITUDE": 151.18518, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 4630000, "POP_MIN": 3641422, "POP_OTHER": 2669348, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2147714, "MEGANAME": "Sydney", "LS_NAME": "Sydney1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2731457, "MAX_POP20": 2731457, "MAX_POP50": 3164008, "MAX_POP300": 3164008, "MAX_POP310": 3164008, "MAX_NATSCA": 300, "MIN_AREAKM": 1078, "MAX_AREAKM": 1409, "MIN_AREAMI": 416, "MAX_AREAMI": 544, "MIN_PERKM": 468, "MAX_PERKM": 717, "MIN_PERMI": 291, "MAX_PERMI": 445, "MIN_BBXMIN": 150.533333, "MAX_BBXMIN": 150.831963, "MIN_BBXMAX": 151.308333, "MAX_BBXMAX": 151.341667, "MIN_BBYMIN": -34.091667, "MAX_BBYMIN": -34.091667, "MIN_BBYMAX": -33.641667, "MAX_BBYMAX": -33.6, "MEAN_BBXC": 151.051024, "MEAN_BBYC": -33.846724, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 4394576, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 276, "UN_ADM0": "Australia", "UN_LAT": -33.88, "UN_LONG": 151.02, "POP1950": 1690, "POP1955": 1906, "POP1960": 2135, "POP1965": 2390, "POP1970": 2667, "POP1975": 2960, "POP1980": 3227, "POP1985": 3432, "POP1990": 3632, "POP1995": 3839, "POP2000": 4078, "POP2005": 4260, "POP2010": 4327, "POP2015": 4427, "POP2020": 4582, "POP2025": 4716, "POP2050": 4826 }, "geometry": { "type": "Point", "coordinates": [ 151.171875, -33.943360 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Wellington", "DIFFASCII": 0, "NAMEASCII": "Wellington", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Manawatu-Wanganui", "ISO_A2": "NZ", "LATITUDE": -41.299974, "LONGITUDE": 174.783274, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 393400, "POP_MIN": 199200, "POP_OTHER": 140594, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2144168, "LS_NAME": "Wellington", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144164, "MAX_POP20": 144164, "MAX_POP50": 144164, "MAX_POP300": 144164, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 79, "MAX_PERKM": 79, "MIN_PERMI": 49, "MAX_PERMI": 49, "MIN_BBXMIN": 174.725, "MAX_BBXMIN": 174.725, "MIN_BBXMAX": 174.841667, "MAX_BBXMAX": 174.841667, "MIN_BBYMIN": -41.35, "MAX_BBYMIN": -41.35, "MIN_BBYMAX": -41.2, "MAX_BBYMAX": -41.2, "MEAN_BBXC": 174.78792, "MEAN_BBYC": -41.285539, "COMPARE": 0, "GN_ASCII": "Wellington", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 5428, "ELEVATION": 0, "GTOPO30": 304, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.814453, -41.310824 ], [ -185.273438, -41.310824 ] ] } } ] } diff --git a/tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json b/tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json index ef28b21d9..0772f2370 100644 --- a/tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json +++ b/tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json @@ -5,114 +5,116 @@ "description": "tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json.check.mbtiles -z3 -b0 --accumulate-numeric-attributes numnum --set-attribute accum:1 --set-attribute accum2:1 --accumulate-attribute accum:sum --retain-points-multiplier 3 tests/ne_110m_populated_places/in.json", -"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":3,\"fields\":{\"ADM0CAP\":\"Number\",\"ADM0NAME\":\"String\",\"ADM0_A3\":\"String\",\"ADM1NAME\":\"String\",\"ADMIN1_COD\":\"Number\",\"CAPALT\":\"Number\",\"CAPIN\":\"String\",\"CHANGED\":\"Number\",\"CHECKME\":\"Number\",\"CITYALT\":\"String\",\"COMPARE\":\"Number\",\"DIFFASCII\":\"Number\",\"DIFFNOTE\":\"String\",\"ELEVATION\":\"Number\",\"FEATURECLA\":\"String\",\"FEATURE_CL\":\"String\",\"FEATURE_CO\":\"String\",\"GEONAMEID\":\"Number\",\"GEONAMESNO\":\"String\",\"GN_ASCII\":\"String\",\"GN_POP\":\"Number\",\"GTOPO30\":\"Number\",\"ISO_A2\":\"String\",\"LABELRANK\":\"Number\",\"LATITUDE\":\"Number\",\"LONGITUDE\":\"Number\",\"LS_MATCH\":\"Number\",\"LS_NAME\":\"String\",\"MAX_AREAKM\":\"Number\",\"MAX_AREAMI\":\"Number\",\"MAX_BBXMAX\":\"Number\",\"MAX_BBXMIN\":\"Number\",\"MAX_BBYMAX\":\"Number\",\"MAX_BBYMIN\":\"Number\",\"MAX_NATSCA\":\"Number\",\"MAX_PERKM\":\"Number\",\"MAX_PERMI\":\"Number\",\"MAX_POP10\":\"Number\",\"MAX_POP20\":\"Number\",\"MAX_POP300\":\"Number\",\"MAX_POP310\":\"Number\",\"MAX_POP50\":\"Number\",\"MEAN_BBXC\":\"Number\",\"MEAN_BBYC\":\"Number\",\"MEGACITY\":\"Number\",\"MEGANAME\":\"String\",\"MIN_AREAKM\":\"Number\",\"MIN_AREAMI\":\"Number\",\"MIN_BBXMAX\":\"Number\",\"MIN_BBXMIN\":\"Number\",\"MIN_BBYMAX\":\"Number\",\"MIN_BBYMIN\":\"Number\",\"MIN_PERKM\":\"Number\",\"MIN_PERMI\":\"Number\",\"NAME\":\"String\",\"NAMEALT\":\"String\",\"NAMEASCII\":\"String\",\"NAMEDIFF\":\"Number\",\"NAMEPAR\":\"String\",\"NATSCALE\":\"Number\",\"POP1950\":\"Number\",\"POP1955\":\"Number\",\"POP1960\":\"Number\",\"POP1965\":\"Number\",\"POP1970\":\"Number\",\"POP1975\":\"Number\",\"POP1980\":\"Number\",\"POP1985\":\"Number\",\"POP1990\":\"Number\",\"POP1995\":\"Number\",\"POP2000\":\"Number\",\"POP2005\":\"Number\",\"POP2010\":\"Number\",\"POP2015\":\"Number\",\"POP2020\":\"Number\",\"POP2025\":\"Number\",\"POP2050\":\"Number\",\"POP_MAX\":\"Number\",\"POP_MIN\":\"Number\",\"POP_OTHER\":\"Number\",\"RANK_MAX\":\"Number\",\"RANK_MIN\":\"Number\",\"SCALERANK\":\"Number\",\"SOV0NAME\":\"String\",\"SOV_A3\":\"String\",\"TIMEZONE\":\"String\",\"UN_ADM0\":\"String\",\"UN_FID\":\"Number\",\"UN_LAT\":\"Number\",\"UN_LONG\":\"Number\",\"WORLDCITY\":\"Number\",\"accum\":\"Number\",\"accum2\":\"Number\",\"numnum:count:ADM0CAP\":\"Number\",\"numnum:count:ADMIN1_COD\":\"Number\",\"numnum:count:CAPALT\":\"Number\",\"numnum:count:CHANGED\":\"Number\",\"numnum:count:CHECKME\":\"Number\",\"numnum:count:COMPARE\":\"Number\",\"numnum:count:DIFFASCII\":\"Number\",\"numnum:count:ELEVATION\":\"Number\",\"numnum:count:GEONAMEID\":\"Number\",\"numnum:count:GN_POP\":\"Number\",\"numnum:count:GTOPO30\":\"Number\",\"numnum:count:LABELRANK\":\"Number\",\"numnum:count:LATITUDE\":\"Number\",\"numnum:count:LONGITUDE\":\"Number\",\"numnum:count:LS_MATCH\":\"Number\",\"numnum:count:MAX_AREAKM\":\"Number\",\"numnum:count:MAX_AREAMI\":\"Number\",\"numnum:count:MAX_BBXMAX\":\"Number\",\"numnum:count:MAX_BBXMIN\":\"Number\",\"numnum:count:MAX_BBYMAX\":\"Number\",\"numnum:count:MAX_BBYMIN\":\"Number\",\"numnum:count:MAX_NATSCA\":\"Number\",\"numnum:count:MAX_PERKM\":\"Number\",\"numnum:count:MAX_PERMI\":\"Number\",\"numnum:count:MAX_POP10\":\"Number\",\"numnum:count:MAX_POP20\":\"Number\",\"numnum:count:MAX_POP300\":\"Number\",\"numnum:count:MAX_POP310\":\"Number\",\"numnum:count:MAX_POP50\":\"Number\",\"numnum:count:MEAN_BBXC\":\"Number\",\"numnum:count:MEAN_BBYC\":\"Number\",\"numnum:count:MEGACITY\":\"Number\",\"numnum:count:MIN_AREAKM\":\"Number\",\"numnum:count:MIN_AREAMI\":\"Number\",\"numnum:count:MIN_BBXMAX\":\"Number\",\"numnum:count:MIN_BBXMIN\":\"Number\",\"numnum:count:MIN_BBYMAX\":\"Number\",\"numnum:count:MIN_BBYMIN\":\"Number\",\"numnum:count:MIN_PERKM\":\"Number\",\"numnum:count:MIN_PERMI\":\"Number\",\"numnum:count:NAMEDIFF\":\"Number\",\"numnum:count:NATSCALE\":\"Number\",\"numnum:count:POP1950\":\"Number\",\"numnum:count:POP1955\":\"Number\",\"numnum:count:POP1960\":\"Number\",\"numnum:count:POP1965\":\"Number\",\"numnum:count:POP1970\":\"Number\",\"numnum:count:POP1975\":\"Number\",\"numnum:count:POP1980\":\"Number\",\"numnum:count:POP1985\":\"Number\",\"numnum:count:POP1990\":\"Number\",\"numnum:count:POP1995\":\"Number\",\"numnum:count:POP2000\":\"Number\",\"numnum:count:POP2005\":\"Number\",\"numnum:count:POP2010\":\"Number\",\"numnum:count:POP2015\":\"Number\",\"numnum:count:POP2020\":\"Number\",\"numnum:count:POP2025\":\"Number\",\"numnum:count:POP2050\":\"Number\",\"numnum:count:POP_MAX\":\"Number\",\"numnum:count:POP_MIN\":\"Number\",\"numnum:count:POP_OTHER\":\"Number\",\"numnum:count:RANK_MAX\":\"Number\",\"numnum:count:RANK_MIN\":\"Number\",\"numnum:count:SCALERANK\":\"Number\",\"numnum:count:UN_FID\":\"Number\",\"numnum:count:UN_LAT\":\"Number\",\"numnum:count:UN_LONG\":\"Number\",\"numnum:count:WORLDCITY\":\"Number\",\"numnum:count:accum2\":\"Number\",\"numnum:max:ADM0CAP\":\"Number\",\"numnum:max:ADMIN1_COD\":\"Number\",\"numnum:max:CAPALT\":\"Number\",\"numnum:max:CHANGED\":\"Number\",\"numnum:max:CHECKME\":\"Number\",\"numnum:max:COMPARE\":\"Number\",\"numnum:max:DIFFASCII\":\"Number\",\"numnum:max:ELEVATION\":\"Number\",\"numnum:max:GEONAMEID\":\"Number\",\"numnum:max:GN_POP\":\"Number\",\"numnum:max:GTOPO30\":\"Number\",\"numnum:max:LABELRANK\":\"Number\",\"numnum:max:LATITUDE\":\"Number\",\"numnum:max:LONGITUDE\":\"Number\",\"numnum:max:LS_MATCH\":\"Number\",\"numnum:max:MAX_AREAKM\":\"Number\",\"numnum:max:MAX_AREAMI\":\"Number\",\"numnum:max:MAX_BBXMAX\":\"Number\",\"numnum:max:MAX_BBXMIN\":\"Number\",\"numnum:max:MAX_BBYMAX\":\"Number\",\"numnum:max:MAX_BBYMIN\":\"Number\",\"numnum:max:MAX_NATSCA\":\"Number\",\"numnum:max:MAX_PERKM\":\"Number\",\"numnum:max:MAX_PERMI\":\"Number\",\"numnum:max:MAX_POP10\":\"Number\",\"numnum:max:MAX_POP20\":\"Number\",\"numnum:max:MAX_POP300\":\"Number\",\"numnum:max:MAX_POP310\":\"Number\",\"numnum:max:MAX_POP50\":\"Number\",\"numnum:max:MEAN_BBXC\":\"Number\",\"numnum:max:MEAN_BBYC\":\"Number\",\"numnum:max:MEGACITY\":\"Number\",\"numnum:max:MIN_AREAKM\":\"Number\",\"numnum:max:MIN_AREAMI\":\"Number\",\"numnum:max:MIN_BBXMAX\":\"Number\",\"numnum:max:MIN_BBXMIN\":\"Number\",\"numnum:max:MIN_BBYMAX\":\"Number\",\"numnum:max:MIN_BBYMIN\":\"Number\",\"numnum:max:MIN_PERKM\":\"Number\",\"numnum:max:MIN_PERMI\":\"Number\",\"numnum:max:NAMEDIFF\":\"Number\",\"numnum:max:NATSCALE\":\"Number\",\"numnum:max:POP1950\":\"Number\",\"numnum:max:POP1955\":\"Number\",\"numnum:max:POP1960\":\"Number\",\"numnum:max:POP1965\":\"Number\",\"numnum:max:POP1970\":\"Number\",\"numnum:max:POP1975\":\"Number\",\"numnum:max:POP1980\":\"Number\",\"numnum:max:POP1985\":\"Number\",\"numnum:max:POP1990\":\"Number\",\"numnum:max:POP1995\":\"Number\",\"numnum:max:POP2000\":\"Number\",\"numnum:max:POP2005\":\"Number\",\"numnum:max:POP2010\":\"Number\",\"numnum:max:POP2015\":\"Number\",\"numnum:max:POP2020\":\"Number\",\"numnum:max:POP2025\":\"Number\",\"numnum:max:POP2050\":\"Number\",\"numnum:max:POP_MAX\":\"Number\",\"numnum:max:POP_MIN\":\"Number\",\"numnum:max:POP_OTHER\":\"Number\",\"numnum:max:RANK_MAX\":\"Number\",\"numnum:max:RANK_MIN\":\"Number\",\"numnum:max:SCALERANK\":\"Number\",\"numnum:max:UN_FID\":\"Number\",\"numnum:max:UN_LAT\":\"Number\",\"numnum:max:UN_LONG\":\"Number\",\"numnum:max:WORLDCITY\":\"Number\",\"numnum:max:accum2\":\"Number\",\"numnum:min:ADM0CAP\":\"Number\",\"numnum:min:ADMIN1_COD\":\"Number\",\"numnum:min:CAPALT\":\"Number\",\"numnum:min:CHANGED\":\"Number\",\"numnum:min:CHECKME\":\"Number\",\"numnum:min:COMPARE\":\"Number\",\"numnum:min:DIFFASCII\":\"Number\",\"numnum:min:ELEVATION\":\"Number\",\"numnum:min:GEONAMEID\":\"Number\",\"numnum:min:GN_POP\":\"Number\",\"numnum:min:GTOPO30\":\"Number\",\"numnum:min:LABELRANK\":\"Number\",\"numnum:min:LATITUDE\":\"Number\",\"numnum:min:LONGITUDE\":\"Number\",\"numnum:min:LS_MATCH\":\"Number\",\"numnum:min:MAX_AREAKM\":\"Number\",\"numnum:min:MAX_AREAMI\":\"Number\",\"numnum:min:MAX_BBXMAX\":\"Number\",\"numnum:min:MAX_BBXMIN\":\"Number\",\"numnum:min:MAX_BBYMAX\":\"Number\",\"numnum:min:MAX_BBYMIN\":\"Number\",\"numnum:min:MAX_NATSCA\":\"Number\",\"numnum:min:MAX_PERKM\":\"Number\",\"numnum:min:MAX_PERMI\":\"Number\",\"numnum:min:MAX_POP10\":\"Number\",\"numnum:min:MAX_POP20\":\"Number\",\"numnum:min:MAX_POP300\":\"Number\",\"numnum:min:MAX_POP310\":\"Number\",\"numnum:min:MAX_POP50\":\"Number\",\"numnum:min:MEAN_BBXC\":\"Number\",\"numnum:min:MEAN_BBYC\":\"Number\",\"numnum:min:MEGACITY\":\"Number\",\"numnum:min:MIN_AREAKM\":\"Number\",\"numnum:min:MIN_AREAMI\":\"Number\",\"numnum:min:MIN_BBXMAX\":\"Number\",\"numnum:min:MIN_BBXMIN\":\"Number\",\"numnum:min:MIN_BBYMAX\":\"Number\",\"numnum:min:MIN_BBYMIN\":\"Number\",\"numnum:min:MIN_PERKM\":\"Number\",\"numnum:min:MIN_PERMI\":\"Number\",\"numnum:min:NAMEDIFF\":\"Number\",\"numnum:min:NATSCALE\":\"Number\",\"numnum:min:POP1950\":\"Number\",\"numnum:min:POP1955\":\"Number\",\"numnum:min:POP1960\":\"Number\",\"numnum:min:POP1965\":\"Number\",\"numnum:min:POP1970\":\"Number\",\"numnum:min:POP1975\":\"Number\",\"numnum:min:POP1980\":\"Number\",\"numnum:min:POP1985\":\"Number\",\"numnum:min:POP1990\":\"Number\",\"numnum:min:POP1995\":\"Number\",\"numnum:min:POP2000\":\"Number\",\"numnum:min:POP2005\":\"Number\",\"numnum:min:POP2010\":\"Number\",\"numnum:min:POP2015\":\"Number\",\"numnum:min:POP2020\":\"Number\",\"numnum:min:POP2025\":\"Number\",\"numnum:min:POP2050\":\"Number\",\"numnum:min:POP_MAX\":\"Number\",\"numnum:min:POP_MIN\":\"Number\",\"numnum:min:POP_OTHER\":\"Number\",\"numnum:min:RANK_MAX\":\"Number\",\"numnum:min:RANK_MIN\":\"Number\",\"numnum:min:SCALERANK\":\"Number\",\"numnum:min:UN_FID\":\"Number\",\"numnum:min:UN_LAT\":\"Number\",\"numnum:min:UN_LONG\":\"Number\",\"numnum:min:WORLDCITY\":\"Number\",\"numnum:min:accum2\":\"Number\",\"numnum:sum:ADM0CAP\":\"Number\",\"numnum:sum:ADMIN1_COD\":\"Number\",\"numnum:sum:CAPALT\":\"Number\",\"numnum:sum:CHANGED\":\"Number\",\"numnum:sum:CHECKME\":\"Number\",\"numnum:sum:COMPARE\":\"Number\",\"numnum:sum:DIFFASCII\":\"Number\",\"numnum:sum:ELEVATION\":\"Number\",\"numnum:sum:GEONAMEID\":\"Number\",\"numnum:sum:GN_POP\":\"Number\",\"numnum:sum:GTOPO30\":\"Number\",\"numnum:sum:LABELRANK\":\"Number\",\"numnum:sum:LATITUDE\":\"Number\",\"numnum:sum:LONGITUDE\":\"Number\",\"numnum:sum:LS_MATCH\":\"Number\",\"numnum:sum:MAX_AREAKM\":\"Number\",\"numnum:sum:MAX_AREAMI\":\"Number\",\"numnum:sum:MAX_BBXMAX\":\"Number\",\"numnum:sum:MAX_BBXMIN\":\"Number\",\"numnum:sum:MAX_BBYMAX\":\"Number\",\"numnum:sum:MAX_BBYMIN\":\"Number\",\"numnum:sum:MAX_NATSCA\":\"Number\",\"numnum:sum:MAX_PERKM\":\"Number\",\"numnum:sum:MAX_PERMI\":\"Number\",\"numnum:sum:MAX_POP10\":\"Number\",\"numnum:sum:MAX_POP20\":\"Number\",\"numnum:sum:MAX_POP300\":\"Number\",\"numnum:sum:MAX_POP310\":\"Number\",\"numnum:sum:MAX_POP50\":\"Number\",\"numnum:sum:MEAN_BBXC\":\"Number\",\"numnum:sum:MEAN_BBYC\":\"Number\",\"numnum:sum:MEGACITY\":\"Number\",\"numnum:sum:MIN_AREAKM\":\"Number\",\"numnum:sum:MIN_AREAMI\":\"Number\",\"numnum:sum:MIN_BBXMAX\":\"Number\",\"numnum:sum:MIN_BBXMIN\":\"Number\",\"numnum:sum:MIN_BBYMAX\":\"Number\",\"numnum:sum:MIN_BBYMIN\":\"Number\",\"numnum:sum:MIN_PERKM\":\"Number\",\"numnum:sum:MIN_PERMI\":\"Number\",\"numnum:sum:NAMEDIFF\":\"Number\",\"numnum:sum:NATSCALE\":\"Number\",\"numnum:sum:POP1950\":\"Number\",\"numnum:sum:POP1955\":\"Number\",\"numnum:sum:POP1960\":\"Number\",\"numnum:sum:POP1965\":\"Number\",\"numnum:sum:POP1970\":\"Number\",\"numnum:sum:POP1975\":\"Number\",\"numnum:sum:POP1980\":\"Number\",\"numnum:sum:POP1985\":\"Number\",\"numnum:sum:POP1990\":\"Number\",\"numnum:sum:POP1995\":\"Number\",\"numnum:sum:POP2000\":\"Number\",\"numnum:sum:POP2005\":\"Number\",\"numnum:sum:POP2010\":\"Number\",\"numnum:sum:POP2015\":\"Number\",\"numnum:sum:POP2020\":\"Number\",\"numnum:sum:POP2025\":\"Number\",\"numnum:sum:POP2050\":\"Number\",\"numnum:sum:POP_MAX\":\"Number\",\"numnum:sum:POP_MIN\":\"Number\",\"numnum:sum:POP_OTHER\":\"Number\",\"numnum:sum:RANK_MAX\":\"Number\",\"numnum:sum:RANK_MIN\":\"Number\",\"numnum:sum:SCALERANK\":\"Number\",\"numnum:sum:UN_FID\":\"Number\",\"numnum:sum:UN_LAT\":\"Number\",\"numnum:sum:UN_LONG\":\"Number\",\"numnum:sum:WORLDCITY\":\"Number\",\"numnum:sum:accum2\":\"Number\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":243,\"geometry\":\"Point\",\"attributeCount\":375,\"attributes\":[{\"attribute\":\"ADM0CAP\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"ADM0NAME\",\"count\":198,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hong Kong S.A.R.\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kiribati\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Liechtenstein\",\"Lithuania\"]},{\"attribute\":\"ADM0_A3\",\"count\":198,\"type\":\"string\",\"values\":[\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HKG\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\"]},{\"attribute\":\"ADM1NAME\",\"count\":204,\"type\":\"string\",\"values\":[\"Abu Dhabi\",\"Ad Dawhah\",\"Addis Ababa\",\"Ahal\",\"Al Kuwayt\",\"Al Qahirah\",\"Alger\",\"Amanat Al Asimah\",\"Amman\",\"Ankara\",\"Anseba\",\"Antananarivo\",\"Aqmola\",\"Ar Riyad\",\"Asunción\",\"Attiki\",\"Auckland\",\"Australian Capital Territory\",\"Baghdad\",\"Baki\",\"Bamako\",\"Banaadir\",\"Bangkok Metropolis\",\"Bangui\",\"Banjul\",\"Beijing\",\"Beirut\",\"Benguet\",\"Berlin\",\"Bern\",\"Bhaktapur\",\"Bioko Norte\",\"Bishkek\",\"Bissau\",\"Bogota\",\"Bratislavský\",\"British Columbia\",\"Brunei and Muara\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Bujumbura Mairie\",\"California\",\"Cayo\",\"Centar\",\"Central\",\"Central Equatoria\",\"Centre\",\"Chisinau\",\"Chuquisaca\",\"Ciudad de Buenos Aires\",\"Ciudad de la Habana\",\"Colombo\",\"Colorado\",\"Comunidad de Madrid\",\"Conakry\",\"Dakar\",\"Damascus\",\"Dar-Es-Salaam\",\"Delhi\",\"Dhaka\",\"Dili\",\"District of Columbia\",\"Distrito Capital\",\"Distrito Federal\",\"Distrito Nacional\",\"Djibouti\",\"Dodoma\",\"Dubay\",\"Dublin\",\"Durrës\",\"East Berbice-Corentyne\",\"Erevan\",\"Estuaire\",\"F.C.T.\",\"Federal Capital Territory\",\"Florida\",\"Francisco Morazán\",\"Gauteng\",\"Genève\",\"Georgia\",\"Grad Beograd\",\"Grad Sofiya\",\"Grad Zagreb\",\"Grand Casablanca\",\"Greater Accra\",\"Guadalcanal\",\"Guatemala\",\"Hadjer-Lamis\",\"Harare\",\"Harju\",\"Hhohho\",\"Hovedstaden\",\"Illinois\",\"Istanbul\",\"Jakarta Raya\",\"Jerusalem\",\"Kabul\",\"Kadiogo\",\"Kampala\"]},{\"attribute\":\"ADMIN1_COD\",\"count\":53,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,32,33,34,36,37,38,39,4,40,42,44,45,49,5,50,52,53,57,6,61,65,68,7,78,8,81,82,9],\"min\":0,\"max\":82},{\"attribute\":\"CAPALT\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"CAPIN\",\"count\":20,\"type\":\"string\",\"values\":[\"Administrative\",\"Capital of both\",\"Claimed as capi\",\"Claimed as inte\",\"De facto capita\",\"De facto, admin\",\"Former capital\",\"Judicial capita\",\"Legislative and\",\"Legislative cap\",\"Offical capital\",\"Official (const\",\"Official and ad\",\"Official and le\",\"Official capita\",\"Official, admin\",\"Official, de fa\",\"Official, legis\",\"UN Headquarters\",\"While Jerulsale\"]},{\"attribute\":\"CHANGED\",\"count\":7,\"type\":\"number\",\"values\":[0,1,20,3,4,40,5],\"min\":0,\"max\":40},{\"attribute\":\"CHECKME\",\"count\":2,\"type\":\"number\",\"values\":[0,5],\"min\":0,\"max\":5},{\"attribute\":\"CITYALT\",\"count\":53,\"type\":\"string\",\"values\":[\"Algiers\",\"Asuncion\",\"Athens\",\"Bangkok\",\"Beirut\",\"Belgrade\",\"Bogota\",\"Bombay\",\"Brasilia\",\"Brussels\",\"Bucharest\",\"Cairo\",\"Calcutta\",\"Casablanca\",\"Copenhagen\",\"Damascus\",\"Denver\",\"Dubai\",\"Guatemala\",\"Hanoi\",\"Havana\",\"Khartoum\",\"Kiev\",\"Kuwait\",\"Lisbon\",\"Lome\",\"Los Angeles\",\"Mexico City\",\"Mogadishu\",\"Moscow\",\"Ndjamena\",\"New York\",\"Osaka\",\"Ottawa\",\"Panama\",\"Phnom Penh\",\"Prague\",\"Rangoon\",\"Riyadh\",\"Rome\",\"San Francisco\",\"San Jose\",\"Sanaa\",\"Sao Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Tripoli\",\"Urumqi\",\"Valparaiso\",\"Vienna\",\"Warsaw\",\"Washington D.C.\",\"Yaounde\"]},{\"attribute\":\"COMPARE\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"DIFFASCII\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"DIFFNOTE\",\"count\":12,\"type\":\"string\",\"values\":[\"Added place.\",\"Changed country.\",\"Changed feature class.\",\"Changed feature class. Changed scale rank.\",\"Changed feature to Admin-0 region capital.\",\"Changed scale rank.\",\"Corrected coordinates.\",\"Location adjusted.\",\"Location adjusted. Changed scale rank.\",\"Name changed.\",\"Name changed. Changed scale rank.\",\"Population from GeoNames. Changed scale rank.\"]},{\"attribute\":\"ELEVATION\",\"count\":19,\"type\":\"number\",\"values\":[0,10,1317,16,171,179,187,2,2320,284,308,320,5,7,70,74,850,89,920],\"min\":0,\"max\":2320},{\"attribute\":\"FEATURECLA\",\"count\":6,\"type\":\"string\",\"values\":[\"Admin-0 capital\",\"Admin-0 capital alt\",\"Admin-0 region capital\",\"Admin-1 capital\",\"Admin-1 region capital\",\"Populated place\"]},{\"attribute\":\"FEATURE_CL\",\"count\":1,\"type\":\"string\",\"values\":[\"P\"]},{\"attribute\":\"FEATURE_CO\",\"count\":4,\"type\":\"string\",\"values\":[\"PPL\",\"PPLA\",\"PPLC\",\"PPLG\"]},{\"attribute\":\"GEONAMEID\",\"count\":242,\"type\":\"number\",\"values\":[-1,1018725,1040652,1070940,108410,112931,1138958,1176615,1185241,1221874,1238992,1252416,1261481,1275004,1275339,1277333,1283240,1298824,146268,1512569,1526273,1528675,1529102,1559804,1581130,160196,160263,1609350,162183,1642911,1645457,1651944,1668341,1690681,1701668,170654,1728930,1730025,1735161,1796236,1815286,1816670,1819729,1820906,1821306,1835848,184745,1850147,1853909,1857910,1871859,1880252,202061,2028462,2075807,2081986,2088122,2108502,2110079,2110394,2113779,2135171,2144168,2147714,2158177,2172517,2193733,2198148,2220957,223817,2240449,2253354,2260535,2267057,2274895,2279755,2293538,2306104,2309527,2314302,2322794,232422,2357048,2365267,2374775,2377450,2389853,2392087,2394819,2399697,2408770,241131,2413876,2422465,2427123,2440485,2460596,2462881,2464470,250441],\"min\":-1,\"max\":6942553},{\"attribute\":\"GEONAMESNO\",\"count\":8,\"type\":\"string\",\"values\":[\"GeoNames match general + researched.\",\"GeoNames match general.\",\"GeoNames match with ascii name + lat + long whole numbers.\",\"GeoNames rough area, rough name, requires further research.\",\"GeoNames rough area, rough name.\",\"GeoNames spatial join with similar names only.\",\"Geonames ascii name + lat.d + long.d matching.\",\"No GeoNames match due to small population, not in GeoNames, or poor NEV placement.\"]},{\"attribute\":\"GN_ASCII\",\"count\":239,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Bengaluru\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Den Haag\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Ejbei Uad el Aabd\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneve\",\"Georgetown\",\"Guatemala City\",\"Ha Noi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\"]},{\"attribute\":\"GN_POP\",\"count\":236,\"type\":\"number\",\"values\":[0,10021295,1019022,1020,1024027,10349312,10356500,10444527,1049498,1086505,1093485,1116513,11174257,11177,1122874,11285654,113364,1137347,113906,1152556,1153615,115826,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1273651,1275857,1284609,12920,1297281,1299369,13076300,13381,1353189,136473,13768,1391433,1399814,1431270,1442271,1453975,1459640,14608512,147074,150000,1508225,1536,1542813,155226,155963,1573544,15938,1619438,162135,1655753,16571,1662,1691468,1696128,1702139,1724,1742124,1767200,180541,1815679,1837969,183981,1877155,188084,1916100,194530,1963264,196731,1974647,1977663,1978028,200452,2026469,20500,208411,2087,2138,2163824,217,217000,2207718,223757,22400,224838,227940,22881,229398,234168,235017,24226],\"min\":0,\"max\":14608512},{\"attribute\":\"GTOPO30\",\"count\":166,\"type\":\"number\",\"values\":[-2,-9999,0,1,10,100,1002,1006,1025,103,104,108,1092,11,110,111,1129,1149,115,1156,12,1206,1247,125,1277,128,1282,1289,1299,13,1304,131,132,133,1398,14,1448,1468,1481,1482,15,151,152,1533,156,1561,1568,159,16,164,169,17,1722,1724,173,174,1775,1808,181,183,19,199,2,20,2004,203,205,21,219,22,2216,224,228,23,235,2360,2363,24,2400,246,259,26,2620,2737,2759,2764,28,284,290,3,30,304,305,306,307,31,339,35,350,373],\"min\":-9999,\"max\":3829},{\"attribute\":\"ISO_A2\",\"count\":196,\"type\":\"string\",\"values\":[\"-99\",\"AD\",\"AE\",\"AF\",\"AG\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BB\",\"BD\",\"BE\",\"BF\",\"BG\",\"BH\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CV\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DM\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FM\",\"FR\",\"GA\",\"GB\",\"GD\",\"GE\",\"GH\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HK\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KI\",\"KM\",\"KN\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\"]},{\"attribute\":\"LABELRANK\",\"count\":8,\"type\":\"number\",\"values\":[0,1,2,3,5,6,7,8],\"min\":0,\"max\":8},{\"attribute\":\"LATITUDE\",\"count\":242,\"type\":\"number\",\"values\":[-0.214988,-1.283347,-1.95359,-11.704158,-12.048013,-13.841545,-13.983295,-15.416644,-15.78334,-16.497974,-17.73335,-17.81779,-18.133016,-18.916637,-19.040971,-20.166639,-21.138512,-22.570006,-22.925023,-23.55868,-24.646313,-25.296403,-25.706921,-25.955277,-26.170044999999999,-26.316651,-26.466667,-29.119994,-29.316674,-3.376087,-33.047764,-33.450014,-33.920011,-34.602502,-34.858042,-35.283029,-36.850013,-37.820031,-4.259186,-4.329724,-4.616632,-41.299974,-6.174418,-6.183306,-6.800013,-8.516652,-8.559388,-8.838286,-9.437994,-9.464708,0.316659,0.333402,0.385389,1.293033,1.338188,10.500999,10.651997,11.55003,11.595014,11.865024,12.052633,12.113097,12.153017,12.370316,12.650015,12.969995,13.102003,13.148279,13.453876,13.516706,13.710002,13.749999,14.001973,14.102045,14.604159,14.621135,14.715832,14.916698,15.301016,15.333339,15.354733,15.588078,16.429991,16.783354,17.118037,17.252034,17.30203,17.966693,17.977077,18.086427,18.470073,18.541025,19.01699,19.442442,19.766557,2.066681,2.91402,21.033327,22.304981,22.494969],\"min\":-41.299974,\"max\":64.150024},{\"attribute\":\"LONGITUDE\",\"count\":243,\"type\":\"number\",\"values\":[-0.116722,-0.216716,-1.524724,-10.804752,-100.329985,-104.984016,-118.179981,-122.459978,-123.121644,-13.200006,-13.234216,-13.680235,-15.598361,-15.97534,-16.591701,-17.47313,-171.738642,-175.220564,-21.950014,-23.516689,-3.683352,-4.040048,-43.225021,-46.62502,-47.916052,-5.275503,-55.167031,-56.171052,-57.641505,-58.167029,-58.397531,-59.616527,-6.248906,-6.836131,-61.000008,-61.212062,-61.387013,-61.517031,-61.741643,-61.850034,-62.717009,-65.259516,-66.917037,-68.149985,-69.900085,-7.616367,-70.667041,-71.621014,-72.336035,-73.980017,-74.083344,-75.700015,-76.767434,-77.009419,-77.050062,-77.350044,-78.500051,-79.420021,-79.533037,-8.000039,-80.224106,-82.364182,-84.084051,-84.399949,-86.268492,-87.217529,-87.750055,-88.767073,-89.203041,-9.144866,-9.652522,-90.526966,-95.339979,-99.130988,1.222757,1.516486,10.179678,10.749979,100.516645,101.699983,101.701947,102.59998,103.855821,104.070019,104.916634,105.850014,106.829438,106.916616,11.516651,114.185009,114.933284,116.388286,12.447808,12.46667,12.483258,12.563486,120.569943,120.982217,121.436505,121.568333],\"min\":-175.220564,\"max\":179.216647},{\"attribute\":\"LS_MATCH\",\"count\":3,\"type\":\"number\",\"values\":[0,1,2],\"min\":0,\"max\":2},{\"attribute\":\"LS_NAME\",\"count\":242,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens2\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubayy\",\"Dublin2\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown1\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\"]},{\"attribute\":\"MAX_AREAKM\",\"count\":212,\"type\":\"number\",\"values\":[0,1,10,1021,103,104,105,106,10661,108,109,112,113,114,1182,118844,12,120,122,126,1275,128,130,131,1327,1332,1345,135,1373,14049,1409,141,143,145,1471,1472,1479,148,15,152,1554,157,16,160,1614,1639,16400,17,1700,1708,171,172,174,1748,177,178,179,18,181,183,184,186559,191,19435,195,197,2080,209,21,211,217,2286,23,2344,2350,236,237,2415,24244,243,244,2447,245,246,249,25,251,2667,27,270,2718,28,2836,2843,2861,2907,3,30,300,302],\"min\":0,\"max\":186559},{\"attribute\":\"MAX_AREAMI\",\"count\":181,\"type\":\"number\",\"values\":[0,1,10,1030,104,1049,1095,1098,11,1105,1122,116,117,1174,12,121,122,123,1235,126,13,130,133,1331,134,135,138,139,14,140,141,143,144,146,15,154,157,1578,16,160,162,165,166,168,169,17,173,174,176,179,180,182,183,1855,188,1892,191,19271,194,195,196,198,2,20,202,20591,206,209,21,210,2109,2148,215,2220,223,224,2241,227,229,23,2408,243,245,248,251,264,266,268,27,270,272,273,274,277,28,29,3,30,305,310],\"min\":0,\"max\":72030},{\"attribute\":\"MAX_BBXMAX\",\"count\":240,\"type\":\"number\",\"values\":[-1.433333,-10.658333,-100.125,-104.708333,-117.008333,-121.733333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.125,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.15,-46.108333,-47.783333,-5.216667,-55.1,-55.8,-57.316667,-57.816667,-58.116667,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.325,-72.033333,-72.716667,-74.008333,-75.45,-76.4,-76.733333,-76.833333,-77.258333,-78.291667,-78.608333,-79.4,-8.958333,-80.025,-82.208333,-83.858333,-83.975,-86.158333,-87.125,-87.141667,-88.75,-88.966667,-90.425,-95,-98.808333,0,0.033333,0.816667,1.483333,1.591667,10.575,101.016667,101.891667,102.816667,104,105,105.375,106.808333,107.041667,109.808333,11.091667,11.6,114.775,114.991667,117.325,12.481009,12.541667,12.658333,12.766667,120.65,121.333333,121.816667,121.9,125.608333],\"min\":-175.166667,\"max\":178.533333},{\"attribute\":\"MAX_BBXMIN\",\"count\":241,\"type\":\"number\",\"values\":[-0.35,-0.546866,-1.616667,-10.816667,-100.5,-105.241667,-118.966667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.499182,-47.056372,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-58.757731,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-66.993057,-68.258333,-7.116667,-7.7,-70.208333,-70.8,-71.658333,-72.441667,-74.091431,-74.266667,-75.983333,-76.866667,-77.153161,-77.308333,-77.4,-78.591667,-79.576315,-79.806554,-8.058333,-80.441667,-82.533333,-84.166667,-84.608333,-86.383333,-87.266667,-88.03629,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,10.440355,100.216667,101.491667,101.575,102.491667,103.383333,103.658333,104.441667,105.616287,106.473854,106.725,11.433333,113.983333,114.825,116.058333,12.316667,12.333333,12.391667,12.450494,12.983333,120.541667,120.925,121.013757,121.325],\"min\":-175.233333,\"max\":178.425},{\"attribute\":\"MAX_BBYMAX\",\"count\":239,\"type\":\"number\",\"values\":[-1.075,-1.083333,-11.475,-11.808333,-13.641667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.544862,-20.108333,-21.125,-22.491667,-22.575,-23.241667,-24.6,-25.1,-25.641667,-25.75,-25.941667,-26.283333,-26.391667,-29.058333,-29.241667,-32.916667,-33.175,-33.6,-33.808333,-34.366667,-34.65,-35.183333,-36.8,-37.566667,-4.15,-4.291667,-4.6,-41.2,-5.875,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.475,10.05,10.541667,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.9,14.025,14.133333,14.158333,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.825,16.416667,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.491667,19.783333,19.908333,2.116667,21.783333,23.183333,23.641667],\"min\":-41.2,\"max\":64.166667},{\"attribute\":\"MAX_BBYMIN\",\"count\":240,\"type\":\"number\",\"values\":[-0.30257,-1.433333,-11.758333,-12.281801,-13.866667,-14.408333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.075,-20.248073,-21.166667,-22.625,-23.033333,-23.842331,-24.7,-25.391667,-25.891667,-25.983333,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.675,-33.075,-33.556142,-34.091667,-34.108333,-34.933333,-35.008333,-35.455764,-36.964958,-38.0105,-4.333333,-4.478678,-4.65,-41.35,-6.208333,-6.383127,-6.933333,-8.583333,-8.933333,-9.441667,-9.508333,0,0.166719,0.283333,0.3,1.25,1.325,10.408333,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.516667,13.591667,13.975,14.033333,14.441667,14.571814,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.875,17.958333,18.033333,18.316667,18.491667,18.891667,19.233333,19.633333,2,2.708333,20.620237,22.056849,22.2],\"min\":-41.35,\"max\":64.05},{\"attribute\":\"MAX_NATSCA\",\"count\":5,\"type\":\"number\",\"values\":[0,100,20,300,50],\"min\":0,\"max\":300},{\"attribute\":\"MAX_PERKM\",\"count\":198,\"type\":\"number\",\"values\":[0,101,102,1021,10224,10267,105,106,1064,107,1086,1087,109,1100,1111,112,1135,116,1161,119,11900,1192,120,1202,121,122,123,12342,13,130296,131,132,1325,133,1354,142,144,149,15,151,153,154,155,16,160,162,164,1658,166,173,174,177,1773,179,18,184,186,1891,1898,190,1901,19314,196,199,202,205,208,210,215,218,219,22,2202,223,2284,234,2388,239,2412,2440,245,2459,249,25,250,256,26,261,266,27,270,278,28,283,286,287,288,2946,296,2982],\"min\":0,\"max\":130296},{\"attribute\":\"MAX_PERMI\",\"count\":189,\"type\":\"number\",\"values\":[0,10,101,102,103,1030,108,11,110,1101,111,114,115,116,1175,1179,118,1181,12001,122,123,126,127,129,130,134,135,136,1369,138,14,1419,145,1484,149,1499,1516,152,1528,155,159,16,162,165,166,168,17,172,173,176,177,179,18,1830,184,1853,187,189,19,192,194,197,198,2,20,206,21,212,213,214,215,22054,222,223,224,227,23,238,239,24,240,243,25,251,255,2581,263,27,274,28,284,285,286,292,295,309,31,3102,311,3113],\"min\":0,\"max\":80962},{\"attribute\":\"MAX_POP10\",\"count\":241,\"type\":\"number\",\"values\":[0,1005257,1014546,10169723,10190861,1042928,1046787,1060587,107260,1072902,1073782,1074311,10811002,108543,1086244,10929146,11029015,1105973,1115771,111975,1122682,1123733,1124323,112927,1154222,1163890,1173386,1193251,1200842,12322855,12495084,12814908,128698,1289566,1291613,1316564,1337078,1369629,13762740,1381747,143230,144164,144390,1444949,1450902,14548962,145850,1472051,14936123,1504217,15220,1548599,1551977,1561335,1577138,1581087,1590116,1590482,159243,160966,16172884,166212,1662508,1712125,1727538,1732952,1742194,1759840,176365,1788020,1831176,1832316,1833439,1835853,1838722,1904377,191152,1946052,194824,1951272,1990917,2010175,2037124,206499,2066046,2084,2129163,2143900,2150614,2155592,218269,2182723,21887,2189383,219674,221736,224300,22534,2324568,23336],\"min\":0,\"max\":16172884},{\"attribute\":\"MAX_POP20\",\"count\":241,\"type\":\"number\",\"values\":[0,1005257,1014546,10259448,1060587,107260,1072902,1073782,1074311,1076471,108543,1086244,10991915,11030955,1105973,11120470,1115771,111975,112927,1130999,11359674,1163890,1173386,11947707,1200842,1230007,128698,1289566,1291613,13143622,1316564,1337078,13414375,1381747,143230,144164,1443206,1444949,145850,1504217,15074060,15091561,15220,1551977,1577138,15779579,1581475,1588839,1590482,159243,160966,1610331,16172884,166212,1662508,1712468,17250245,1727538,1742194,17425624,176365,1788020,1823845,1826034,1829910,1831176,1831921,1833439,1835853,1836390,18577087,1874437,1892286,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2100407,2129163,21394172,2140496,2142805,2143900,2150614,2153391,218269,21887,219674,221736,2240256,224300,2244726,22534,2263899,2297630],\"min\":0,\"max\":24218878},{\"attribute\":\"MAX_POP300\",\"count\":219,\"type\":\"number\",\"values\":[0,10011551,1007529,10140950,1014546,1060587,1073782,1074311,1086244,1105973,1108173,1113489,1115771,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,1337078,1381747,143230,144164,1444949,145850,14870543,1504217,15220,1551977,15645640,1577138,1581475,1590116,1590482,159243,160966,1610331,166212,1662508,16718429,1727538,1740692,1742194,1788020,18203351,1823845,1826034,1831921,1835853,1838722,1838972,1839463,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,2066046,2084,2129163,2141255,2142805,2150614,2174327,21887,219674,21991959,22031364,221736,224300,2244726,22534,2297630,2322955,23336,23366503,23647944,23700631,2419489,2443605,2445384,244896,2498797,251136,254169,2564188,262796,264350,265361,2660614,26631586],\"min\":0,\"max\":87652060},{\"attribute\":\"MAX_POP310\",\"count\":45,\"type\":\"number\",\"values\":[0,10011551,10140950,1108173,11547877,1256924,12611862,1337078,137121250,14903021,15645640,1610331,18203351,18924578,18948089,20149761,21991959,2244726,224908923,2666328,26749011,30696820,31303497,3164008,3503466,3576473,3767139,3910939,40576904,4207001,42594594,44354170,4561697,4983714,5187749,5190755,5451385,5678280,6333154,8450289,8889292,9206246,9212245,968976,9960588],\"min\":0,\"max\":224908923},{\"attribute\":\"MAX_POP50\",\"count\":238,\"type\":\"number\",\"values\":[0,10011551,1007529,10140950,1014546,1060587,107260,1073782,1074311,1076471,108543,1086244,1105973,1108173,1115771,111975,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,13292739,1337078,1371285,1381747,143230,144164,1444949,145850,14868745,1504217,15220,1551977,1577138,1581475,1590116,1590482,159243,160966,1610331,16406759,16510327,1651113,166212,1662508,16718429,1727538,1740692,1742194,176365,1788020,18203351,1822603,1826034,1831921,1833439,1835853,1838722,1838972,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2129163,21387676,2141255,2142805,2150614,2174327,218269,21887,219674,22017580,221736,224300,2244726,22534,2297630,2312867,2322955,2324568,23336,2395309,2419489,24374217,2443605],\"min\":0,\"max\":53845691},{\"attribute\":\"MEAN_BBXC\",\"count\":242,\"type\":\"number\",\"values\":[-0.169651,-0.188893,-1.521746,-10.734923,-100.290632,-104.993967,-118.107478,-122.301354,-122.982768,-13.194643,-13.230082,-13.588647,-15.612698,-15.960139,-16.58125,-17.343779,-171.781117,-175.206798,-21.8825,-23.514907,-3.749399,-4.019846,-43.407551,-46.651489,-47.9714,-5.263708,-55.188737,-56.12273,-57.535385,-58.153788,-58.50845,-59.589731,-6.278983,-6.87491,-60.988377,-61.202183,-61.3775,-61.383365,-61.745833,-61.824059,-62.726389,-65.260317,-66.917919,-68.157765,-69.980546,-7.518511,-7.987419,-70.66127,-71.541251,-72.222424,-73.815782,-74.116517,-75.717666,-76.798044,-77.002668,-77.010199,-77.335571,-78.460061,-79.464213,-79.494919,-80.236416,-82.354344,-84.111698,-84.328739,-86.263402,-87.19911,-87.85874,-88.767803,-89.176042,-9.232769,-90.54419,-95.431928,-99.116655,0,1.190359,1.535473,10.202041,10.756508,100.545047,101.644598,101.716617,102.648054,103.821508,104.039242,104.78577,105.892881,106.883013,106.989399,11.518344,114.035195,114.908824,115.929521,12.419907,12.437175,12.462153,12.561474,120.598765,120.915044,121.053901,121.292375],\"min\":-175.206798,\"max\":178.472885},{\"attribute\":\"MEAN_BBYC\",\"count\":242,\"type\":\"number\",\"values\":[-0.198438,-1.249679,-11.639931,-12.041474,-13.837855,-14.028166,-15.403941,-15.824583,-16.506439,-17.728125,-17.832399,-18.106731,-18.875473,-19.030556,-2.034427,-20.221833,-21.142325,-22.551143,-22.856463,-23.558961,-24.656793,-25.307462,-25.755716,-25.880831,-26.187259,-26.315428,-26.430254,-29.128155,-29.350222,-3.227847,-33.034648,-33.461735,-33.846724,-33.954979,-34.681331,-34.828337,-35.309627,-36.896818,-37.835257,-4.251293,-4.384467,-4.626389,-41.285539,-6.162244,-6.313824,-6.833434,-8.559115,-8.851964,-9.42996,-9.433491,0,0.323809,0.338176,0.395238,1.33869,1.352586,10.451672,10.638816,11.488418,11.5715,11.871032,12.046528,12.120479,12.13336,12.365975,12.626173,12.841733,13.128773,13.145833,13.455208,13.522591,13.738798,13.761017,14.005921,14.083298,14.603015,14.742828,14.823118,14.938056,15.298056,15.327408,15.376031,15.559101,16.421065,16.85864,17.120565,17.248864,17.306019,17.967124,18.018509,18.092569,18.467176,18.56946,19.189154,19.473748,19.720606,2.054239,2.915909,20.873406,22.616509],\"min\":-41.285539,\"max\":64.116125},{\"attribute\":\"MEGACITY\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"MEGANAME\",\"count\":145,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Al Kuwayt (Kuwait City)\",\"Al-Khartum\",\"Al-Qahirah\",\"Amman\",\"Amsterdam\",\"Ankara\",\"Antananarivo\",\"Ar-Riyadh\",\"Asunción\",\"Athínai\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baku\",\"Bamako\",\"Bangalore\",\"Bayrut\",\"Beijing\",\"Beograd\",\"Berlin\",\"Bishkek\",\"Bogotá\",\"Brasília\",\"Brazzaville\",\"Bruxelles-Brussel\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Cape Town\",\"Caracas\",\"Chengdu\",\"Chicago\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de México\",\"Ciudad de Panamá (Panama City)\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Dar es Salaam\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dhaka\",\"Dimashq\",\"Dubayy\",\"Dublin\",\"El Djazaïr\",\"Freetown\",\"Harare\",\"Helsinki\",\"Hong Kong\",\"Houston\",\"Hà Noi\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Johannesburg\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Kigali\",\"Kinshasa\",\"Kolkata\",\"Krung Thep\",\"Kuala Lumpur\",\"Kyiv\",\"Kyoto\",\"København\",\"La Habana\",\"La Paz\",\"Lagos\",\"Lima\",\"Lisboa\",\"Lomé\",\"London\",\"Los Angeles-Long Beach-Santa Ana\",\"Luanda\",\"Lusaka\",\"Madrid\",\"Managua\",\"Manila\",\"Maputo\",\"Melbourne\",\"Miami\",\"Minsk\",\"Monrovia\",\"Monterrey\",\"Montevideo\",\"Moskva\",\"Mumbai\",\"Muqdisho\",\"N'Djaména\",\"Nairobi\",\"Nay Pyi Taw\",\"New York-Newark\",\"Niamey\",\"Osaka-Kobe\"]},{\"attribute\":\"MIN_AREAKM\",\"count\":200,\"type\":\"number\",\"values\":[0,1,10,1010,1035,104,105,1054,106,1078,108,109,1093,1100,1114,112,1121,1124,113,1137,114,12,120,122,1249,126,1265,128,130,1303,131,1338,1345,141,143,1432,1434,145,1479,148,15,1561,16,160,166,1675,169,17,171,172,174,177,178,179,18,181,183,184,187,191,1914,192,195,197,202,209,21,211,2130,217,218,224,226,23,233,236,237,2388,244,2443,245,246,2490,25,2512,257,264,27,270,275,2761,278,28,3,30,305,310,316,317,32],\"min\":0,\"max\":5912},{\"attribute\":\"MIN_AREAMI\",\"count\":166,\"type\":\"number\",\"values\":[0,1,10,102,104,106,1066,107,11,118,12,120,122,125,127,129,13,131,133,134,135,1362,139,14,144,146,1464,147,15,156,158,16,160,165,166,168,169,17,171,172,174,178,179,183,185,188,189,191,194,195,196,198,2,20,202,205,206,207,21,215,220,227,2283,229,23,232,247,257,26,266,268,269,27,270,273,279,28,29,298,3,30,310,313,315,32,330,334,34,342,345,347,35,351,37,375,38,390,4,40,400],\"min\":0,\"max\":2283},{\"attribute\":\"MIN_BBXMAX\",\"count\":240,\"type\":\"number\",\"values\":[-0.098725,-1.433333,-10.658333,-100.125,-104.866667,-117.857183,-122.358333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.2,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.158333,-46.383333,-47.783333,-5.216667,-55.107566,-55.8,-57.543999,-58.116667,-58.175,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.57441,-72.033333,-73.574946,-74.008333,-75.45,-76.733333,-76.752653,-76.85,-77.258333,-78.291667,-79.130272,-79.4,-8.958333,-80.175719,-82.208333,-83.879976,-83.983333,-86.158333,-87.141667,-87.528138,-88.75,-88.966667,-90.425,-95.133333,-99.018165,0,0.307108,1.483333,1.591667,10.497585,100.844293,101.841667,101.891667,102.725,104,104.433333,105,106.2294,106.932506,107.041667,11.091667,11.6,114.3,114.991667,117.208333,12.481009,12.541667,12.658333,12.766667,120.65,121.038985,121.622484,121.9],\"min\":-175.166667,\"max\":178.533333},{\"attribute\":\"MIN_BBXMIN\",\"count\":238,\"type\":\"number\",\"values\":[-0.35,-1.091667,-1.616667,-10.816667,-100.5,-105.241667,-118.991667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.75,-47.058333,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-59.016667,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-67.133333,-68.258333,-7.116667,-7.7,-70.208333,-70.958333,-71.658333,-72.441667,-74.266667,-74.75,-75.983333,-76.866667,-77.166667,-77.4,-77.533333,-78.591667,-79.591667,-8.058333,-80.008333,-80.466667,-82.533333,-84.366667,-84.875,-86.383333,-87.266667,-88.408333,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,1.658333,10.333333,101.358333,102.491667,103.125,103.633333,104.441667,104.975,105.891667,106.725,11.433333,111.441667,112.533333,114.825,119.016667,12.116667,12.333333,12.391667,12.958333,12.983333,120.141667,120.541667,120.741667,125.516667],\"min\":-175.233333,\"max\":178.425},{\"attribute\":\"MIN_BBYMAX\",\"count\":241,\"type\":\"number\",\"values\":[-1.083333,-1.76663,-11.475,-11.808333,-13.691667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.95,-20.108333,-21.125,-22.491667,-22.837896,-23.358333,-24.6,-25.208333,-25.641667,-25.75,-25.991667,-26.283333,-26.391667,-29.058333,-29.241667,-33.016667,-33.175,-33.641667,-33.808333,-34.375,-34.65,-35.183333,-36.825,-37.589905,-4.15,-4.291667,-4.6,-41.2,-6.016667,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.425,10.041667,10.533671,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.872295,13.9,14.025,14.133333,14.702876,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.699422,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.308333,19.640315,19.783333,2.116667,21.319209,22.4,22.575491],\"min\":-41.2,\"max\":64.166667},{\"attribute\":\"MIN_BBYMIN\",\"count\":237,\"type\":\"number\",\"values\":[-0.391667,-1.433333,-11.758333,-12.316667,-13.866667,-14.433333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.991667,-20.333333,-21.166667,-22.625,-23.033333,-23.891667,-24.7,-25.491667,-25.891667,-25.991667,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.841667,-33.075,-33.7,-34.091667,-34.108333,-34.933333,-35.008333,-35.483333,-37.091667,-38.208333,-4.333333,-4.5,-4.65,-41.35,-6.208333,-6.933333,-7.716667,-8.583333,-8.933333,-9.441667,-9.508333,0,0.033333,0.283333,0.3,1.25,1.325,10.325,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.5,13.591667,13.975,14.016667,14.033333,14.433333,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.8,17.958333,18.033333,18.316667,18.491667,18.891667,19.2,19.283333,19.633333,19.866667,2,2.7,21.925],\"min\":-41.35,\"max\":64.05},{\"attribute\":\"MIN_PERKM\",\"count\":192,\"type\":\"number\",\"values\":[0,101,102,105,106,109,112,1148,116,1175,1180,119,120,121,122,123,1257,126,128,13,130,131,132,133,136,1360,1365,137,142,1439,144,149,1494,15,153,155,156,158,16,160,162,164,166,170,173,174,175,177,18,1837,184,186,190,1908,196,199,201,203,205,208,215,217,219,22,2219,222,223,228,2296,233,237,239,240,244,245,249,25,250,251,256,258,26,261,266,27,274,28,280,287,288,293,295,30,304,309,31,310,311,315,318],\"min\":0,\"max\":2296},{\"attribute\":\"MIN_PERMI\",\"count\":181,\"type\":\"number\",\"values\":[0,10,100,101,102,103,106,108,109,11,110,114,1141,115,116,118,1186,122,123,124,125,126,127,129,130,134,135,136,1379,138,14,142,1427,145,147,149,152,155,156,159,16,160,162,165,17,170,174,179,18,182,183,189,19,192,193,196,197,198,2,20,21,211,215,216,217,219,221,222,224,227,23,231,234,238,24,240,243,247,248,25,251,254,255,27,274,276,28,285,286,289,29,290,291,293,295,300,302,309,31,317],\"min\":0,\"max\":1427},{\"attribute\":\"NAME\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"NAMEALT\",\"count\":43,\"type\":\"string\",\"values\":[\"Al Kuwayt|Kuwait City\",\"Al-Khartum\",\"Al-Qahirah\",\"Ar-Riyadh\",\"Asunción\",\"Athinai\",\"Bayrut\",\"Bengaluru\",\"Bogotá\",\"Brasília\",\"Bruxelles-Brussel\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de México\",\"Ciudad de Panamá|Panama City|Panama\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dimashq\",\"El Djazaïr\",\"Hà Noi\",\"Krung Thep\",\"Kyiv\",\"La Habana\",\"Lomé\",\"Los Angeles-Long Beach-Santa Ana\",\"Muqdisho\",\"N'Djaména\",\"Nay Pyi Taw\",\"New York-Newark\",\"Osaka-Kobe\",\"Ottawa-Gatineau\",\"P'yongyang\",\"Phnum Pénh\",\"San Francisco-Oakland\",\"San José\",\"Sana'a'\",\"Sao Paulo|São Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Valparaíso\",\"Washington D.C.\",\"Yangon\",\"Yaoundé\",\"Ürümqi|Wulumqi\"]},{\"attribute\":\"NAMEASCII\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"NAMEDIFF\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"NAMEPAR\",\"count\":12,\"type\":\"string\",\"values\":[\"Athínai\",\"Beograd\",\"Bombay\",\"Bucuresti\",\"Calcutta\",\"Copenhagen\",\"Dubayy\",\"Lisboa\",\"Moskva\",\"Praha\",\"Warszawa\",\"Wien\"]},{\"attribute\":\"NATSCALE\",\"count\":8,\"type\":\"number\",\"values\":[10,110,20,200,30,300,50,600],\"min\":10,\"max\":600},{\"attribute\":\"POP1950\",\"count\":135,\"type\":\"number\",\"values\":[0,1002,1016,1021,104,1041,106,1066,1068,110,111,1116,11275,1212,1216,12338,129,1298,1302,1304,1322,133,1332,1347,1360,137,138,1415,143,145,1452,148,15,150,1544,1618,1682,1690,1700,171,177,18,183,1855,1884,194,20,202,206,208,2086,211,219,22,2334,24,2494,253,258,275,280,281,282,284,2857,287,2883,2950,305,31,319,32,322,328,33,3352,336,341,356,36,364,366,367,392,4046,411,4147,418,4331,4513,46,468,4999,505,5098,513,516,522,5356,556],\"min\":0,\"max\":12338},{\"attribute\":\"POP1955\",\"count\":139,\"type\":\"number\",\"values\":[0,1016,104,106,1091,110,111,112,1227,1248,1249,125,1289,129,1306,131,13219,136,1365,1368,13713,1396,140,1405,1440,1449,148,1539,1553,1563,1574,1618,1712,1714,174,182,184,186,1872,189,1906,192,1972,201,2018,2021,2087,21,2121,2143,220,235,246,25,252,257,265,27,28,281,292,3029,3044,312,314,3299,34,340,342,3432,3592,37,370,374,376,377,3801,387,40,405,409,41,414,425,431,439,451,46,461,4628,468,49,498,501,5055,5120,5154,53,533,556],\"min\":0,\"max\":13713},{\"attribute\":\"POP1960\",\"count\":141,\"type\":\"number\",\"values\":[0,1001,1002,1005,1019,1106,1119,112,1147,1151,1163,1165,1166,119,124,1269,128,1284,1285,130,1316,1361,137,14164,1436,1453,1485,1514,156,1592,162,1634,16679,174,1744,1756,179,181,1811,1814,1823,1851,1873,192,1980,199,2089,2135,2151,218,219,2200,2274,23,230,233,236,2361,2392,2456,247,248,252,2620,263,2679,283,293,311,319,3260,34,344,347,359,3680,382,384,389,393,3970,40,4060,415,419,433,4374,438,440,443,446,448,45,476,4945,5012,508,519,538,551],\"min\":0,\"max\":16679},{\"attribute\":\"POP1965\",\"count\":143,\"type\":\"number\",\"values\":[0,1003,1038,1049,109,111,112,1132,1135,1154,1165,1206,121,1212,1229,1230,1288,132,1323,1327,1373,1377,138,1389,1396,146,148,15177,1525,158,1598,160,1614,1657,169,1709,172,1760,1780,1878,1880,2001,20284,2068,208,2080,2093,2121,2135,222,227,2284,2294,233,235,2361,2390,248,2511,2584,259,268,269,2780,2829,287,2898,29,298,299,303,310,315,319,3191,322,3232,3297,337,339,3452,360,369,394,399,404,436,45,461,472,473,4738,477,478,481,482,4854,488,499,51],\"min\":0,\"max\":20284},{\"attribute\":\"POP1970\",\"count\":138,\"type\":\"number\",\"values\":[0,1029,1035,1045,1054,1070,1076,111,1114,1182,1254,1267,1274,129,1298,1300,1307,1341,1362,1374,1380,1396,1403,1414,1444,147,1505,155,1568,1592,1615,16191,163,164,1655,1693,1741,1779,1817,183,192,1946,206,2060,2070,2075,2141,222,223,23298,2334,238,2383,2485,2488,2529,2535,2647,2667,272,2772,278,298,2980,3110,3135,3206,3290,340,3458,3521,3534,357,359,363,366,371,388,3915,398,408,417,433,451,455,459,460,472,48,494,500,501,507,525,531,5312,532,548,552,553],\"min\":0,\"max\":23298},{\"attribute\":\"POP1975\",\"count\":142,\"type\":\"number\",\"values\":[0,100,1015,1016,10690,107,1120,1122,1126,1150,1172,1198,1206,1339,1348,1386,1403,141,1429,1444,1482,149,1499,1500,1547,15880,1589,1610,1612,1622,167,1702,1709,1793,180,1848,1884,1890,1911,1926,198,2005,2023,2030,2059,2103,2111,2151,2221,226,2263,231,2342,240,2561,257,2590,2620,2626,26615,2738,2770,284,292,2960,3040,3130,3138,329,3300,356,3600,363,3696,3842,385,3890,3943,398,4273,440,443,445,454,456,4813,485,4999,500,528,530,532,572,575,581,582,596,6034,611,624],\"min\":0,\"max\":26615},{\"attribute\":\"POP1980\",\"count\":143,\"type\":\"number\",\"values\":[0,1042,1055,1057,1074,1090,1096,1164,1175,1179,12089,1240,1247,125,128,1293,13010,1318,1356,1376,1384,1416,1454,15601,1565,1574,1609,1621,1623,1625,1654,1656,1701,1818,1842,1865,189,1891,1913,1992,2049,2053,2057,2109,2201,2217,225,2293,2378,238,2415,2424,2449,254,257,2572,2575,2606,2656,274,2765,2777,2812,28549,2987,3008,3056,3122,3145,3227,324,325,3266,337,3390,344,3525,361,371,3721,415,423,4253,4397,4438,446,4609,469,4723,489,5079,525,526,533,538,550,551,580,5955,5984],\"min\":0,\"max\":28549},{\"attribute\":\"POP1985\",\"count\":144,\"type\":\"number\",\"values\":[0,1012,1013,1016,10181,1029,10341,10350,1046,1056,1090,1121,1122,1123,1160,1162,1177,1181,1197,1295,13395,1359,1396,14109,1437,1474,1476,1508,1546,1559,1566,15827,1585,1596,1611,1654,1660,1672,168,1681,1714,1716,1773,1879,1925,1950,1958,2005,2036,204,2069,2195,2213,2273,2406,2410,2446,2518,260,2629,2639,2658,2693,2709,2793,2805,2854,2935,297,30304,3047,3060,3063,3355,3395,3429,3432,344,345,3500,3521,3607,393,402,4087,412,4201,424,427,4355,460,466,4660,471,492,5070,5116,514,5279,5407],\"min\":0,\"max\":30304},{\"attribute\":\"POP1990\",\"count\":144,\"type\":\"number\",\"values\":[0,1035,1038,1042,1047,10513,10544,1062,1088,10883,10890,1091,11035,1120,1134,1161,1162,1174,1175,1191,1197,1212,1224,12308,1293,1306,1316,1380,1392,1405,14776,1500,1522,1528,15312,1546,1559,1568,1607,16086,1628,1680,1691,1733,1760,1791,1863,1898,1908,2005,2026,2040,2096,2100,2102,2108,2155,2184,219,2325,2360,2526,2537,2561,2574,2594,2682,2711,2767,2907,2922,2955,2961,3016,3070,3117,3126,32530,330,3376,3422,343,3448,3450,3632,3807,3969,398,4036,4092,432,4414,4616,473,4740,4764,477,504,529,537],\"min\":0,\"max\":32530},{\"attribute\":\"POP1995\",\"count\":144,\"type\":\"number\",\"values\":[0,10174,10256,1034,10423,1045,1048,11052,1107,11154,11339,1138,1142,1147,1149,1160,1168,1169,1190,11924,1194,1213,1217,1255,1267,1268,1287,1379,14111,1415,1417,1427,1584,15948,1616,1649,1652,1668,1670,1678,16811,1688,16943,1715,1747,1755,1766,1789,1804,1849,1893,1953,2018,2116,2127,2157,2183,2257,2265,2295,2394,2442,2535,2590,2600,2676,2781,2816,2838,2842,289,2951,2961,3035,3095,3122,3213,3242,3257,3353,33587,3403,3424,3425,3471,3478,3651,3839,4197,4431,4447,452,4598,464,4701,4744,4964,509,526,542],\"min\":0,\"max\":33587},{\"attribute\":\"POP2000\",\"count\":141,\"type\":\"number\",\"values\":[0,10016,1005,1007,1019,1023,10285,1032,10534,1063,1072,1073,1077,1079,10803,1084,1096,1097,1100,1110,1111,11165,1127,1128,1160,1172,11814,11847,1192,1201,1206,1219,1233,13058,1306,13243,1357,1361,1365,1379,1390,1487,1499,1507,1561,16086,1653,1666,1674,1700,17099,1730,1733,17846,1787,18022,1806,1854,1877,1949,1959,1963,1998,2029,2044,2116,2135,2158,2187,2233,2493,2591,2606,2640,2672,2715,2732,2746,2752,2754,2864,3032,3043,3117,3179,3236,3266,3384,3385,3433,34450,3542,3553,3567,3752,3849,3919,3949,4017,4078],\"min\":0,\"max\":34450},{\"attribute\":\"POP2005\",\"count\":143,\"type\":\"number\",\"values\":[0,1023,1037,10416,1042,1044,10717,10761,1085,1093,1094,1103,1106,1119,11258,1140,11469,11487,1164,1166,1189,1216,1217,12307,1248,12553,12576,1261,1272,1273,1315,1318,1334,1363,1368,1374,1405,1409,1415,14282,14503,1489,1515,1525,1527,1590,1593,1647,1693,1742,1762,1775,1777,1801,1805,18202,18333,1867,18732,18735,1885,1888,1936,1984,2025,2062,2093,2098,2158,2189,2241,2264,2330,2434,2606,2672,2679,2762,2787,2902,2930,2994,3012,3087,3138,3199,3230,3258,3265,3341,3348,3387,3391,35327,3533,3564,3572,3579,3641,3928],\"min\":0,\"max\":35327},{\"attribute\":\"POP2010\",\"count\":143,\"type\":\"number\",\"values\":[0,10061,1024,1031,1041,10452,1059,1060,1085,1099,1100,1102,11100,11106,1115,11294,1145,1149,1162,11748,1185,11893,1245,12500,1264,12795,1281,1284,1328,1338,13485,1355,1379,1420,1433,1446,1448,1452,1466,14787,1494,14987,1513,1572,1576,1590,1611,1679,1697,1701,1705,1707,1743,1805,1846,1870,18845,1892,18978,19028,19040,1942,1998,2008,2063,2121,2146,2151,2154,2174,2184,2189,2313,2315,2466,2603,2604,2709,2812,2930,2985,3010,3100,3112,3181,3215,3242,3277,3300,3339,3354,3406,3435,3450,35676,3599,3712,3716,3728,3802],\"min\":0,\"max\":35676},{\"attribute\":\"POP2015\",\"count\":144,\"type\":\"number\",\"values\":[0,1022,1024,1027,1029,1044,10495,10530,10572,1087,1096,1098,1102,1104,1106,1108,1127,11337,1139,1160,11662,11741,1182,1185,1212,12171,12503,12773,1285,13089,1321,1324,1374,1379,1409,1421,14796,1500,1504,1505,1516,1519,1520,15577,15789,1597,1621,1645,1651,1663,1664,1669,1692,1708,1724,1744,1787,1793,1804,1846,1877,1931,1941,19441,1947,19485,19582,1994,20072,2030,2159,2209,2219,2247,2298,2305,2322,2332,2340,2345,2385,2396,2651,2675,2748,2856,2890,3098,3256,3267,3319,3333,3346,3357,3363,3423,3453,3544,3574,36094],\"min\":0,\"max\":36094},{\"attribute\":\"POP2020\",\"count\":143,\"type\":\"number\",\"values\":[0,10007,1004,1015,1029,10524,1064,10792,1092,1102,1108,1113,11177,11313,11365,1152,1159,1165,1169,1177,1185,1232,1233,12403,1258,12775,12786,1281,1284,12842,1308,13160,13432,13465,1398,1405,1457,1482,1506,1527,1587,1649,1655,1670,1676,17015,17039,1709,17214,1729,1735,1744,1794,1804,1839,1864,1879,1921,1938,1949,1979,1984,19974,2006,20189,2028,2035,2038,2051,20544,2058,2130,2151,21946,2229,2277,2310,2416,2451,2502,2525,2532,2558,2592,2620,2621,2688,2770,2862,2955,2981,2996,3275,3278,3306,3330,3434,3453,3475,3504],\"min\":0,\"max\":36371},{\"attribute\":\"POP2025\",\"count\":144,\"type\":\"number\",\"values\":[0,10031,1011,1044,10526,1078,1095,1102,1104,1114,1132,11368,1148,1159,11689,11695,1195,1196,1200,1236,1257,1268,1274,1317,13179,1321,1326,13461,13653,13807,13875,13892,1413,14134,1441,14451,1481,1515,1544,1578,1580,1627,1653,1655,1736,1744,1753,1776,1797,1804,1820,18466,18707,1883,1894,1938,19422,1949,2027,2037,20370,20695,2083,2097,2111,21124,2119,2142,2150,2189,2235,2312,2380,2393,24051,2410,2457,2476,2506,2590,2633,2636,2642,2713,2722,2772,2790,2851,2971,3012,3041,3058,3104,3293,3300,3330,3436,3482,3537,3600],\"min\":0,\"max\":36399},{\"attribute\":\"POP2050\",\"count\":143,\"type\":\"number\",\"values\":[0,10036,10526,1089,1096,1102,1112,1114,11368,1159,1163,1193,12102,1220,1236,12363,1315,1320,1332,13413,1343,1359,13672,13768,1406,1411,14545,1461,1472,1475,14808,1520,15561,15796,1604,1655,16762,1690,1715,1736,1737,1744,1759,1804,1883,1902,1907,1938,19412,1949,2028,2047,20560,20628,2077,2083,21009,21428,2150,2172,2173,2178,2187,22015,2222,2247,2316,2444,2496,2529,2549,2560,2632,26385,2661,2715,2772,2791,2855,2856,2885,2892,2911,2956,3038,3086,3118,3198,3214,3305,3326,3330,3346,3358,3382,3436,3605,3619,3630,36400],\"min\":0,\"max\":36400},{\"attribute\":\"POP_MAX\",\"count\":240,\"type\":\"number\",\"values\":[10061000,1024000,1029300,1031000,1041000,10452000,1059000,1060000,107260,1085000,1086244,1099000,1100000,1102000,11100000,11106000,1115000,111975,112927,11294000,113364,1145000,1149000,115826,1162000,11748000,1185000,11893000,1240000,1245000,12500000,1264000,12795000,12797394,1281000,1284000,128698,1328000,1338000,1355000,1379000,1406000,1420000,1433000,1446000,1448000,1450000,1452000,145850,1466000,14787000,1494000,14987000,1513000,15220,155963,1572000,1576000,1590000,1611000,166212,1679000,1697000,1701000,1705000,1707000,1743000,175399,1805000,1846000,1870000,188084,18845000,18978000,19028000,19040000,191152,1942000,1998000,2008000,2063000,206499,208411,2121000,2122300,2151000,2154000,217000,2174000,218269,2184000,21887,2189000,224300,224838,227940,2313000,2313328,23336,234331],\"min\":500,\"max\":35676000},{\"attribute\":\"POP_MIN\",\"count\":243,\"type\":\"number\",\"values\":[10021295,1005257,1019022,103693,10452000,1060000,1060587,10634,10811002,1085000,10929146,1093485,1099000,11177,111975,1122874,1137347,113906,115826,1163890,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1297281,1338000,13381,1353189,136473,13768,1391433,1399814,140000,1431270,1448000,1459640,14608512,1466000,148416,1494000,1508225,1536,1542813,1548599,15500,155963,157474,1577138,159243,15938,160966,162135,1655753,16571,1662508,1679000,1702139,1712125,1724,1731000,1742194,176365,180541,1815679,1835853,1892000,192385,193563,194530,194824,1951272,1963264,1974647,1977663,1978028,198214,1990917,199200,200,200452,2010175,2026469,20500,2087,217000,221736,22256,223757,22534,22881,229398,234032,234168,235017,23658,24226],\"min\":200,\"max\":14608512},{\"attribute\":\"POP_OTHER\",\"count\":218,\"type\":\"number\",\"values\":[0,10018444,1014546,102371,10271457,1037811,1038288,10585385,1060640,1060747,1061388,106219,1072567,1074640,1081361,1088042,1088194,1099610,111975,112572,1149981,11522944,1152904,1154748,11622929,1166878,1174778,12018058,1208361,1240558,12426085,1256715,1271541,1276128,12945252,1301407,130815,1365454,13720557,140594,142265,1434681,1435528,1443084,1480886,1490164,1498020,14995538,1518801,1521278,15220,1557919,158896,160116,1604086,1611692,1636574,164877,1661980,1675117,16803572,1682968,1718895,1742507,176365,1772679,1795582,1805353,18171,1821489,1827367,1831877,1844658,191814,1930305,1951272,2012431,2029349,2044401,2050212,206499,2139587,2153702,2175991,21887,221736,222513,222985,22478,2306851,2325931,23336,2334371,2381280,2385397,2391150,2401318,243794,2456292,2470140],\"min\":0,\"max\":16803572},{\"attribute\":\"RANK_MAX\",\"count\":12,\"type\":\"number\",\"values\":[10,11,12,13,14,2,4,5,6,7,8,9],\"min\":2,\"max\":14},{\"attribute\":\"RANK_MIN\",\"count\":14,\"type\":\"number\",\"values\":[1,10,11,12,13,14,2,3,4,5,6,7,8,9],\"min\":1,\"max\":14},{\"attribute\":\"SCALERANK\",\"count\":8,\"type\":\"number\",\"values\":[0,1,2,3,4,6,7,8],\"min\":0,\"max\":8},{\"attribute\":\"SOV0NAME\",\"count\":197,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"French Republic\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kingdom of Norway\",\"Kingdom of Spain\",\"Kingdom of the Netherlands\",\"Kiribati\",\"Korea, North\",\"Korea, South\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\"]},{\"attribute\":\"SOV_A3\",\"count\":197,\"type\":\"string\",\"values\":[\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\"]},{\"attribute\":\"TIMEZONE\",\"count\":187,\"type\":\"string\",\"values\":[\"Africa/Abidjan\",\"Africa/Accra\",\"Africa/Addis_Ababa\",\"Africa/Algiers\",\"Africa/Asmara\",\"Africa/Bamako\",\"Africa/Bangui\",\"Africa/Banjul\",\"Africa/Bissau\",\"Africa/Blantyre\",\"Africa/Brazzaville\",\"Africa/Bujumbura\",\"Africa/Cairo\",\"Africa/Casablanca\",\"Africa/Conakry\",\"Africa/Dakar\",\"Africa/Dar_es_Salaam\",\"Africa/Djibouti\",\"Africa/Douala\",\"Africa/El_Aaiun\",\"Africa/Freetown\",\"Africa/Gaborone\",\"Africa/Harare\",\"Africa/Johannesburg\",\"Africa/Kampala\",\"Africa/Khartoum\",\"Africa/Kigali\",\"Africa/Kinshasa\",\"Africa/Lagos\",\"Africa/Libreville\",\"Africa/Lome\",\"Africa/Luanda\",\"Africa/Lusaka\",\"Africa/Malabo\",\"Africa/Maputo\",\"Africa/Maseru\",\"Africa/Mbabane\",\"Africa/Mogadishu\",\"Africa/Monrovia\",\"Africa/Nairobi\",\"Africa/Ndjamena\",\"Africa/Niamey\",\"Africa/Nouakchott\",\"Africa/Ouagadougou\",\"Africa/Porto-Novo\",\"Africa/Tunis\",\"Africa/Windhoek\",\"America/Antigua\",\"America/Argentina/Buenos_Aires\",\"America/Belize\",\"America/Bogota\",\"America/Caracas\",\"America/Chicago\",\"America/Dominica\",\"America/Fortaleza\",\"America/Grenada\",\"America/Guatemala\",\"America/Guayaquil\",\"America/Guyana\",\"America/Havana\",\"America/Jamaica\",\"America/La_Paz\",\"America/Lima\",\"America/Los_Angeles\",\"America/Managua\",\"America/Mexico_City\",\"America/Monterrey\",\"America/Montreal\",\"America/Nassau\",\"America/New_York\",\"America/Panama\",\"America/Paramaribo\",\"America/Port-au-Prince\",\"America/Port_of_Spain\",\"America/Sao_Paulo\",\"America/St_Kitts\",\"America/Tegucigalpa\",\"America/Toronto\",\"America/Vancouver\",\"Asia/Amman\",\"Asia/Ashgabat\",\"Asia/Baghdad\",\"Asia/Bahrain\",\"Asia/Baku\",\"Asia/Bangkok\",\"Asia/Beirut\",\"Asia/Bishkek\",\"Asia/Brunei\",\"Asia/Chongqing\",\"Asia/Colombo\",\"Asia/Dhaka\",\"Asia/Dili\",\"Asia/Dubai\",\"Asia/Dushanbe\",\"Asia/Harbin\",\"Asia/Ho_Chi_Minh\",\"Asia/Hong_Kong\",\"Asia/Jakarta\",\"Asia/Jerusalem\",\"Asia/Kabul\"]},{\"attribute\":\"UN_ADM0\",\"count\":116,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Algeria\",\"Angola\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Benin\",\"Bolivia\",\"Brazil\",\"Bulgaria\",\"Burkina Faso\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Chad\",\"Chile\",\"China\",\"China, Hong Kong Special Administrative Region\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Cuba\",\"Czech Republic\",\"Côte d'Ivoire\",\"Democratic People's Republic of Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Ethiopia\",\"Finland\",\"France\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Haiti\",\"Honduras\",\"Hungary\",\"India\",\"Indonesia\",\"Iran (Islamic Republic of)\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Japan\",\"Jordan\",\"Kenya\",\"Kuwait\",\"Kyrgyzstan\",\"Lebanon\",\"Liberia\",\"Libyan Arab Jamahiriya\",\"Madagascar\",\"Malaysia\",\"Mali\",\"Mexico\",\"Mongolia\",\"Morocco\",\"Mozambique\",\"Myanmar\",\"Nepal\",\"Netherlands\",\"New Zealand\",\"Nicaragua\",\"Niger\",\"Nigeria\",\"Norway\",\"Pakistan\",\"Panama\",\"Paraguay\",\"Peru\",\"Philippines\",\"Poland\",\"Portugal\",\"Republic of Korea\",\"Romania\",\"Russian Federation\",\"Rwanda\",\"Saudi Arabia\",\"Senegal\",\"Serbia\",\"Sierra Leone\",\"Singapore\",\"Somalia\",\"South Africa\",\"Spain\",\"Sudan\",\"Sweden\",\"Syrian Arab Republic\"]},{\"attribute\":\"UN_FID\",\"count\":145,\"type\":\"number\",\"values\":[0,111,118,13,14,15,16,161,166,168,17,171,172,173,174,175,176,178,179,18,180,182,183,189,191,192,196,198,2,200,201,206,207,208,209,210,211,219,24,245,253,274,276,280,297,3,300,302,304,308,31,310,313,315,318,320,321,322,324,327,336,339,340,341,342,344,345,348,349,352,359,367,369,372,375,376,377,378,379,381,382,384,385,386,392,397,4,401,408,409,411,414,418,419,422,426,439,440,444,447],\"min\":0,\"max\":589},{\"attribute\":\"UN_LAT\",\"count\":145,\"type\":\"number\",\"values\":[-0.22,-1.26,-1.95,-12.08,-15.42,-15.79,-17.82,-18.9,-22.72,-23.58,-25.3,-25.73,-25.96,-26.17,-33.02,-33.88,-33.97,-34.62,-34.92,-36.9,-37.85,-4.28,-4.32,-6.16,-6.81,-8.81,0,0.32,1.26,10.49,11.56,12.1,12.15,12.48,12.65,12.97,13.51,13.7,13.75,14.09,14.61,14.68,15.36,15.55,16.87,18.48,18.52,19.07,19.42,19.75,2.04,21.03,22.27,22.54,23.04,23.7,24.15,24.65,25.03,25.27,25.67,25.83,27.71,29.38,29.77,3.14,3.86,30.07,30.67,31.24,31.94,32.04,33.33,33.49,33.6,33.71,33.79,33.88,34,34.01,34.34,34.53,34.63,35,35.68,35.77,36.78,37.54,37.79,37.94,38.72,38.89,39.02,39.57,39.9,39.92,4.63,40.2,40.32,40.44],\"min\":-37.85,\"max\":60.19},{\"attribute\":\"UN_LONG\",\"count\":144,\"type\":\"number\",\"values\":[-0.17,-0.2,-1.67,-10.79,-100.31,-105.07,-110.3,-118.25,-122.38,-122.96,-13.23,-13.67,-17.45,-3.69,-4.02,-43.45,-46.62,-47.89,-56.16,-57.62,-58.44,-6.25,-6.83,-66.89,-69.89,-7.63,-7.98,-71.55,-72.34,-73.9,-74.08,-75.65,-76.95,-77.04,-78.52,-79.41,-79.51,-80.27,-80.96,-82.41,-84.07,-84.34,-86.27,-87.2,-87.64,-89.2,-9.12,-90.52,-95.4,-99.12,0,1.2,10.71,100.51,101.7,103.83,104.07,104.91,105.82,106.8,106.91,11.51,114.17,116.38,12.51,12.54,120.96,121.47,121.5,125.75,126.93,13.23,13.32,135.51,135.75,139.8,14.45,145.07,15.24,15.28,15.29,151.02,16.32,17.99,174.76,18.48,19.09,2.12,2.43,20.41,21.01,23.33,23.65,24.97,26.12,27.57,28,28.17,28.21,29],\"min\":-122.96,\"max\":174.76},{\"attribute\":\"WORLDCITY\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"accum\",\"count\":11,\"type\":\"number\",\"values\":[1,12,13,15,2,3,4,5,6,7,8],\"min\":1,\"max\":15},{\"attribute\":\"accum2\",\"count\":1,\"type\":\"number\",\"values\":[1],\"min\":1,\"max\":1},{\"attribute\":\"numnum:count:ADM0CAP\",\"count\":10,\"type\":\"number\",\"values\":[12,13,15,2,3,4,5,6,7,8],\"min\":2,\"max\":15},{\"attribute\":\"numnum:count:ADMIN1_COD\",\"count\":10,\"type\":\"number\",\"values\":[12,13,15,2,3,4,5,6,7,8],\"min\":2,\"max\":15},{\"attribute\":\"numnum:count:CAPALT\",\"count\":10,\"type\":\"number\",\"values\":[12,13,15,2,3,4,5,6,7,8],\"min\":2,\"max\":15},{\"attribute\":\"numnum:count:CHANGED\",\"count\":10,\"type\":\"number\",\"values\":[12,13,15,2,3,4,5,6,7,8],\"min\":2,\"max\":15},{\"attribute\":\"numnum:count:CHECKME\",\"count\":10,\"type\":\"number\",\"values\":[12,13,15,2,3,4,5,6,7,8],\"min\":2,\"max\":15},{\"attribute\":\"numnum:count:COMPARE\",\"count\":10,\"type\":\"number\",\"values\":[12,13,15,2,3,4,5,6,7,8],\"min\":2,\"max\":15},{\"attribute\":\"numnum:count:DIFFASCII\",\"count\":10,\"type\":\"number\",\"values\":[12,13,15,2,3,4,5,6,7,8],\"min\":2,\"max\":15}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":3,\"fields\":{\"ADM0CAP\":\"Number\",\"ADM0NAME\":\"String\",\"ADM0_A3\":\"String\",\"ADM1NAME\":\"String\",\"ADMIN1_COD\":\"Number\",\"CAPALT\":\"Number\",\"CAPIN\":\"String\",\"CHANGED\":\"Number\",\"CHECKME\":\"Number\",\"CITYALT\":\"String\",\"COMPARE\":\"Number\",\"DIFFASCII\":\"Number\",\"DIFFNOTE\":\"String\",\"ELEVATION\":\"Number\",\"FEATURECLA\":\"String\",\"FEATURE_CL\":\"String\",\"FEATURE_CO\":\"String\",\"GEONAMEID\":\"Number\",\"GEONAMESNO\":\"String\",\"GN_ASCII\":\"String\",\"GN_POP\":\"Number\",\"GTOPO30\":\"Number\",\"ISO_A2\":\"String\",\"LABELRANK\":\"Number\",\"LATITUDE\":\"Number\",\"LONGITUDE\":\"Number\",\"LS_MATCH\":\"Number\",\"LS_NAME\":\"String\",\"MAX_AREAKM\":\"Number\",\"MAX_AREAMI\":\"Number\",\"MAX_BBXMAX\":\"Number\",\"MAX_BBXMIN\":\"Number\",\"MAX_BBYMAX\":\"Number\",\"MAX_BBYMIN\":\"Number\",\"MAX_NATSCA\":\"Number\",\"MAX_PERKM\":\"Number\",\"MAX_PERMI\":\"Number\",\"MAX_POP10\":\"Number\",\"MAX_POP20\":\"Number\",\"MAX_POP300\":\"Number\",\"MAX_POP310\":\"Number\",\"MAX_POP50\":\"Number\",\"MEAN_BBXC\":\"Number\",\"MEAN_BBYC\":\"Number\",\"MEGACITY\":\"Number\",\"MEGANAME\":\"String\",\"MIN_AREAKM\":\"Number\",\"MIN_AREAMI\":\"Number\",\"MIN_BBXMAX\":\"Number\",\"MIN_BBXMIN\":\"Number\",\"MIN_BBYMAX\":\"Number\",\"MIN_BBYMIN\":\"Number\",\"MIN_PERKM\":\"Number\",\"MIN_PERMI\":\"Number\",\"NAME\":\"String\",\"NAMEALT\":\"String\",\"NAMEASCII\":\"String\",\"NAMEDIFF\":\"Number\",\"NAMEPAR\":\"String\",\"NATSCALE\":\"Number\",\"POP1950\":\"Number\",\"POP1955\":\"Number\",\"POP1960\":\"Number\",\"POP1965\":\"Number\",\"POP1970\":\"Number\",\"POP1975\":\"Number\",\"POP1980\":\"Number\",\"POP1985\":\"Number\",\"POP1990\":\"Number\",\"POP1995\":\"Number\",\"POP2000\":\"Number\",\"POP2005\":\"Number\",\"POP2010\":\"Number\",\"POP2015\":\"Number\",\"POP2020\":\"Number\",\"POP2025\":\"Number\",\"POP2050\":\"Number\",\"POP_MAX\":\"Number\",\"POP_MIN\":\"Number\",\"POP_OTHER\":\"Number\",\"RANK_MAX\":\"Number\",\"RANK_MIN\":\"Number\",\"SCALERANK\":\"Number\",\"SOV0NAME\":\"String\",\"SOV_A3\":\"String\",\"TIMEZONE\":\"String\",\"UN_ADM0\":\"String\",\"UN_FID\":\"Number\",\"UN_LAT\":\"Number\",\"UN_LONG\":\"Number\",\"WORLDCITY\":\"Number\",\"accum\":\"Number\",\"accum2\":\"Number\",\"numnum:count:ADM0CAP\":\"Number\",\"numnum:count:ADMIN1_COD\":\"Number\",\"numnum:count:CAPALT\":\"Number\",\"numnum:count:CHANGED\":\"Number\",\"numnum:count:CHECKME\":\"Number\",\"numnum:count:COMPARE\":\"Number\",\"numnum:count:DIFFASCII\":\"Number\",\"numnum:count:ELEVATION\":\"Number\",\"numnum:count:GEONAMEID\":\"Number\",\"numnum:count:GN_POP\":\"Number\",\"numnum:count:GTOPO30\":\"Number\",\"numnum:count:LABELRANK\":\"Number\",\"numnum:count:LATITUDE\":\"Number\",\"numnum:count:LONGITUDE\":\"Number\",\"numnum:count:LS_MATCH\":\"Number\",\"numnum:count:MAX_AREAKM\":\"Number\",\"numnum:count:MAX_AREAMI\":\"Number\",\"numnum:count:MAX_BBXMAX\":\"Number\",\"numnum:count:MAX_BBXMIN\":\"Number\",\"numnum:count:MAX_BBYMAX\":\"Number\",\"numnum:count:MAX_BBYMIN\":\"Number\",\"numnum:count:MAX_NATSCA\":\"Number\",\"numnum:count:MAX_PERKM\":\"Number\",\"numnum:count:MAX_PERMI\":\"Number\",\"numnum:count:MAX_POP10\":\"Number\",\"numnum:count:MAX_POP20\":\"Number\",\"numnum:count:MAX_POP300\":\"Number\",\"numnum:count:MAX_POP310\":\"Number\",\"numnum:count:MAX_POP50\":\"Number\",\"numnum:count:MEAN_BBXC\":\"Number\",\"numnum:count:MEAN_BBYC\":\"Number\",\"numnum:count:MEGACITY\":\"Number\",\"numnum:count:MIN_AREAKM\":\"Number\",\"numnum:count:MIN_AREAMI\":\"Number\",\"numnum:count:MIN_BBXMAX\":\"Number\",\"numnum:count:MIN_BBXMIN\":\"Number\",\"numnum:count:MIN_BBYMAX\":\"Number\",\"numnum:count:MIN_BBYMIN\":\"Number\",\"numnum:count:MIN_PERKM\":\"Number\",\"numnum:count:MIN_PERMI\":\"Number\",\"numnum:count:NAMEDIFF\":\"Number\",\"numnum:count:NATSCALE\":\"Number\",\"numnum:count:POP1950\":\"Number\",\"numnum:count:POP1955\":\"Number\",\"numnum:count:POP1960\":\"Number\",\"numnum:count:POP1965\":\"Number\",\"numnum:count:POP1970\":\"Number\",\"numnum:count:POP1975\":\"Number\",\"numnum:count:POP1980\":\"Number\",\"numnum:count:POP1985\":\"Number\",\"numnum:count:POP1990\":\"Number\",\"numnum:count:POP1995\":\"Number\",\"numnum:count:POP2000\":\"Number\",\"numnum:count:POP2005\":\"Number\",\"numnum:count:POP2010\":\"Number\",\"numnum:count:POP2015\":\"Number\",\"numnum:count:POP2020\":\"Number\",\"numnum:count:POP2025\":\"Number\",\"numnum:count:POP2050\":\"Number\",\"numnum:count:POP_MAX\":\"Number\",\"numnum:count:POP_MIN\":\"Number\",\"numnum:count:POP_OTHER\":\"Number\",\"numnum:count:RANK_MAX\":\"Number\",\"numnum:count:RANK_MIN\":\"Number\",\"numnum:count:SCALERANK\":\"Number\",\"numnum:count:UN_FID\":\"Number\",\"numnum:count:UN_LAT\":\"Number\",\"numnum:count:UN_LONG\":\"Number\",\"numnum:count:WORLDCITY\":\"Number\",\"numnum:count:accum2\":\"Number\",\"numnum:max:ADM0CAP\":\"Number\",\"numnum:max:ADMIN1_COD\":\"Number\",\"numnum:max:CAPALT\":\"Number\",\"numnum:max:CHANGED\":\"Number\",\"numnum:max:CHECKME\":\"Number\",\"numnum:max:COMPARE\":\"Number\",\"numnum:max:DIFFASCII\":\"Number\",\"numnum:max:ELEVATION\":\"Number\",\"numnum:max:GEONAMEID\":\"Number\",\"numnum:max:GN_POP\":\"Number\",\"numnum:max:GTOPO30\":\"Number\",\"numnum:max:LABELRANK\":\"Number\",\"numnum:max:LATITUDE\":\"Number\",\"numnum:max:LONGITUDE\":\"Number\",\"numnum:max:LS_MATCH\":\"Number\",\"numnum:max:MAX_AREAKM\":\"Number\",\"numnum:max:MAX_AREAMI\":\"Number\",\"numnum:max:MAX_BBXMAX\":\"Number\",\"numnum:max:MAX_BBXMIN\":\"Number\",\"numnum:max:MAX_BBYMAX\":\"Number\",\"numnum:max:MAX_BBYMIN\":\"Number\",\"numnum:max:MAX_NATSCA\":\"Number\",\"numnum:max:MAX_PERKM\":\"Number\",\"numnum:max:MAX_PERMI\":\"Number\",\"numnum:max:MAX_POP10\":\"Number\",\"numnum:max:MAX_POP20\":\"Number\",\"numnum:max:MAX_POP300\":\"Number\",\"numnum:max:MAX_POP310\":\"Number\",\"numnum:max:MAX_POP50\":\"Number\",\"numnum:max:MEAN_BBXC\":\"Number\",\"numnum:max:MEAN_BBYC\":\"Number\",\"numnum:max:MEGACITY\":\"Number\",\"numnum:max:MIN_AREAKM\":\"Number\",\"numnum:max:MIN_AREAMI\":\"Number\",\"numnum:max:MIN_BBXMAX\":\"Number\",\"numnum:max:MIN_BBXMIN\":\"Number\",\"numnum:max:MIN_BBYMAX\":\"Number\",\"numnum:max:MIN_BBYMIN\":\"Number\",\"numnum:max:MIN_PERKM\":\"Number\",\"numnum:max:MIN_PERMI\":\"Number\",\"numnum:max:NAMEDIFF\":\"Number\",\"numnum:max:NATSCALE\":\"Number\",\"numnum:max:POP1950\":\"Number\",\"numnum:max:POP1955\":\"Number\",\"numnum:max:POP1960\":\"Number\",\"numnum:max:POP1965\":\"Number\",\"numnum:max:POP1970\":\"Number\",\"numnum:max:POP1975\":\"Number\",\"numnum:max:POP1980\":\"Number\",\"numnum:max:POP1985\":\"Number\",\"numnum:max:POP1990\":\"Number\",\"numnum:max:POP1995\":\"Number\",\"numnum:max:POP2000\":\"Number\",\"numnum:max:POP2005\":\"Number\",\"numnum:max:POP2010\":\"Number\",\"numnum:max:POP2015\":\"Number\",\"numnum:max:POP2020\":\"Number\",\"numnum:max:POP2025\":\"Number\",\"numnum:max:POP2050\":\"Number\",\"numnum:max:POP_MAX\":\"Number\",\"numnum:max:POP_MIN\":\"Number\",\"numnum:max:POP_OTHER\":\"Number\",\"numnum:max:RANK_MAX\":\"Number\",\"numnum:max:RANK_MIN\":\"Number\",\"numnum:max:SCALERANK\":\"Number\",\"numnum:max:UN_FID\":\"Number\",\"numnum:max:UN_LAT\":\"Number\",\"numnum:max:UN_LONG\":\"Number\",\"numnum:max:WORLDCITY\":\"Number\",\"numnum:max:accum2\":\"Number\",\"numnum:min:ADM0CAP\":\"Number\",\"numnum:min:ADMIN1_COD\":\"Number\",\"numnum:min:CAPALT\":\"Number\",\"numnum:min:CHANGED\":\"Number\",\"numnum:min:CHECKME\":\"Number\",\"numnum:min:COMPARE\":\"Number\",\"numnum:min:DIFFASCII\":\"Number\",\"numnum:min:ELEVATION\":\"Number\",\"numnum:min:GEONAMEID\":\"Number\",\"numnum:min:GN_POP\":\"Number\",\"numnum:min:GTOPO30\":\"Number\",\"numnum:min:LABELRANK\":\"Number\",\"numnum:min:LATITUDE\":\"Number\",\"numnum:min:LONGITUDE\":\"Number\",\"numnum:min:LS_MATCH\":\"Number\",\"numnum:min:MAX_AREAKM\":\"Number\",\"numnum:min:MAX_AREAMI\":\"Number\",\"numnum:min:MAX_BBXMAX\":\"Number\",\"numnum:min:MAX_BBXMIN\":\"Number\",\"numnum:min:MAX_BBYMAX\":\"Number\",\"numnum:min:MAX_BBYMIN\":\"Number\",\"numnum:min:MAX_NATSCA\":\"Number\",\"numnum:min:MAX_PERKM\":\"Number\",\"numnum:min:MAX_PERMI\":\"Number\",\"numnum:min:MAX_POP10\":\"Number\",\"numnum:min:MAX_POP20\":\"Number\",\"numnum:min:MAX_POP300\":\"Number\",\"numnum:min:MAX_POP310\":\"Number\",\"numnum:min:MAX_POP50\":\"Number\",\"numnum:min:MEAN_BBXC\":\"Number\",\"numnum:min:MEAN_BBYC\":\"Number\",\"numnum:min:MEGACITY\":\"Number\",\"numnum:min:MIN_AREAKM\":\"Number\",\"numnum:min:MIN_AREAMI\":\"Number\",\"numnum:min:MIN_BBXMAX\":\"Number\",\"numnum:min:MIN_BBXMIN\":\"Number\",\"numnum:min:MIN_BBYMAX\":\"Number\",\"numnum:min:MIN_BBYMIN\":\"Number\",\"numnum:min:MIN_PERKM\":\"Number\",\"numnum:min:MIN_PERMI\":\"Number\",\"numnum:min:NAMEDIFF\":\"Number\",\"numnum:min:NATSCALE\":\"Number\",\"numnum:min:POP1950\":\"Number\",\"numnum:min:POP1955\":\"Number\",\"numnum:min:POP1960\":\"Number\",\"numnum:min:POP1965\":\"Number\",\"numnum:min:POP1970\":\"Number\",\"numnum:min:POP1975\":\"Number\",\"numnum:min:POP1980\":\"Number\",\"numnum:min:POP1985\":\"Number\",\"numnum:min:POP1990\":\"Number\",\"numnum:min:POP1995\":\"Number\",\"numnum:min:POP2000\":\"Number\",\"numnum:min:POP2005\":\"Number\",\"numnum:min:POP2010\":\"Number\",\"numnum:min:POP2015\":\"Number\",\"numnum:min:POP2020\":\"Number\",\"numnum:min:POP2025\":\"Number\",\"numnum:min:POP2050\":\"Number\",\"numnum:min:POP_MAX\":\"Number\",\"numnum:min:POP_MIN\":\"Number\",\"numnum:min:POP_OTHER\":\"Number\",\"numnum:min:RANK_MAX\":\"Number\",\"numnum:min:RANK_MIN\":\"Number\",\"numnum:min:SCALERANK\":\"Number\",\"numnum:min:UN_FID\":\"Number\",\"numnum:min:UN_LAT\":\"Number\",\"numnum:min:UN_LONG\":\"Number\",\"numnum:min:WORLDCITY\":\"Number\",\"numnum:min:accum2\":\"Number\",\"numnum:sum:ADM0CAP\":\"Number\",\"numnum:sum:ADMIN1_COD\":\"Number\",\"numnum:sum:CAPALT\":\"Number\",\"numnum:sum:CHANGED\":\"Number\",\"numnum:sum:CHECKME\":\"Number\",\"numnum:sum:COMPARE\":\"Number\",\"numnum:sum:DIFFASCII\":\"Number\",\"numnum:sum:ELEVATION\":\"Number\",\"numnum:sum:GEONAMEID\":\"Number\",\"numnum:sum:GN_POP\":\"Number\",\"numnum:sum:GTOPO30\":\"Number\",\"numnum:sum:LABELRANK\":\"Number\",\"numnum:sum:LATITUDE\":\"Number\",\"numnum:sum:LONGITUDE\":\"Number\",\"numnum:sum:LS_MATCH\":\"Number\",\"numnum:sum:MAX_AREAKM\":\"Number\",\"numnum:sum:MAX_AREAMI\":\"Number\",\"numnum:sum:MAX_BBXMAX\":\"Number\",\"numnum:sum:MAX_BBXMIN\":\"Number\",\"numnum:sum:MAX_BBYMAX\":\"Number\",\"numnum:sum:MAX_BBYMIN\":\"Number\",\"numnum:sum:MAX_NATSCA\":\"Number\",\"numnum:sum:MAX_PERKM\":\"Number\",\"numnum:sum:MAX_PERMI\":\"Number\",\"numnum:sum:MAX_POP10\":\"Number\",\"numnum:sum:MAX_POP20\":\"Number\",\"numnum:sum:MAX_POP300\":\"Number\",\"numnum:sum:MAX_POP310\":\"Number\",\"numnum:sum:MAX_POP50\":\"Number\",\"numnum:sum:MEAN_BBXC\":\"Number\",\"numnum:sum:MEAN_BBYC\":\"Number\",\"numnum:sum:MEGACITY\":\"Number\",\"numnum:sum:MIN_AREAKM\":\"Number\",\"numnum:sum:MIN_AREAMI\":\"Number\",\"numnum:sum:MIN_BBXMAX\":\"Number\",\"numnum:sum:MIN_BBXMIN\":\"Number\",\"numnum:sum:MIN_BBYMAX\":\"Number\",\"numnum:sum:MIN_BBYMIN\":\"Number\",\"numnum:sum:MIN_PERKM\":\"Number\",\"numnum:sum:MIN_PERMI\":\"Number\",\"numnum:sum:NAMEDIFF\":\"Number\",\"numnum:sum:NATSCALE\":\"Number\",\"numnum:sum:POP1950\":\"Number\",\"numnum:sum:POP1955\":\"Number\",\"numnum:sum:POP1960\":\"Number\",\"numnum:sum:POP1965\":\"Number\",\"numnum:sum:POP1970\":\"Number\",\"numnum:sum:POP1975\":\"Number\",\"numnum:sum:POP1980\":\"Number\",\"numnum:sum:POP1985\":\"Number\",\"numnum:sum:POP1990\":\"Number\",\"numnum:sum:POP1995\":\"Number\",\"numnum:sum:POP2000\":\"Number\",\"numnum:sum:POP2005\":\"Number\",\"numnum:sum:POP2010\":\"Number\",\"numnum:sum:POP2015\":\"Number\",\"numnum:sum:POP2020\":\"Number\",\"numnum:sum:POP2025\":\"Number\",\"numnum:sum:POP2050\":\"Number\",\"numnum:sum:POP_MAX\":\"Number\",\"numnum:sum:POP_MIN\":\"Number\",\"numnum:sum:POP_OTHER\":\"Number\",\"numnum:sum:RANK_MAX\":\"Number\",\"numnum:sum:RANK_MIN\":\"Number\",\"numnum:sum:SCALERANK\":\"Number\",\"numnum:sum:UN_FID\":\"Number\",\"numnum:sum:UN_LAT\":\"Number\",\"numnum:sum:UN_LONG\":\"Number\",\"numnum:sum:WORLDCITY\":\"Number\",\"numnum:sum:accum2\":\"Number\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":243,\"geometry\":\"Point\",\"attributeCount\":375,\"attributes\":[{\"attribute\":\"ADM0CAP\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"ADM0NAME\",\"count\":198,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hong Kong S.A.R.\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kiribati\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Liechtenstein\",\"Lithuania\"]},{\"attribute\":\"ADM0_A3\",\"count\":198,\"type\":\"string\",\"values\":[\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HKG\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\"]},{\"attribute\":\"ADM1NAME\",\"count\":204,\"type\":\"string\",\"values\":[\"Abu Dhabi\",\"Ad Dawhah\",\"Addis Ababa\",\"Ahal\",\"Al Kuwayt\",\"Al Qahirah\",\"Alger\",\"Amanat Al Asimah\",\"Amman\",\"Ankara\",\"Anseba\",\"Antananarivo\",\"Aqmola\",\"Ar Riyad\",\"Asunción\",\"Attiki\",\"Auckland\",\"Australian Capital Territory\",\"Baghdad\",\"Baki\",\"Bamako\",\"Banaadir\",\"Bangkok Metropolis\",\"Bangui\",\"Banjul\",\"Beijing\",\"Beirut\",\"Benguet\",\"Berlin\",\"Bern\",\"Bhaktapur\",\"Bioko Norte\",\"Bishkek\",\"Bissau\",\"Bogota\",\"Bratislavský\",\"British Columbia\",\"Brunei and Muara\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Bujumbura Mairie\",\"California\",\"Cayo\",\"Centar\",\"Central\",\"Central Equatoria\",\"Centre\",\"Chisinau\",\"Chuquisaca\",\"Ciudad de Buenos Aires\",\"Ciudad de la Habana\",\"Colombo\",\"Colorado\",\"Comunidad de Madrid\",\"Conakry\",\"Dakar\",\"Damascus\",\"Dar-Es-Salaam\",\"Delhi\",\"Dhaka\",\"Dili\",\"District of Columbia\",\"Distrito Capital\",\"Distrito Federal\",\"Distrito Nacional\",\"Djibouti\",\"Dodoma\",\"Dubay\",\"Dublin\",\"Durrës\",\"East Berbice-Corentyne\",\"Erevan\",\"Estuaire\",\"F.C.T.\",\"Federal Capital Territory\",\"Florida\",\"Francisco Morazán\",\"Gauteng\",\"Genève\",\"Georgia\",\"Grad Beograd\",\"Grad Sofiya\",\"Grad Zagreb\",\"Grand Casablanca\",\"Greater Accra\",\"Guadalcanal\",\"Guatemala\",\"Hadjer-Lamis\",\"Harare\",\"Harju\",\"Hhohho\",\"Hovedstaden\",\"Illinois\",\"Istanbul\",\"Jakarta Raya\",\"Jerusalem\",\"Kabul\",\"Kadiogo\",\"Kampala\"]},{\"attribute\":\"ADMIN1_COD\",\"count\":53,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,32,33,34,36,37,38,39,4,40,42,44,45,49,5,50,52,53,57,6,61,65,68,7,78,8,81,82,9],\"min\":0,\"max\":82},{\"attribute\":\"CAPALT\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"CAPIN\",\"count\":20,\"type\":\"string\",\"values\":[\"Administrative\",\"Capital of both\",\"Claimed as capi\",\"Claimed as inte\",\"De facto capita\",\"De facto, admin\",\"Former capital\",\"Judicial capita\",\"Legislative and\",\"Legislative cap\",\"Offical capital\",\"Official (const\",\"Official and ad\",\"Official and le\",\"Official capita\",\"Official, admin\",\"Official, de fa\",\"Official, legis\",\"UN Headquarters\",\"While Jerulsale\"]},{\"attribute\":\"CHANGED\",\"count\":7,\"type\":\"number\",\"values\":[0,1,20,3,4,40,5],\"min\":0,\"max\":40},{\"attribute\":\"CHECKME\",\"count\":2,\"type\":\"number\",\"values\":[0,5],\"min\":0,\"max\":5},{\"attribute\":\"CITYALT\",\"count\":53,\"type\":\"string\",\"values\":[\"Algiers\",\"Asuncion\",\"Athens\",\"Bangkok\",\"Beirut\",\"Belgrade\",\"Bogota\",\"Bombay\",\"Brasilia\",\"Brussels\",\"Bucharest\",\"Cairo\",\"Calcutta\",\"Casablanca\",\"Copenhagen\",\"Damascus\",\"Denver\",\"Dubai\",\"Guatemala\",\"Hanoi\",\"Havana\",\"Khartoum\",\"Kiev\",\"Kuwait\",\"Lisbon\",\"Lome\",\"Los Angeles\",\"Mexico City\",\"Mogadishu\",\"Moscow\",\"Ndjamena\",\"New York\",\"Osaka\",\"Ottawa\",\"Panama\",\"Phnom Penh\",\"Prague\",\"Rangoon\",\"Riyadh\",\"Rome\",\"San Francisco\",\"San Jose\",\"Sanaa\",\"Sao Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Tripoli\",\"Urumqi\",\"Valparaiso\",\"Vienna\",\"Warsaw\",\"Washington D.C.\",\"Yaounde\"]},{\"attribute\":\"COMPARE\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"DIFFASCII\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"DIFFNOTE\",\"count\":12,\"type\":\"string\",\"values\":[\"Added place.\",\"Changed country.\",\"Changed feature class.\",\"Changed feature class. Changed scale rank.\",\"Changed feature to Admin-0 region capital.\",\"Changed scale rank.\",\"Corrected coordinates.\",\"Location adjusted.\",\"Location adjusted. Changed scale rank.\",\"Name changed.\",\"Name changed. Changed scale rank.\",\"Population from GeoNames. Changed scale rank.\"]},{\"attribute\":\"ELEVATION\",\"count\":19,\"type\":\"number\",\"values\":[0,10,1317,16,171,179,187,2,2320,284,308,320,5,7,70,74,850,89,920],\"min\":0,\"max\":2320},{\"attribute\":\"FEATURECLA\",\"count\":6,\"type\":\"string\",\"values\":[\"Admin-0 capital\",\"Admin-0 capital alt\",\"Admin-0 region capital\",\"Admin-1 capital\",\"Admin-1 region capital\",\"Populated place\"]},{\"attribute\":\"FEATURE_CL\",\"count\":1,\"type\":\"string\",\"values\":[\"P\"]},{\"attribute\":\"FEATURE_CO\",\"count\":4,\"type\":\"string\",\"values\":[\"PPL\",\"PPLA\",\"PPLC\",\"PPLG\"]},{\"attribute\":\"GEONAMEID\",\"count\":242,\"type\":\"number\",\"values\":[-1,1018725,1040652,1070940,108410,112931,1138958,1176615,1185241,1221874,1238992,1252416,1261481,1275004,1275339,1277333,1283240,1298824,146268,1512569,1526273,1528675,1529102,1559804,1581130,160196,160263,1609350,162183,1642911,1645457,1651944,1668341,1690681,1701668,170654,1728930,1730025,1735161,1796236,1815286,1816670,1819729,1820906,1821306,1835848,184745,1850147,1853909,1857910,1871859,1880252,202061,2028462,2075807,2081986,2088122,2108502,2110079,2110394,2113779,2135171,2144168,2147714,2158177,2172517,2193733,2198148,2220957,223817,2240449,2253354,2260535,2267057,2274895,2279755,2293538,2306104,2309527,2314302,2322794,232422,2357048,2365267,2374775,2377450,2389853,2392087,2394819,2399697,2408770,241131,2413876,2422465,2427123,2440485,2460596,2462881,2464470,250441],\"min\":-1,\"max\":6942553},{\"attribute\":\"GEONAMESNO\",\"count\":8,\"type\":\"string\",\"values\":[\"GeoNames match general + researched.\",\"GeoNames match general.\",\"GeoNames match with ascii name + lat + long whole numbers.\",\"GeoNames rough area, rough name, requires further research.\",\"GeoNames rough area, rough name.\",\"GeoNames spatial join with similar names only.\",\"Geonames ascii name + lat.d + long.d matching.\",\"No GeoNames match due to small population, not in GeoNames, or poor NEV placement.\"]},{\"attribute\":\"GN_ASCII\",\"count\":239,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Bengaluru\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Den Haag\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Ejbei Uad el Aabd\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneve\",\"Georgetown\",\"Guatemala City\",\"Ha Noi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\"]},{\"attribute\":\"GN_POP\",\"count\":236,\"type\":\"number\",\"values\":[0,10021295,1019022,1020,1024027,10349312,10356500,10444527,1049498,1086505,1093485,1116513,11174257,11177,1122874,11285654,113364,1137347,113906,1152556,1153615,115826,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1273651,1275857,1284609,12920,1297281,1299369,13076300,13381,1353189,136473,13768,1391433,1399814,1431270,1442271,1453975,1459640,14608512,147074,150000,1508225,1536,1542813,155226,155963,1573544,15938,1619438,162135,1655753,16571,1662,1691468,1696128,1702139,1724,1742124,1767200,180541,1815679,1837969,183981,1877155,188084,1916100,194530,1963264,196731,1974647,1977663,1978028,200452,2026469,20500,208411,2087,2138,2163824,217,217000,2207718,223757,22400,224838,227940,22881,229398,234168,235017,24226],\"min\":0,\"max\":14608512},{\"attribute\":\"GTOPO30\",\"count\":166,\"type\":\"number\",\"values\":[-2,-9999,0,1,10,100,1002,1006,1025,103,104,108,1092,11,110,111,1129,1149,115,1156,12,1206,1247,125,1277,128,1282,1289,1299,13,1304,131,132,133,1398,14,1448,1468,1481,1482,15,151,152,1533,156,1561,1568,159,16,164,169,17,1722,1724,173,174,1775,1808,181,183,19,199,2,20,2004,203,205,21,219,22,2216,224,228,23,235,2360,2363,24,2400,246,259,26,2620,2737,2759,2764,28,284,290,3,30,304,305,306,307,31,339,35,350,373],\"min\":-9999,\"max\":3829},{\"attribute\":\"ISO_A2\",\"count\":196,\"type\":\"string\",\"values\":[\"-99\",\"AD\",\"AE\",\"AF\",\"AG\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BB\",\"BD\",\"BE\",\"BF\",\"BG\",\"BH\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CV\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DM\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FM\",\"FR\",\"GA\",\"GB\",\"GD\",\"GE\",\"GH\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HK\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KI\",\"KM\",\"KN\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\"]},{\"attribute\":\"LABELRANK\",\"count\":8,\"type\":\"number\",\"values\":[0,1,2,3,5,6,7,8],\"min\":0,\"max\":8},{\"attribute\":\"LATITUDE\",\"count\":242,\"type\":\"number\",\"values\":[-0.214988,-1.283347,-1.95359,-11.704158,-12.048013,-13.841545,-13.983295,-15.416644,-15.78334,-16.497974,-17.73335,-17.81779,-18.133016,-18.916637,-19.040971,-20.166639,-21.138512,-22.570006,-22.925023,-23.55868,-24.646313,-25.296403,-25.706921,-25.955277,-26.170044999999999,-26.316651,-26.466667,-29.119994,-29.316674,-3.376087,-33.047764,-33.450014,-33.920011,-34.602502,-34.858042,-35.283029,-36.850013,-37.820031,-4.259186,-4.329724,-4.616632,-41.299974,-6.174418,-6.183306,-6.800013,-8.516652,-8.559388,-8.838286,-9.437994,-9.464708,0.316659,0.333402,0.385389,1.293033,1.338188,10.500999,10.651997,11.55003,11.595014,11.865024,12.052633,12.113097,12.153017,12.370316,12.650015,12.969995,13.102003,13.148279,13.453876,13.516706,13.710002,13.749999,14.001973,14.102045,14.604159,14.621135,14.715832,14.916698,15.301016,15.333339,15.354733,15.588078,16.429991,16.783354,17.118037,17.252034,17.30203,17.966693,17.977077,18.086427,18.470073,18.541025,19.01699,19.442442,19.766557,2.066681,2.91402,21.033327,22.304981,22.494969],\"min\":-41.299974,\"max\":64.150024},{\"attribute\":\"LONGITUDE\",\"count\":243,\"type\":\"number\",\"values\":[-0.116722,-0.216716,-1.524724,-10.804752,-100.329985,-104.984016,-118.179981,-122.459978,-123.121644,-13.200006,-13.234216,-13.680235,-15.598361,-15.97534,-16.591701,-17.47313,-171.738642,-175.220564,-21.950014,-23.516689,-3.683352,-4.040048,-43.225021,-46.62502,-47.916052,-5.275503,-55.167031,-56.171052,-57.641505,-58.167029,-58.397531,-59.616527,-6.248906,-6.836131,-61.000008,-61.212062,-61.387013,-61.517031,-61.741643,-61.850034,-62.717009,-65.259516,-66.917037,-68.149985,-69.900085,-7.616367,-70.667041,-71.621014,-72.336035,-73.980017,-74.083344,-75.700015,-76.767434,-77.009419,-77.050062,-77.350044,-78.500051,-79.420021,-79.533037,-8.000039,-80.224106,-82.364182,-84.084051,-84.399949,-86.268492,-87.217529,-87.750055,-88.767073,-89.203041,-9.144866,-9.652522,-90.526966,-95.339979,-99.130988,1.222757,1.516486,10.179678,10.749979,100.516645,101.699983,101.701947,102.59998,103.855821,104.070019,104.916634,105.850014,106.829438,106.916616,11.516651,114.185009,114.933284,116.388286,12.447808,12.46667,12.483258,12.563486,120.569943,120.982217,121.436505,121.568333],\"min\":-175.220564,\"max\":179.216647},{\"attribute\":\"LS_MATCH\",\"count\":3,\"type\":\"number\",\"values\":[0,1,2],\"min\":0,\"max\":2},{\"attribute\":\"LS_NAME\",\"count\":242,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens2\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubayy\",\"Dublin2\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown1\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\"]},{\"attribute\":\"MAX_AREAKM\",\"count\":212,\"type\":\"number\",\"values\":[0,1,10,1021,103,104,105,106,10661,108,109,112,113,114,1182,118844,12,120,122,126,1275,128,130,131,1327,1332,1345,135,1373,14049,1409,141,143,145,1471,1472,1479,148,15,152,1554,157,16,160,1614,1639,16400,17,1700,1708,171,172,174,1748,177,178,179,18,181,183,184,186559,191,19435,195,197,2080,209,21,211,217,2286,23,2344,2350,236,237,2415,24244,243,244,2447,245,246,249,25,251,2667,27,270,2718,28,2836,2843,2861,2907,3,30,300,302],\"min\":0,\"max\":186559},{\"attribute\":\"MAX_AREAMI\",\"count\":181,\"type\":\"number\",\"values\":[0,1,10,1030,104,1049,1095,1098,11,1105,1122,116,117,1174,12,121,122,123,1235,126,13,130,133,1331,134,135,138,139,14,140,141,143,144,146,15,154,157,1578,16,160,162,165,166,168,169,17,173,174,176,179,180,182,183,1855,188,1892,191,19271,194,195,196,198,2,20,202,20591,206,209,21,210,2109,2148,215,2220,223,224,2241,227,229,23,2408,243,245,248,251,264,266,268,27,270,272,273,274,277,28,29,3,30,305,310],\"min\":0,\"max\":72030},{\"attribute\":\"MAX_BBXMAX\",\"count\":240,\"type\":\"number\",\"values\":[-1.433333,-10.658333,-100.125,-104.708333,-117.008333,-121.733333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.125,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.15,-46.108333,-47.783333,-5.216667,-55.1,-55.8,-57.316667,-57.816667,-58.116667,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.325,-72.033333,-72.716667,-74.008333,-75.45,-76.4,-76.733333,-76.833333,-77.258333,-78.291667,-78.608333,-79.4,-8.958333,-80.025,-82.208333,-83.858333,-83.975,-86.158333,-87.125,-87.141667,-88.75,-88.966667,-90.425,-95,-98.808333,0,0.033333,0.816667,1.483333,1.591667,10.575,101.016667,101.891667,102.816667,104,105,105.375,106.808333,107.041667,109.808333,11.091667,11.6,114.775,114.991667,117.325,12.481009,12.541667,12.658333,12.766667,120.65,121.333333,121.816667,121.9,125.608333],\"min\":-175.166667,\"max\":178.533333},{\"attribute\":\"MAX_BBXMIN\",\"count\":241,\"type\":\"number\",\"values\":[-0.35,-0.546866,-1.616667,-10.816667,-100.5,-105.241667,-118.966667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.499182,-47.056372,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-58.757731,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-66.993057,-68.258333,-7.116667,-7.7,-70.208333,-70.8,-71.658333,-72.441667,-74.091431,-74.266667,-75.983333,-76.866667,-77.153161,-77.308333,-77.4,-78.591667,-79.576315,-79.806554,-8.058333,-80.441667,-82.533333,-84.166667,-84.608333,-86.383333,-87.266667,-88.03629,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,10.440355,100.216667,101.491667,101.575,102.491667,103.383333,103.658333,104.441667,105.616287,106.473854,106.725,11.433333,113.983333,114.825,116.058333,12.316667,12.333333,12.391667,12.450494,12.983333,120.541667,120.925,121.013757,121.325],\"min\":-175.233333,\"max\":178.425},{\"attribute\":\"MAX_BBYMAX\",\"count\":239,\"type\":\"number\",\"values\":[-1.075,-1.083333,-11.475,-11.808333,-13.641667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.544862,-20.108333,-21.125,-22.491667,-22.575,-23.241667,-24.6,-25.1,-25.641667,-25.75,-25.941667,-26.283333,-26.391667,-29.058333,-29.241667,-32.916667,-33.175,-33.6,-33.808333,-34.366667,-34.65,-35.183333,-36.8,-37.566667,-4.15,-4.291667,-4.6,-41.2,-5.875,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.475,10.05,10.541667,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.9,14.025,14.133333,14.158333,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.825,16.416667,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.491667,19.783333,19.908333,2.116667,21.783333,23.183333,23.641667],\"min\":-41.2,\"max\":64.166667},{\"attribute\":\"MAX_BBYMIN\",\"count\":240,\"type\":\"number\",\"values\":[-0.30257,-1.433333,-11.758333,-12.281801,-13.866667,-14.408333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.075,-20.248073,-21.166667,-22.625,-23.033333,-23.842331,-24.7,-25.391667,-25.891667,-25.983333,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.675,-33.075,-33.556142,-34.091667,-34.108333,-34.933333,-35.008333,-35.455764,-36.964958,-38.0105,-4.333333,-4.478678,-4.65,-41.35,-6.208333,-6.383127,-6.933333,-8.583333,-8.933333,-9.441667,-9.508333,0,0.166719,0.283333,0.3,1.25,1.325,10.408333,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.516667,13.591667,13.975,14.033333,14.441667,14.571814,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.875,17.958333,18.033333,18.316667,18.491667,18.891667,19.233333,19.633333,2,2.708333,20.620237,22.056849,22.2],\"min\":-41.35,\"max\":64.05},{\"attribute\":\"MAX_NATSCA\",\"count\":5,\"type\":\"number\",\"values\":[0,100,20,300,50],\"min\":0,\"max\":300},{\"attribute\":\"MAX_PERKM\",\"count\":198,\"type\":\"number\",\"values\":[0,101,102,1021,10224,10267,105,106,1064,107,1086,1087,109,1100,1111,112,1135,116,1161,119,11900,1192,120,1202,121,122,123,12342,13,130296,131,132,1325,133,1354,142,144,149,15,151,153,154,155,16,160,162,164,1658,166,173,174,177,1773,179,18,184,186,1891,1898,190,1901,19314,196,199,202,205,208,210,215,218,219,22,2202,223,2284,234,2388,239,2412,2440,245,2459,249,25,250,256,26,261,266,27,270,278,28,283,286,287,288,2946,296,2982],\"min\":0,\"max\":130296},{\"attribute\":\"MAX_PERMI\",\"count\":189,\"type\":\"number\",\"values\":[0,10,101,102,103,1030,108,11,110,1101,111,114,115,116,1175,1179,118,1181,12001,122,123,126,127,129,130,134,135,136,1369,138,14,1419,145,1484,149,1499,1516,152,1528,155,159,16,162,165,166,168,17,172,173,176,177,179,18,1830,184,1853,187,189,19,192,194,197,198,2,20,206,21,212,213,214,215,22054,222,223,224,227,23,238,239,24,240,243,25,251,255,2581,263,27,274,28,284,285,286,292,295,309,31,3102,311,3113],\"min\":0,\"max\":80962},{\"attribute\":\"MAX_POP10\",\"count\":241,\"type\":\"number\",\"values\":[0,1005257,1014546,10169723,10190861,1042928,1046787,1060587,107260,1072902,1073782,1074311,10811002,108543,1086244,10929146,11029015,1105973,1115771,111975,1122682,1123733,1124323,112927,1154222,1163890,1173386,1193251,1200842,12322855,12495084,12814908,128698,1289566,1291613,1316564,1337078,1369629,13762740,1381747,143230,144164,144390,1444949,1450902,14548962,145850,1472051,14936123,1504217,15220,1548599,1551977,1561335,1577138,1581087,1590116,1590482,159243,160966,16172884,166212,1662508,1712125,1727538,1732952,1742194,1759840,176365,1788020,1831176,1832316,1833439,1835853,1838722,1904377,191152,1946052,194824,1951272,1990917,2010175,2037124,206499,2066046,2084,2129163,2143900,2150614,2155592,218269,2182723,21887,2189383,219674,221736,224300,22534,2324568,23336],\"min\":0,\"max\":16172884},{\"attribute\":\"MAX_POP20\",\"count\":241,\"type\":\"number\",\"values\":[0,1005257,1014546,10259448,1060587,107260,1072902,1073782,1074311,1076471,108543,1086244,10991915,11030955,1105973,11120470,1115771,111975,112927,1130999,11359674,1163890,1173386,11947707,1200842,1230007,128698,1289566,1291613,13143622,1316564,1337078,13414375,1381747,143230,144164,1443206,1444949,145850,1504217,15074060,15091561,15220,1551977,1577138,15779579,1581475,1588839,1590482,159243,160966,1610331,16172884,166212,1662508,1712468,17250245,1727538,1742194,17425624,176365,1788020,1823845,1826034,1829910,1831176,1831921,1833439,1835853,1836390,18577087,1874437,1892286,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2100407,2129163,21394172,2140496,2142805,2143900,2150614,2153391,218269,21887,219674,221736,2240256,224300,2244726,22534,2263899,2297630],\"min\":0,\"max\":24218878},{\"attribute\":\"MAX_POP300\",\"count\":219,\"type\":\"number\",\"values\":[0,10011551,1007529,10140950,1014546,1060587,1073782,1074311,1086244,1105973,1108173,1113489,1115771,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,1337078,1381747,143230,144164,1444949,145850,14870543,1504217,15220,1551977,15645640,1577138,1581475,1590116,1590482,159243,160966,1610331,166212,1662508,16718429,1727538,1740692,1742194,1788020,18203351,1823845,1826034,1831921,1835853,1838722,1838972,1839463,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,2066046,2084,2129163,2141255,2142805,2150614,2174327,21887,219674,21991959,22031364,221736,224300,2244726,22534,2297630,2322955,23336,23366503,23647944,23700631,2419489,2443605,2445384,244896,2498797,251136,254169,2564188,262796,264350,265361,2660614,26631586],\"min\":0,\"max\":87652060},{\"attribute\":\"MAX_POP310\",\"count\":45,\"type\":\"number\",\"values\":[0,10011551,10140950,1108173,11547877,1256924,12611862,1337078,137121250,14903021,15645640,1610331,18203351,18924578,18948089,20149761,21991959,2244726,224908923,2666328,26749011,30696820,31303497,3164008,3503466,3576473,3767139,3910939,40576904,4207001,42594594,44354170,4561697,4983714,5187749,5190755,5451385,5678280,6333154,8450289,8889292,9206246,9212245,968976,9960588],\"min\":0,\"max\":224908923},{\"attribute\":\"MAX_POP50\",\"count\":238,\"type\":\"number\",\"values\":[0,10011551,1007529,10140950,1014546,1060587,107260,1073782,1074311,1076471,108543,1086244,1105973,1108173,1115771,111975,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,13292739,1337078,1371285,1381747,143230,144164,1444949,145850,14868745,1504217,15220,1551977,1577138,1581475,1590116,1590482,159243,160966,1610331,16406759,16510327,1651113,166212,1662508,16718429,1727538,1740692,1742194,176365,1788020,18203351,1822603,1826034,1831921,1833439,1835853,1838722,1838972,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2129163,21387676,2141255,2142805,2150614,2174327,218269,21887,219674,22017580,221736,224300,2244726,22534,2297630,2312867,2322955,2324568,23336,2395309,2419489,24374217,2443605],\"min\":0,\"max\":53845691},{\"attribute\":\"MEAN_BBXC\",\"count\":242,\"type\":\"number\",\"values\":[-0.169651,-0.188893,-1.521746,-10.734923,-100.290632,-104.993967,-118.107478,-122.301354,-122.982768,-13.194643,-13.230082,-13.588647,-15.612698,-15.960139,-16.58125,-17.343779,-171.781117,-175.206798,-21.8825,-23.514907,-3.749399,-4.019846,-43.407551,-46.651489,-47.9714,-5.263708,-55.188737,-56.12273,-57.535385,-58.153788,-58.50845,-59.589731,-6.278983,-6.87491,-60.988377,-61.202183,-61.3775,-61.383365,-61.745833,-61.824059,-62.726389,-65.260317,-66.917919,-68.157765,-69.980546,-7.518511,-7.987419,-70.66127,-71.541251,-72.222424,-73.815782,-74.116517,-75.717666,-76.798044,-77.002668,-77.010199,-77.335571,-78.460061,-79.464213,-79.494919,-80.236416,-82.354344,-84.111698,-84.328739,-86.263402,-87.19911,-87.85874,-88.767803,-89.176042,-9.232769,-90.54419,-95.431928,-99.116655,0,1.190359,1.535473,10.202041,10.756508,100.545047,101.644598,101.716617,102.648054,103.821508,104.039242,104.78577,105.892881,106.883013,106.989399,11.518344,114.035195,114.908824,115.929521,12.419907,12.437175,12.462153,12.561474,120.598765,120.915044,121.053901,121.292375],\"min\":-175.206798,\"max\":178.472885},{\"attribute\":\"MEAN_BBYC\",\"count\":242,\"type\":\"number\",\"values\":[-0.198438,-1.249679,-11.639931,-12.041474,-13.837855,-14.028166,-15.403941,-15.824583,-16.506439,-17.728125,-17.832399,-18.106731,-18.875473,-19.030556,-2.034427,-20.221833,-21.142325,-22.551143,-22.856463,-23.558961,-24.656793,-25.307462,-25.755716,-25.880831,-26.187259,-26.315428,-26.430254,-29.128155,-29.350222,-3.227847,-33.034648,-33.461735,-33.846724,-33.954979,-34.681331,-34.828337,-35.309627,-36.896818,-37.835257,-4.251293,-4.384467,-4.626389,-41.285539,-6.162244,-6.313824,-6.833434,-8.559115,-8.851964,-9.42996,-9.433491,0,0.323809,0.338176,0.395238,1.33869,1.352586,10.451672,10.638816,11.488418,11.5715,11.871032,12.046528,12.120479,12.13336,12.365975,12.626173,12.841733,13.128773,13.145833,13.455208,13.522591,13.738798,13.761017,14.005921,14.083298,14.603015,14.742828,14.823118,14.938056,15.298056,15.327408,15.376031,15.559101,16.421065,16.85864,17.120565,17.248864,17.306019,17.967124,18.018509,18.092569,18.467176,18.56946,19.189154,19.473748,19.720606,2.054239,2.915909,20.873406,22.616509],\"min\":-41.285539,\"max\":64.116125},{\"attribute\":\"MEGACITY\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"MEGANAME\",\"count\":145,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Al Kuwayt (Kuwait City)\",\"Al-Khartum\",\"Al-Qahirah\",\"Amman\",\"Amsterdam\",\"Ankara\",\"Antananarivo\",\"Ar-Riyadh\",\"Asunción\",\"Athínai\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baku\",\"Bamako\",\"Bangalore\",\"Bayrut\",\"Beijing\",\"Beograd\",\"Berlin\",\"Bishkek\",\"Bogotá\",\"Brasília\",\"Brazzaville\",\"Bruxelles-Brussel\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Cape Town\",\"Caracas\",\"Chengdu\",\"Chicago\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de México\",\"Ciudad de Panamá (Panama City)\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Dar es Salaam\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dhaka\",\"Dimashq\",\"Dubayy\",\"Dublin\",\"El Djazaïr\",\"Freetown\",\"Harare\",\"Helsinki\",\"Hong Kong\",\"Houston\",\"Hà Noi\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Johannesburg\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Kigali\",\"Kinshasa\",\"Kolkata\",\"Krung Thep\",\"Kuala Lumpur\",\"Kyiv\",\"Kyoto\",\"København\",\"La Habana\",\"La Paz\",\"Lagos\",\"Lima\",\"Lisboa\",\"Lomé\",\"London\",\"Los Angeles-Long Beach-Santa Ana\",\"Luanda\",\"Lusaka\",\"Madrid\",\"Managua\",\"Manila\",\"Maputo\",\"Melbourne\",\"Miami\",\"Minsk\",\"Monrovia\",\"Monterrey\",\"Montevideo\",\"Moskva\",\"Mumbai\",\"Muqdisho\",\"N'Djaména\",\"Nairobi\",\"Nay Pyi Taw\",\"New York-Newark\",\"Niamey\",\"Osaka-Kobe\"]},{\"attribute\":\"MIN_AREAKM\",\"count\":200,\"type\":\"number\",\"values\":[0,1,10,1010,1035,104,105,1054,106,1078,108,109,1093,1100,1114,112,1121,1124,113,1137,114,12,120,122,1249,126,1265,128,130,1303,131,1338,1345,141,143,1432,1434,145,1479,148,15,1561,16,160,166,1675,169,17,171,172,174,177,178,179,18,181,183,184,187,191,1914,192,195,197,202,209,21,211,2130,217,218,224,226,23,233,236,237,2388,244,2443,245,246,2490,25,2512,257,264,27,270,275,2761,278,28,3,30,305,310,316,317,32],\"min\":0,\"max\":5912},{\"attribute\":\"MIN_AREAMI\",\"count\":166,\"type\":\"number\",\"values\":[0,1,10,102,104,106,1066,107,11,118,12,120,122,125,127,129,13,131,133,134,135,1362,139,14,144,146,1464,147,15,156,158,16,160,165,166,168,169,17,171,172,174,178,179,183,185,188,189,191,194,195,196,198,2,20,202,205,206,207,21,215,220,227,2283,229,23,232,247,257,26,266,268,269,27,270,273,279,28,29,298,3,30,310,313,315,32,330,334,34,342,345,347,35,351,37,375,38,390,4,40,400],\"min\":0,\"max\":2283},{\"attribute\":\"MIN_BBXMAX\",\"count\":240,\"type\":\"number\",\"values\":[-0.098725,-1.433333,-10.658333,-100.125,-104.866667,-117.857183,-122.358333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.2,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.158333,-46.383333,-47.783333,-5.216667,-55.107566,-55.8,-57.543999,-58.116667,-58.175,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.57441,-72.033333,-73.574946,-74.008333,-75.45,-76.733333,-76.752653,-76.85,-77.258333,-78.291667,-79.130272,-79.4,-8.958333,-80.175719,-82.208333,-83.879976,-83.983333,-86.158333,-87.141667,-87.528138,-88.75,-88.966667,-90.425,-95.133333,-99.018165,0,0.307108,1.483333,1.591667,10.497585,100.844293,101.841667,101.891667,102.725,104,104.433333,105,106.2294,106.932506,107.041667,11.091667,11.6,114.3,114.991667,117.208333,12.481009,12.541667,12.658333,12.766667,120.65,121.038985,121.622484,121.9],\"min\":-175.166667,\"max\":178.533333},{\"attribute\":\"MIN_BBXMIN\",\"count\":238,\"type\":\"number\",\"values\":[-0.35,-1.091667,-1.616667,-10.816667,-100.5,-105.241667,-118.991667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.75,-47.058333,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-59.016667,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-67.133333,-68.258333,-7.116667,-7.7,-70.208333,-70.958333,-71.658333,-72.441667,-74.266667,-74.75,-75.983333,-76.866667,-77.166667,-77.4,-77.533333,-78.591667,-79.591667,-8.058333,-80.008333,-80.466667,-82.533333,-84.366667,-84.875,-86.383333,-87.266667,-88.408333,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,1.658333,10.333333,101.358333,102.491667,103.125,103.633333,104.441667,104.975,105.891667,106.725,11.433333,111.441667,112.533333,114.825,119.016667,12.116667,12.333333,12.391667,12.958333,12.983333,120.141667,120.541667,120.741667,125.516667],\"min\":-175.233333,\"max\":178.425},{\"attribute\":\"MIN_BBYMAX\",\"count\":241,\"type\":\"number\",\"values\":[-1.083333,-1.76663,-11.475,-11.808333,-13.691667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.95,-20.108333,-21.125,-22.491667,-22.837896,-23.358333,-24.6,-25.208333,-25.641667,-25.75,-25.991667,-26.283333,-26.391667,-29.058333,-29.241667,-33.016667,-33.175,-33.641667,-33.808333,-34.375,-34.65,-35.183333,-36.825,-37.589905,-4.15,-4.291667,-4.6,-41.2,-6.016667,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.425,10.041667,10.533671,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.872295,13.9,14.025,14.133333,14.702876,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.699422,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.308333,19.640315,19.783333,2.116667,21.319209,22.4,22.575491],\"min\":-41.2,\"max\":64.166667},{\"attribute\":\"MIN_BBYMIN\",\"count\":237,\"type\":\"number\",\"values\":[-0.391667,-1.433333,-11.758333,-12.316667,-13.866667,-14.433333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.991667,-20.333333,-21.166667,-22.625,-23.033333,-23.891667,-24.7,-25.491667,-25.891667,-25.991667,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.841667,-33.075,-33.7,-34.091667,-34.108333,-34.933333,-35.008333,-35.483333,-37.091667,-38.208333,-4.333333,-4.5,-4.65,-41.35,-6.208333,-6.933333,-7.716667,-8.583333,-8.933333,-9.441667,-9.508333,0,0.033333,0.283333,0.3,1.25,1.325,10.325,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.5,13.591667,13.975,14.016667,14.033333,14.433333,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.8,17.958333,18.033333,18.316667,18.491667,18.891667,19.2,19.283333,19.633333,19.866667,2,2.7,21.925],\"min\":-41.35,\"max\":64.05},{\"attribute\":\"MIN_PERKM\",\"count\":192,\"type\":\"number\",\"values\":[0,101,102,105,106,109,112,1148,116,1175,1180,119,120,121,122,123,1257,126,128,13,130,131,132,133,136,1360,1365,137,142,1439,144,149,1494,15,153,155,156,158,16,160,162,164,166,170,173,174,175,177,18,1837,184,186,190,1908,196,199,201,203,205,208,215,217,219,22,2219,222,223,228,2296,233,237,239,240,244,245,249,25,250,251,256,258,26,261,266,27,274,28,280,287,288,293,295,30,304,309,31,310,311,315,318],\"min\":0,\"max\":2296},{\"attribute\":\"MIN_PERMI\",\"count\":181,\"type\":\"number\",\"values\":[0,10,100,101,102,103,106,108,109,11,110,114,1141,115,116,118,1186,122,123,124,125,126,127,129,130,134,135,136,1379,138,14,142,1427,145,147,149,152,155,156,159,16,160,162,165,17,170,174,179,18,182,183,189,19,192,193,196,197,198,2,20,21,211,215,216,217,219,221,222,224,227,23,231,234,238,24,240,243,247,248,25,251,254,255,27,274,276,28,285,286,289,29,290,291,293,295,300,302,309,31,317],\"min\":0,\"max\":1427},{\"attribute\":\"NAME\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"NAMEALT\",\"count\":43,\"type\":\"string\",\"values\":[\"Al Kuwayt|Kuwait City\",\"Al-Khartum\",\"Al-Qahirah\",\"Ar-Riyadh\",\"Asunción\",\"Athinai\",\"Bayrut\",\"Bengaluru\",\"Bogotá\",\"Brasília\",\"Bruxelles-Brussel\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de México\",\"Ciudad de Panamá|Panama City|Panama\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dimashq\",\"El Djazaïr\",\"Hà Noi\",\"Krung Thep\",\"Kyiv\",\"La Habana\",\"Lomé\",\"Los Angeles-Long Beach-Santa Ana\",\"Muqdisho\",\"N'Djaména\",\"Nay Pyi Taw\",\"New York-Newark\",\"Osaka-Kobe\",\"Ottawa-Gatineau\",\"P'yongyang\",\"Phnum Pénh\",\"San Francisco-Oakland\",\"San José\",\"Sana'a'\",\"Sao Paulo|São Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Valparaíso\",\"Washington D.C.\",\"Yangon\",\"Yaoundé\",\"Ürümqi|Wulumqi\"]},{\"attribute\":\"NAMEASCII\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"NAMEDIFF\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"NAMEPAR\",\"count\":12,\"type\":\"string\",\"values\":[\"Athínai\",\"Beograd\",\"Bombay\",\"Bucuresti\",\"Calcutta\",\"Copenhagen\",\"Dubayy\",\"Lisboa\",\"Moskva\",\"Praha\",\"Warszawa\",\"Wien\"]},{\"attribute\":\"NATSCALE\",\"count\":8,\"type\":\"number\",\"values\":[10,110,20,200,30,300,50,600],\"min\":10,\"max\":600},{\"attribute\":\"POP1950\",\"count\":135,\"type\":\"number\",\"values\":[0,1002,1016,1021,104,1041,106,1066,1068,110,111,1116,11275,1212,1216,12338,129,1298,1302,1304,1322,133,1332,1347,1360,137,138,1415,143,145,1452,148,15,150,1544,1618,1682,1690,1700,171,177,18,183,1855,1884,194,20,202,206,208,2086,211,219,22,2334,24,2494,253,258,275,280,281,282,284,2857,287,2883,2950,305,31,319,32,322,328,33,3352,336,341,356,36,364,366,367,392,4046,411,4147,418,4331,4513,46,468,4999,505,5098,513,516,522,5356,556],\"min\":0,\"max\":12338},{\"attribute\":\"POP1955\",\"count\":139,\"type\":\"number\",\"values\":[0,1016,104,106,1091,110,111,112,1227,1248,1249,125,1289,129,1306,131,13219,136,1365,1368,13713,1396,140,1405,1440,1449,148,1539,1553,1563,1574,1618,1712,1714,174,182,184,186,1872,189,1906,192,1972,201,2018,2021,2087,21,2121,2143,220,235,246,25,252,257,265,27,28,281,292,3029,3044,312,314,3299,34,340,342,3432,3592,37,370,374,376,377,3801,387,40,405,409,41,414,425,431,439,451,46,461,4628,468,49,498,501,5055,5120,5154,53,533,556],\"min\":0,\"max\":13713},{\"attribute\":\"POP1960\",\"count\":141,\"type\":\"number\",\"values\":[0,1001,1002,1005,1019,1106,1119,112,1147,1151,1163,1165,1166,119,124,1269,128,1284,1285,130,1316,1361,137,14164,1436,1453,1485,1514,156,1592,162,1634,16679,174,1744,1756,179,181,1811,1814,1823,1851,1873,192,1980,199,2089,2135,2151,218,219,2200,2274,23,230,233,236,2361,2392,2456,247,248,252,2620,263,2679,283,293,311,319,3260,34,344,347,359,3680,382,384,389,393,3970,40,4060,415,419,433,4374,438,440,443,446,448,45,476,4945,5012,508,519,538,551],\"min\":0,\"max\":16679},{\"attribute\":\"POP1965\",\"count\":143,\"type\":\"number\",\"values\":[0,1003,1038,1049,109,111,112,1132,1135,1154,1165,1206,121,1212,1229,1230,1288,132,1323,1327,1373,1377,138,1389,1396,146,148,15177,1525,158,1598,160,1614,1657,169,1709,172,1760,1780,1878,1880,2001,20284,2068,208,2080,2093,2121,2135,222,227,2284,2294,233,235,2361,2390,248,2511,2584,259,268,269,2780,2829,287,2898,29,298,299,303,310,315,319,3191,322,3232,3297,337,339,3452,360,369,394,399,404,436,45,461,472,473,4738,477,478,481,482,4854,488,499,51],\"min\":0,\"max\":20284},{\"attribute\":\"POP1970\",\"count\":138,\"type\":\"number\",\"values\":[0,1029,1035,1045,1054,1070,1076,111,1114,1182,1254,1267,1274,129,1298,1300,1307,1341,1362,1374,1380,1396,1403,1414,1444,147,1505,155,1568,1592,1615,16191,163,164,1655,1693,1741,1779,1817,183,192,1946,206,2060,2070,2075,2141,222,223,23298,2334,238,2383,2485,2488,2529,2535,2647,2667,272,2772,278,298,2980,3110,3135,3206,3290,340,3458,3521,3534,357,359,363,366,371,388,3915,398,408,417,433,451,455,459,460,472,48,494,500,501,507,525,531,5312,532,548,552,553],\"min\":0,\"max\":23298},{\"attribute\":\"POP1975\",\"count\":142,\"type\":\"number\",\"values\":[0,100,1015,1016,10690,107,1120,1122,1126,1150,1172,1198,1206,1339,1348,1386,1403,141,1429,1444,1482,149,1499,1500,1547,15880,1589,1610,1612,1622,167,1702,1709,1793,180,1848,1884,1890,1911,1926,198,2005,2023,2030,2059,2103,2111,2151,2221,226,2263,231,2342,240,2561,257,2590,2620,2626,26615,2738,2770,284,292,2960,3040,3130,3138,329,3300,356,3600,363,3696,3842,385,3890,3943,398,4273,440,443,445,454,456,4813,485,4999,500,528,530,532,572,575,581,582,596,6034,611,624],\"min\":0,\"max\":26615},{\"attribute\":\"POP1980\",\"count\":143,\"type\":\"number\",\"values\":[0,1042,1055,1057,1074,1090,1096,1164,1175,1179,12089,1240,1247,125,128,1293,13010,1318,1356,1376,1384,1416,1454,15601,1565,1574,1609,1621,1623,1625,1654,1656,1701,1818,1842,1865,189,1891,1913,1992,2049,2053,2057,2109,2201,2217,225,2293,2378,238,2415,2424,2449,254,257,2572,2575,2606,2656,274,2765,2777,2812,28549,2987,3008,3056,3122,3145,3227,324,325,3266,337,3390,344,3525,361,371,3721,415,423,4253,4397,4438,446,4609,469,4723,489,5079,525,526,533,538,550,551,580,5955,5984],\"min\":0,\"max\":28549},{\"attribute\":\"POP1985\",\"count\":144,\"type\":\"number\",\"values\":[0,1012,1013,1016,10181,1029,10341,10350,1046,1056,1090,1121,1122,1123,1160,1162,1177,1181,1197,1295,13395,1359,1396,14109,1437,1474,1476,1508,1546,1559,1566,15827,1585,1596,1611,1654,1660,1672,168,1681,1714,1716,1773,1879,1925,1950,1958,2005,2036,204,2069,2195,2213,2273,2406,2410,2446,2518,260,2629,2639,2658,2693,2709,2793,2805,2854,2935,297,30304,3047,3060,3063,3355,3395,3429,3432,344,345,3500,3521,3607,393,402,4087,412,4201,424,427,4355,460,466,4660,471,492,5070,5116,514,5279,5407],\"min\":0,\"max\":30304},{\"attribute\":\"POP1990\",\"count\":144,\"type\":\"number\",\"values\":[0,1035,1038,1042,1047,10513,10544,1062,1088,10883,10890,1091,11035,1120,1134,1161,1162,1174,1175,1191,1197,1212,1224,12308,1293,1306,1316,1380,1392,1405,14776,1500,1522,1528,15312,1546,1559,1568,1607,16086,1628,1680,1691,1733,1760,1791,1863,1898,1908,2005,2026,2040,2096,2100,2102,2108,2155,2184,219,2325,2360,2526,2537,2561,2574,2594,2682,2711,2767,2907,2922,2955,2961,3016,3070,3117,3126,32530,330,3376,3422,343,3448,3450,3632,3807,3969,398,4036,4092,432,4414,4616,473,4740,4764,477,504,529,537],\"min\":0,\"max\":32530},{\"attribute\":\"POP1995\",\"count\":144,\"type\":\"number\",\"values\":[0,10174,10256,1034,10423,1045,1048,11052,1107,11154,11339,1138,1142,1147,1149,1160,1168,1169,1190,11924,1194,1213,1217,1255,1267,1268,1287,1379,14111,1415,1417,1427,1584,15948,1616,1649,1652,1668,1670,1678,16811,1688,16943,1715,1747,1755,1766,1789,1804,1849,1893,1953,2018,2116,2127,2157,2183,2257,2265,2295,2394,2442,2535,2590,2600,2676,2781,2816,2838,2842,289,2951,2961,3035,3095,3122,3213,3242,3257,3353,33587,3403,3424,3425,3471,3478,3651,3839,4197,4431,4447,452,4598,464,4701,4744,4964,509,526,542],\"min\":0,\"max\":33587},{\"attribute\":\"POP2000\",\"count\":141,\"type\":\"number\",\"values\":[0,10016,1005,1007,1019,1023,10285,1032,10534,1063,1072,1073,1077,1079,10803,1084,1096,1097,1100,1110,1111,11165,1127,1128,1160,1172,11814,11847,1192,1201,1206,1219,1233,13058,1306,13243,1357,1361,1365,1379,1390,1487,1499,1507,1561,16086,1653,1666,1674,1700,17099,1730,1733,17846,1787,18022,1806,1854,1877,1949,1959,1963,1998,2029,2044,2116,2135,2158,2187,2233,2493,2591,2606,2640,2672,2715,2732,2746,2752,2754,2864,3032,3043,3117,3179,3236,3266,3384,3385,3433,34450,3542,3553,3567,3752,3849,3919,3949,4017,4078],\"min\":0,\"max\":34450},{\"attribute\":\"POP2005\",\"count\":143,\"type\":\"number\",\"values\":[0,1023,1037,10416,1042,1044,10717,10761,1085,1093,1094,1103,1106,1119,11258,1140,11469,11487,1164,1166,1189,1216,1217,12307,1248,12553,12576,1261,1272,1273,1315,1318,1334,1363,1368,1374,1405,1409,1415,14282,14503,1489,1515,1525,1527,1590,1593,1647,1693,1742,1762,1775,1777,1801,1805,18202,18333,1867,18732,18735,1885,1888,1936,1984,2025,2062,2093,2098,2158,2189,2241,2264,2330,2434,2606,2672,2679,2762,2787,2902,2930,2994,3012,3087,3138,3199,3230,3258,3265,3341,3348,3387,3391,35327,3533,3564,3572,3579,3641,3928],\"min\":0,\"max\":35327},{\"attribute\":\"POP2010\",\"count\":143,\"type\":\"number\",\"values\":[0,10061,1024,1031,1041,10452,1059,1060,1085,1099,1100,1102,11100,11106,1115,11294,1145,1149,1162,11748,1185,11893,1245,12500,1264,12795,1281,1284,1328,1338,13485,1355,1379,1420,1433,1446,1448,1452,1466,14787,1494,14987,1513,1572,1576,1590,1611,1679,1697,1701,1705,1707,1743,1805,1846,1870,18845,1892,18978,19028,19040,1942,1998,2008,2063,2121,2146,2151,2154,2174,2184,2189,2313,2315,2466,2603,2604,2709,2812,2930,2985,3010,3100,3112,3181,3215,3242,3277,3300,3339,3354,3406,3435,3450,35676,3599,3712,3716,3728,3802],\"min\":0,\"max\":35676},{\"attribute\":\"POP2015\",\"count\":144,\"type\":\"number\",\"values\":[0,1022,1024,1027,1029,1044,10495,10530,10572,1087,1096,1098,1102,1104,1106,1108,1127,11337,1139,1160,11662,11741,1182,1185,1212,12171,12503,12773,1285,13089,1321,1324,1374,1379,1409,1421,14796,1500,1504,1505,1516,1519,1520,15577,15789,1597,1621,1645,1651,1663,1664,1669,1692,1708,1724,1744,1787,1793,1804,1846,1877,1931,1941,19441,1947,19485,19582,1994,20072,2030,2159,2209,2219,2247,2298,2305,2322,2332,2340,2345,2385,2396,2651,2675,2748,2856,2890,3098,3256,3267,3319,3333,3346,3357,3363,3423,3453,3544,3574,36094],\"min\":0,\"max\":36094},{\"attribute\":\"POP2020\",\"count\":143,\"type\":\"number\",\"values\":[0,10007,1004,1015,1029,10524,1064,10792,1092,1102,1108,1113,11177,11313,11365,1152,1159,1165,1169,1177,1185,1232,1233,12403,1258,12775,12786,1281,1284,12842,1308,13160,13432,13465,1398,1405,1457,1482,1506,1527,1587,1649,1655,1670,1676,17015,17039,1709,17214,1729,1735,1744,1794,1804,1839,1864,1879,1921,1938,1949,1979,1984,19974,2006,20189,2028,2035,2038,2051,20544,2058,2130,2151,21946,2229,2277,2310,2416,2451,2502,2525,2532,2558,2592,2620,2621,2688,2770,2862,2955,2981,2996,3275,3278,3306,3330,3434,3453,3475,3504],\"min\":0,\"max\":36371},{\"attribute\":\"POP2025\",\"count\":144,\"type\":\"number\",\"values\":[0,10031,1011,1044,10526,1078,1095,1102,1104,1114,1132,11368,1148,1159,11689,11695,1195,1196,1200,1236,1257,1268,1274,1317,13179,1321,1326,13461,13653,13807,13875,13892,1413,14134,1441,14451,1481,1515,1544,1578,1580,1627,1653,1655,1736,1744,1753,1776,1797,1804,1820,18466,18707,1883,1894,1938,19422,1949,2027,2037,20370,20695,2083,2097,2111,21124,2119,2142,2150,2189,2235,2312,2380,2393,24051,2410,2457,2476,2506,2590,2633,2636,2642,2713,2722,2772,2790,2851,2971,3012,3041,3058,3104,3293,3300,3330,3436,3482,3537,3600],\"min\":0,\"max\":36399},{\"attribute\":\"POP2050\",\"count\":143,\"type\":\"number\",\"values\":[0,10036,10526,1089,1096,1102,1112,1114,11368,1159,1163,1193,12102,1220,1236,12363,1315,1320,1332,13413,1343,1359,13672,13768,1406,1411,14545,1461,1472,1475,14808,1520,15561,15796,1604,1655,16762,1690,1715,1736,1737,1744,1759,1804,1883,1902,1907,1938,19412,1949,2028,2047,20560,20628,2077,2083,21009,21428,2150,2172,2173,2178,2187,22015,2222,2247,2316,2444,2496,2529,2549,2560,2632,26385,2661,2715,2772,2791,2855,2856,2885,2892,2911,2956,3038,3086,3118,3198,3214,3305,3326,3330,3346,3358,3382,3436,3605,3619,3630,36400],\"min\":0,\"max\":36400},{\"attribute\":\"POP_MAX\",\"count\":240,\"type\":\"number\",\"values\":[10061000,1024000,1029300,1031000,1041000,10452000,1059000,1060000,107260,1085000,1086244,1099000,1100000,1102000,11100000,11106000,1115000,111975,112927,11294000,113364,1145000,1149000,115826,1162000,11748000,1185000,11893000,1240000,1245000,12500000,1264000,12795000,12797394,1281000,1284000,128698,1328000,1338000,1355000,1379000,1406000,1420000,1433000,1446000,1448000,1450000,1452000,145850,1466000,14787000,1494000,14987000,1513000,15220,155963,1572000,1576000,1590000,1611000,166212,1679000,1697000,1701000,1705000,1707000,1743000,175399,1805000,1846000,1870000,188084,18845000,18978000,19028000,19040000,191152,1942000,1998000,2008000,2063000,206499,208411,2121000,2122300,2151000,2154000,217000,2174000,218269,2184000,21887,2189000,224300,224838,227940,2313000,2313328,23336,234331],\"min\":500,\"max\":35676000},{\"attribute\":\"POP_MIN\",\"count\":243,\"type\":\"number\",\"values\":[10021295,1005257,1019022,103693,10452000,1060000,1060587,10634,10811002,1085000,10929146,1093485,1099000,11177,111975,1122874,1137347,113906,115826,1163890,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1297281,1338000,13381,1353189,136473,13768,1391433,1399814,140000,1431270,1448000,1459640,14608512,1466000,148416,1494000,1508225,1536,1542813,1548599,15500,155963,157474,1577138,159243,15938,160966,162135,1655753,16571,1662508,1679000,1702139,1712125,1724,1731000,1742194,176365,180541,1815679,1835853,1892000,192385,193563,194530,194824,1951272,1963264,1974647,1977663,1978028,198214,1990917,199200,200,200452,2010175,2026469,20500,2087,217000,221736,22256,223757,22534,22881,229398,234032,234168,235017,23658,24226],\"min\":200,\"max\":14608512},{\"attribute\":\"POP_OTHER\",\"count\":218,\"type\":\"number\",\"values\":[0,10018444,1014546,102371,10271457,1037811,1038288,10585385,1060640,1060747,1061388,106219,1072567,1074640,1081361,1088042,1088194,1099610,111975,112572,1149981,11522944,1152904,1154748,11622929,1166878,1174778,12018058,1208361,1240558,12426085,1256715,1271541,1276128,12945252,1301407,130815,1365454,13720557,140594,142265,1434681,1435528,1443084,1480886,1490164,1498020,14995538,1518801,1521278,15220,1557919,158896,160116,1604086,1611692,1636574,164877,1661980,1675117,16803572,1682968,1718895,1742507,176365,1772679,1795582,1805353,18171,1821489,1827367,1831877,1844658,191814,1930305,1951272,2012431,2029349,2044401,2050212,206499,2139587,2153702,2175991,21887,221736,222513,222985,22478,2306851,2325931,23336,2334371,2381280,2385397,2391150,2401318,243794,2456292,2470140],\"min\":0,\"max\":16803572},{\"attribute\":\"RANK_MAX\",\"count\":12,\"type\":\"number\",\"values\":[10,11,12,13,14,2,4,5,6,7,8,9],\"min\":2,\"max\":14},{\"attribute\":\"RANK_MIN\",\"count\":14,\"type\":\"number\",\"values\":[1,10,11,12,13,14,2,3,4,5,6,7,8,9],\"min\":1,\"max\":14},{\"attribute\":\"SCALERANK\",\"count\":8,\"type\":\"number\",\"values\":[0,1,2,3,4,6,7,8],\"min\":0,\"max\":8},{\"attribute\":\"SOV0NAME\",\"count\":197,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"French Republic\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kingdom of Norway\",\"Kingdom of Spain\",\"Kingdom of the Netherlands\",\"Kiribati\",\"Korea, North\",\"Korea, South\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\"]},{\"attribute\":\"SOV_A3\",\"count\":197,\"type\":\"string\",\"values\":[\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\"]},{\"attribute\":\"TIMEZONE\",\"count\":187,\"type\":\"string\",\"values\":[\"Africa/Abidjan\",\"Africa/Accra\",\"Africa/Addis_Ababa\",\"Africa/Algiers\",\"Africa/Asmara\",\"Africa/Bamako\",\"Africa/Bangui\",\"Africa/Banjul\",\"Africa/Bissau\",\"Africa/Blantyre\",\"Africa/Brazzaville\",\"Africa/Bujumbura\",\"Africa/Cairo\",\"Africa/Casablanca\",\"Africa/Conakry\",\"Africa/Dakar\",\"Africa/Dar_es_Salaam\",\"Africa/Djibouti\",\"Africa/Douala\",\"Africa/El_Aaiun\",\"Africa/Freetown\",\"Africa/Gaborone\",\"Africa/Harare\",\"Africa/Johannesburg\",\"Africa/Kampala\",\"Africa/Khartoum\",\"Africa/Kigali\",\"Africa/Kinshasa\",\"Africa/Lagos\",\"Africa/Libreville\",\"Africa/Lome\",\"Africa/Luanda\",\"Africa/Lusaka\",\"Africa/Malabo\",\"Africa/Maputo\",\"Africa/Maseru\",\"Africa/Mbabane\",\"Africa/Mogadishu\",\"Africa/Monrovia\",\"Africa/Nairobi\",\"Africa/Ndjamena\",\"Africa/Niamey\",\"Africa/Nouakchott\",\"Africa/Ouagadougou\",\"Africa/Porto-Novo\",\"Africa/Tunis\",\"Africa/Windhoek\",\"America/Antigua\",\"America/Argentina/Buenos_Aires\",\"America/Belize\",\"America/Bogota\",\"America/Caracas\",\"America/Chicago\",\"America/Dominica\",\"America/Fortaleza\",\"America/Grenada\",\"America/Guatemala\",\"America/Guayaquil\",\"America/Guyana\",\"America/Havana\",\"America/Jamaica\",\"America/La_Paz\",\"America/Lima\",\"America/Los_Angeles\",\"America/Managua\",\"America/Mexico_City\",\"America/Monterrey\",\"America/Montreal\",\"America/Nassau\",\"America/New_York\",\"America/Panama\",\"America/Paramaribo\",\"America/Port-au-Prince\",\"America/Port_of_Spain\",\"America/Sao_Paulo\",\"America/St_Kitts\",\"America/Tegucigalpa\",\"America/Toronto\",\"America/Vancouver\",\"Asia/Amman\",\"Asia/Ashgabat\",\"Asia/Baghdad\",\"Asia/Bahrain\",\"Asia/Baku\",\"Asia/Bangkok\",\"Asia/Beirut\",\"Asia/Bishkek\",\"Asia/Brunei\",\"Asia/Chongqing\",\"Asia/Colombo\",\"Asia/Dhaka\",\"Asia/Dili\",\"Asia/Dubai\",\"Asia/Dushanbe\",\"Asia/Harbin\",\"Asia/Ho_Chi_Minh\",\"Asia/Hong_Kong\",\"Asia/Jakarta\",\"Asia/Jerusalem\",\"Asia/Kabul\"]},{\"attribute\":\"UN_ADM0\",\"count\":116,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Algeria\",\"Angola\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Benin\",\"Bolivia\",\"Brazil\",\"Bulgaria\",\"Burkina Faso\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Chad\",\"Chile\",\"China\",\"China, Hong Kong Special Administrative Region\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Cuba\",\"Czech Republic\",\"Côte d'Ivoire\",\"Democratic People's Republic of Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Ethiopia\",\"Finland\",\"France\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Haiti\",\"Honduras\",\"Hungary\",\"India\",\"Indonesia\",\"Iran (Islamic Republic of)\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Japan\",\"Jordan\",\"Kenya\",\"Kuwait\",\"Kyrgyzstan\",\"Lebanon\",\"Liberia\",\"Libyan Arab Jamahiriya\",\"Madagascar\",\"Malaysia\",\"Mali\",\"Mexico\",\"Mongolia\",\"Morocco\",\"Mozambique\",\"Myanmar\",\"Nepal\",\"Netherlands\",\"New Zealand\",\"Nicaragua\",\"Niger\",\"Nigeria\",\"Norway\",\"Pakistan\",\"Panama\",\"Paraguay\",\"Peru\",\"Philippines\",\"Poland\",\"Portugal\",\"Republic of Korea\",\"Romania\",\"Russian Federation\",\"Rwanda\",\"Saudi Arabia\",\"Senegal\",\"Serbia\",\"Sierra Leone\",\"Singapore\",\"Somalia\",\"South Africa\",\"Spain\",\"Sudan\",\"Sweden\",\"Syrian Arab Republic\"]},{\"attribute\":\"UN_FID\",\"count\":145,\"type\":\"number\",\"values\":[0,111,118,13,14,15,16,161,166,168,17,171,172,173,174,175,176,178,179,18,180,182,183,189,191,192,196,198,2,200,201,206,207,208,209,210,211,219,24,245,253,274,276,280,297,3,300,302,304,308,31,310,313,315,318,320,321,322,324,327,336,339,340,341,342,344,345,348,349,352,359,367,369,372,375,376,377,378,379,381,382,384,385,386,392,397,4,401,408,409,411,414,418,419,422,426,439,440,444,447],\"min\":0,\"max\":589},{\"attribute\":\"UN_LAT\",\"count\":145,\"type\":\"number\",\"values\":[-0.22,-1.26,-1.95,-12.08,-15.42,-15.79,-17.82,-18.9,-22.72,-23.58,-25.3,-25.73,-25.96,-26.17,-33.02,-33.88,-33.97,-34.62,-34.92,-36.9,-37.85,-4.28,-4.32,-6.16,-6.81,-8.81,0,0.32,1.26,10.49,11.56,12.1,12.15,12.48,12.65,12.97,13.51,13.7,13.75,14.09,14.61,14.68,15.36,15.55,16.87,18.48,18.52,19.07,19.42,19.75,2.04,21.03,22.27,22.54,23.04,23.7,24.15,24.65,25.03,25.27,25.67,25.83,27.71,29.38,29.77,3.14,3.86,30.07,30.67,31.24,31.94,32.04,33.33,33.49,33.6,33.71,33.79,33.88,34,34.01,34.34,34.53,34.63,35,35.68,35.77,36.78,37.54,37.79,37.94,38.72,38.89,39.02,39.57,39.9,39.92,4.63,40.2,40.32,40.44],\"min\":-37.85,\"max\":60.19},{\"attribute\":\"UN_LONG\",\"count\":144,\"type\":\"number\",\"values\":[-0.17,-0.2,-1.67,-10.79,-100.31,-105.07,-110.3,-118.25,-122.38,-122.96,-13.23,-13.67,-17.45,-3.69,-4.02,-43.45,-46.62,-47.89,-56.16,-57.62,-58.44,-6.25,-6.83,-66.89,-69.89,-7.63,-7.98,-71.55,-72.34,-73.9,-74.08,-75.65,-76.95,-77.04,-78.52,-79.41,-79.51,-80.27,-80.96,-82.41,-84.07,-84.34,-86.27,-87.2,-87.64,-89.2,-9.12,-90.52,-95.4,-99.12,0,1.2,10.71,100.51,101.7,103.83,104.07,104.91,105.82,106.8,106.91,11.51,114.17,116.38,12.51,12.54,120.96,121.47,121.5,125.75,126.93,13.23,13.32,135.51,135.75,139.8,14.45,145.07,15.24,15.28,15.29,151.02,16.32,17.99,174.76,18.48,19.09,2.12,2.43,20.41,21.01,23.33,23.65,24.97,26.12,27.57,28,28.17,28.21,29],\"min\":-122.96,\"max\":174.76},{\"attribute\":\"WORLDCITY\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"accum\",\"count\":10,\"type\":\"number\",\"values\":[1,10,2,3,4,5,6,7,8,9],\"min\":1,\"max\":10},{\"attribute\":\"accum2\",\"count\":1,\"type\":\"number\",\"values\":[1],\"min\":1,\"max\":1},{\"attribute\":\"numnum:count:ADM0CAP\",\"count\":9,\"type\":\"number\",\"values\":[10,2,3,4,5,6,7,8,9],\"min\":2,\"max\":10},{\"attribute\":\"numnum:count:ADMIN1_COD\",\"count\":9,\"type\":\"number\",\"values\":[10,2,3,4,5,6,7,8,9],\"min\":2,\"max\":10},{\"attribute\":\"numnum:count:CAPALT\",\"count\":9,\"type\":\"number\",\"values\":[10,2,3,4,5,6,7,8,9],\"min\":2,\"max\":10},{\"attribute\":\"numnum:count:CHANGED\",\"count\":9,\"type\":\"number\",\"values\":[10,2,3,4,5,6,7,8,9],\"min\":2,\"max\":10},{\"attribute\":\"numnum:count:CHECKME\",\"count\":9,\"type\":\"number\",\"values\":[10,2,3,4,5,6,7,8,9],\"min\":2,\"max\":10},{\"attribute\":\"numnum:count:COMPARE\",\"count\":9,\"type\":\"number\",\"values\":[10,2,3,4,5,6,7,8,9],\"min\":2,\"max\":10},{\"attribute\":\"numnum:count:DIFFASCII\",\"count\":9,\"type\":\"number\",\"values\":[10,2,3,4,5,6,7,8,9],\"min\":2,\"max\":10}]}]}}", "maxzoom": "3", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":201},{\"dropped_by_rate\":134},{},{}]", +"strategies": "[{\"dropped_by_rate\":200},{\"dropped_by_rate\":140},{\"dropped_by_rate\":13},{}]", "tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":2.5,\"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": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 1500, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 5, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 49.273417, "numnum:min:LATITUDE": 33.989978, "numnum:sum:LATITUDE": 160.742591, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": -104.984016, "numnum:min:LONGITUDE": -123.121644, "numnum:sum:LONGITUDE": -468.74561900000006, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 12500000, "numnum:min:POP_MAX": 2313000, "numnum:sum:POP_MAX": 20576328, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 3694820, "numnum:min:POP_MIN": 603502, "numnum:sum:POP_MIN": 6578993, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 1521278, "numnum:min:POP_OTHER": 27400, "numnum:sum:POP_OTHER": 2172945, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 50, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 46, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 6173331, "numnum:min:GEONAMEID": 5368361, "numnum:sum:GEONAMEID": 22353035, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 4976870, "numnum:min:MAX_POP10": 988636, "numnum:sum:MAX_POP10": 9104221, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 6558538, "numnum:min:MAX_POP20": 1130999, "numnum:sum:MAX_POP20": 11378783, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 14868745, "numnum:min:MAX_POP50": 1371285, "numnum:sum:MAX_POP50": 20004473, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 14870543, "numnum:min:MAX_POP300": 1590116, "numnum:sum:MAX_POP300": 23196683, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 14903021, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 19464718, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 800, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 1338, "numnum:min:MIN_AREAKM": 218, "numnum:sum:MIN_AREAKM": 3171, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 5803, "numnum:min:MAX_AREAKM": 708, "numnum:sum:MAX_AREAKM": 9604, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 517, "numnum:min:MIN_AREAMI": 84, "numnum:sum:MIN_AREAMI": 1225, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 2241, "numnum:min:MAX_AREAMI": 273, "numnum:sum:MAX_AREAMI": 3708, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 534, "numnum:min:MIN_PERKM": 126, "numnum:sum:MIN_PERKM": 1429, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 2202, "numnum:min:MAX_PERKM": 405, "numnum:sum:MAX_PERKM": 3968, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 332, "numnum:min:MIN_PERMI": 78, "numnum:sum:MIN_PERMI": 889, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 1369, "numnum:min:MAX_PERMI": 251, "numnum:sum:MAX_PERMI": 2465, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": -105.241667, "numnum:min:MIN_BBXMIN": -123.283333, "numnum:sum:MIN_BBXMIN": -470.033334, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": -105.241667, "numnum:min:MAX_BBXMIN": -123.283333, "numnum:sum:MAX_BBXMIN": -470.008334, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": -104.866667, "numnum:min:MIN_BBXMAX": -122.708333, "numnum:sum:MIN_BBXMAX": -467.790516, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": -104.708333, "numnum:min:MAX_BBXMAX": -122.708333, "numnum:sum:MAX_BBXMAX": -466.158332, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 49.1, "numnum:min:MIN_BBYMIN": 33.391667, "numnum:sum:MIN_BBYMIN": 159.183334, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 49.1, "numnum:min:MAX_BBYMIN": 33.862631, "numnum:sum:MAX_BBYMIN": 160.037631, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 49.383333, "numnum:min:MIN_BBYMAX": 34.241667, "numnum:sum:MIN_BBYMAX": 161.4, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 49.383333, "numnum:min:MAX_BBYMAX": 34.333333, "numnum:sum:MAX_BBYMAX": 161.783333, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": -104.993967, "numnum:min:MEAN_BBXC": -122.982768, "numnum:sum:MEAN_BBXC": -468.385567, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 49.228888, "numnum:min:MEAN_BBYC": 33.980609, "numnum:sum:MEAN_BBYC": 160.561635, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 3694820, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 6264861, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 89, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 105, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 115, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 238, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 570, "numnum:min:UN_FID": 15, "numnum:sum:UN_FID": 1669, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 49.27, "numnum:min:UN_LAT": 34, "numnum:sum:UN_LAT": 160.63, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": -105.07, "numnum:min:UN_LONG": -122.96, "numnum:sum:UN_LONG": -468.65999999999999, "numnum:count:POP1950": 4, "numnum:max:POP1950": 4046, "numnum:min:POP1950": 505, "numnum:sum:POP1950": 6962, "numnum:count:POP1955": 4, "numnum:max:POP1955": 5154, "numnum:min:POP1955": 588, "numnum:sum:POP1955": 8404, "numnum:count:POP1960": 4, "numnum:max:POP1960": 6530, "numnum:min:POP1960": 620, "numnum:sum:POP1960": 10159, "numnum:count:POP1965": 4, "numnum:max:POP1965": 7408, "numnum:min:POP1965": 836, "numnum:sum:POP1965": 11528, "numnum:count:POP1970": 4, "numnum:max:POP1970": 8378, "numnum:min:POP1970": 1045, "numnum:sum:POP1970": 13006, "numnum:count:POP1975": 4, "numnum:max:POP1975": 8926, "numnum:min:POP1975": 1150, "numnum:sum:POP1975": 13864, "numnum:count:POP1980": 4, "numnum:max:POP1980": 9512, "numnum:min:POP1980": 1247, "numnum:sum:POP1980": 14771, "numnum:count:POP1985": 4, "numnum:max:POP1985": 10181, "numnum:min:POP1985": 1359, "numnum:sum:POP1985": 15782, "numnum:count:POP1990": 4, "numnum:max:POP1990": 10883, "numnum:min:POP1990": 1528, "numnum:sum:POP1990": 16931, "numnum:count:POP1995": 4, "numnum:max:POP1995": 11339, "numnum:min:POP1995": 1747, "numnum:sum:POP1995": 17970, "numnum:count:POP2000": 4, "numnum:max:POP2000": 11814, "numnum:min:POP2000": 1959, "numnum:sum:POP2000": 19007, "numnum:count:POP2005": 4, "numnum:max:POP2005": 12307, "numnum:min:POP2005": 2093, "numnum:sum:POP2005": 20028, "numnum:count:POP2010": 4, "numnum:max:POP2010": 12500, "numnum:min:POP2010": 2146, "numnum:sum:POP2010": 20409, "numnum:count:POP2015": 4, "numnum:max:POP2015": 12773, "numnum:min:POP2015": 2219, "numnum:sum:POP2015": 20932, "numnum:count:POP2020": 4, "numnum:max:POP2020": 13160, "numnum:min:POP2020": 2310, "numnum:sum:POP2020": 21656, "numnum:count:POP2025": 4, "numnum:max:POP2025": 13461, "numnum:min:POP2025": 2380, "numnum:sum:POP2025": 22234, "numnum:count:POP2050": 4, "numnum:max:POP2050": 13672, "numnum:min:POP2050": 2444, "numnum:sum:POP2050": 22675, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 2100, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 6, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 49.273417, "numnum:min:LATITUDE": 25.669995, "numnum:sum:LATITUDE": 216.23256, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": -95.339979, "numnum:min:LONGITUDE": -123.121644, "numnum:sum:LONGITUDE": -664.415583, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 20, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 12500000, "numnum:min:POP_MAX": 2313000, "numnum:sum:POP_MAX": 28747328, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 3694820, "numnum:min:POP_MIN": 603502, "numnum:sum:POP_MIN": 11349441, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 3607616, "numnum:min:POP_OTHER": 27400, "numnum:sum:POP_OTHER": 9006197, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 74, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 70, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 6173331, "numnum:min:GEONAMEID": 3995465, "numnum:sum:GEONAMEID": 31047566, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 4976870, "numnum:min:MAX_POP10": 988636, "numnum:sum:MAX_POP10": 16047979, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 6558538, "numnum:min:MAX_POP20": 1130999, "numnum:sum:MAX_POP20": 18962045, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 14868745, "numnum:min:MAX_POP50": 1371285, "numnum:sum:MAX_POP50": 27652998, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 14870543, "numnum:min:MAX_POP300": 1590116, "numnum:sum:MAX_POP300": 30845208, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 14903021, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 19464718, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 1000, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 2388, "numnum:min:MIN_AREAKM": 218, "numnum:sum:MIN_AREAKM": 6153, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 5803, "numnum:min:MAX_AREAKM": 594, "numnum:sum:MAX_AREAKM": 13239, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 922, "numnum:min:MIN_AREAMI": 84, "numnum:sum:MIN_AREAMI": 2376, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 2241, "numnum:min:MAX_AREAMI": 229, "numnum:sum:MAX_AREAMI": 5111, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 1257, "numnum:min:MIN_PERKM": 126, "numnum:sum:MIN_PERKM": 2894, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 2202, "numnum:min:MAX_PERKM": 208, "numnum:sum:MAX_PERKM": 5949, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 781, "numnum:min:MIN_PERMI": 78, "numnum:sum:MIN_PERMI": 1800, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 1369, "numnum:min:MAX_PERMI": 130, "numnum:sum:MAX_PERMI": 3696, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": -95.841667, "numnum:min:MIN_BBXMIN": -123.283333, "numnum:sum:MIN_BBXMIN": -666.375001, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": -95.841667, "numnum:min:MAX_BBXMIN": -123.283333, "numnum:sum:MAX_BBXMIN": -666.350001, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": -95.133333, "numnum:min:MIN_BBXMAX": -122.708333, "numnum:sum:MIN_BBXMAX": -663.048849, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": -95, "numnum:min:MAX_BBXMAX": -122.708333, "numnum:sum:MAX_BBXMAX": -661.283332, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 49.1, "numnum:min:MIN_BBYMIN": 25.575, "numnum:sum:MIN_BBYMIN": 214.23333399999999, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 49.1, "numnum:min:MAX_BBYMIN": 25.575, "numnum:sum:MAX_BBYMIN": 215.104298, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 49.383333, "numnum:min:MIN_BBYMAX": 25.85, "numnum:sum:MIN_BBYMAX": 217.508915, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 49.383333, "numnum:min:MAX_BBYMAX": 25.85, "numnum:sum:MAX_BBYMAX": 217.9, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": -95.431928, "numnum:min:MEAN_BBXC": -122.982768, "numnum:sum:MEAN_BBXC": -664.108127, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 49.228888, "numnum:min:MEAN_BBYC": 25.71613, "numnum:sum:MEAN_BBYC": 216.08824199999999, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 19, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 21, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 3694820, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 7387735, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 89, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 105, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 563, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 801, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 570, "numnum:min:UN_FID": 15, "numnum:sum:UN_FID": 2570, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 49.27, "numnum:min:UN_LAT": 25.67, "numnum:sum:UN_LAT": 216.07000000000003, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": -95.4, "numnum:min:UN_LONG": -122.96, "numnum:sum:UN_LONG": -664.37, "numnum:count:POP1950": 6, "numnum:max:POP1950": 4046, "numnum:min:POP1950": 356, "numnum:sum:POP1950": 8027, "numnum:count:POP1955": 6, "numnum:max:POP1955": 5154, "numnum:min:POP1955": 498, "numnum:sum:POP1955": 9806, "numnum:count:POP1960": 6, "numnum:max:POP1960": 6530, "numnum:min:POP1960": 620, "numnum:sum:POP1960": 12008, "numnum:count:POP1965": 6, "numnum:max:POP1965": 7408, "numnum:min:POP1965": 836, "numnum:sum:POP1965": 13867, "numnum:count:POP1970": 6, "numnum:max:POP1970": 8378, "numnum:min:POP1970": 1045, "numnum:sum:POP1970": 15966, "numnum:count:POP1975": 6, "numnum:max:POP1975": 8926, "numnum:min:POP1975": 1150, "numnum:sum:POP1975": 17483, "numnum:count:POP1980": 6, "numnum:max:POP1980": 9512, "numnum:min:POP1980": 1247, "numnum:sum:POP1980": 19187, "numnum:count:POP1985": 6, "numnum:max:POP1985": 10181, "numnum:min:POP1985": 1359, "numnum:sum:POP1985": 20713, "numnum:count:POP1990": 6, "numnum:max:POP1990": 10883, "numnum:min:POP1990": 1528, "numnum:sum:POP1990": 22447, "numnum:count:POP1995": 6, "numnum:max:POP1995": 11339, "numnum:min:POP1995": 1747, "numnum:sum:POP1995": 24284, "numnum:count:POP2000": 6, "numnum:max:POP2000": 11814, "numnum:min:POP2000": 1959, "numnum:sum:POP2000": 26122, "numnum:count:POP2005": 6, "numnum:max:POP2005": 12307, "numnum:min:POP2005": 2093, "numnum:sum:POP2005": 27931, "numnum:count:POP2010": 6, "numnum:max:POP2010": 12500, "numnum:min:POP2010": 2146, "numnum:sum:POP2010": 28580, "numnum:count:POP2015": 6, "numnum:max:POP2015": 12773, "numnum:min:POP2015": 2219, "numnum:sum:POP2015": 29442, "numnum:count:POP2020": 6, "numnum:max:POP2020": 13160, "numnum:min:POP2020": 2310, "numnum:sum:POP2020": 30586, "numnum:count:POP2025": 6, "numnum:max:POP2025": 13461, "numnum:min:POP2025": 2380, "numnum:sum:POP2025": 31468, "numnum:count:POP2050": 6, "numnum:max:POP2050": 13672, "numnum:min:POP2050": 2444, "numnum:sum:POP2050": 32137, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo León", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 2, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 1200, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 5, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 29.819974, "numnum:min:LATITUDE": 19.442442, "numnum:sum:LATITUDE": 74.932411, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -95.339979, "numnum:min:LONGITUDE": -100.329985, "numnum:sum:LONGITUDE": -294.800952, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 19028000, "numnum:min:POP_MAX": 3712000, "numnum:sum:POP_MAX": 27199000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 10811002, "numnum:min:POP_MIN": 1122874, "numnum:sum:POP_MIN": 15581450, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 10018444, "numnum:min:POP_OTHER": 3225636, "numnum:sum:POP_OTHER": 16851696, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 38, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 38, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 4699066, "numnum:min:GEONAMEID": 3530597, "numnum:sum:GEONAMEID": 12225128, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 10811002, "numnum:min:MAX_POP10": 3296184, "numnum:sum:MAX_POP10": 17754760, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 17250245, "numnum:min:MAX_POP20": 3296184, "numnum:sum:MAX_POP20": 24833507, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 18948089, "numnum:min:MAX_POP50": 3296184, "numnum:sum:MAX_POP50": 26596614, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 18948089, "numnum:min:MAX_POP300": 3296184, "numnum:sum:MAX_POP300": 26596614, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 18948089, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 18948089, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 2388, "numnum:min:MIN_AREAKM": 594, "numnum:sum:MIN_AREAKM": 3877, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 3041, "numnum:min:MAX_AREAKM": 594, "numnum:sum:MAX_AREAKM": 5715, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 922, "numnum:min:MIN_AREAMI": 229, "numnum:sum:MIN_AREAMI": 1496, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 1174, "numnum:min:MAX_AREAMI": 229, "numnum:sum:MAX_AREAMI": 2206, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 1257, "numnum:min:MIN_PERKM": 208, "numnum:sum:MIN_PERKM": 1721, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 1773, "numnum:min:MAX_PERKM": 208, "numnum:sum:MAX_PERKM": 2870, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 781, "numnum:min:MIN_PERMI": 130, "numnum:sum:MIN_PERMI": 1070, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 1101, "numnum:min:MAX_PERMI": 130, "numnum:sum:MAX_PERMI": 1783, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -95.841667, "numnum:min:MIN_BBXMIN": -100.5, "numnum:sum:MIN_BBXMIN": -295.70833400000006, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -95.841667, "numnum:min:MAX_BBXMIN": -100.5, "numnum:sum:MAX_BBXMIN": -295.70833400000006, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -95.133333, "numnum:min:MIN_BBXMAX": -100.125, "numnum:sum:MIN_BBXMAX": -294.276498, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -95, "numnum:min:MAX_BBXMAX": -100.125, "numnum:sum:MAX_BBXMAX": -293.933333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 29.475, "numnum:min:MIN_BBYMIN": 19.2, "numnum:sum:MIN_BBYMIN": 74.25, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 29.491667, "numnum:min:MAX_BBYMIN": 19.233333, "numnum:sum:MAX_BBYMIN": 74.3, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 30.258915, "numnum:min:MIN_BBYMAX": 19.640315, "numnum:sum:MIN_BBYMAX": 75.74923, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 30.266667, "numnum:min:MAX_BBYMAX": 19.908333, "numnum:sum:MAX_BBYMAX": 76.025, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -95.431928, "numnum:min:MEAN_BBXC": -100.290632, "numnum:sum:MEAN_BBXC": -294.83921499999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 29.810477, "numnum:min:MEAN_BBYC": 19.473748, "numnum:sum:MEAN_BBYC": 75.000355, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 19, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 28, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 11285654, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 12408528, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 2216, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 2779, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 542, "numnum:min:UN_FID": 352, "numnum:sum:UN_FID": 1253, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 29.77, "numnum:min:UN_LAT": 19.42, "numnum:sum:UN_LAT": 74.86, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -95.4, "numnum:min:UN_LONG": -100.31, "numnum:sum:UN_LONG": -294.83000000000006, "numnum:count:POP1950": 3, "numnum:max:POP1950": 2883, "numnum:min:POP1950": 356, "numnum:sum:POP1950": 3948, "numnum:count:POP1955": 3, "numnum:max:POP1955": 3801, "numnum:min:POP1955": 498, "numnum:sum:POP1955": 5203, "numnum:count:POP1960": 3, "numnum:max:POP1960": 5012, "numnum:min:POP1960": 698, "numnum:sum:POP1960": 6861, "numnum:count:POP1965": 3, "numnum:max:POP1965": 6653, "numnum:min:POP1965": 943, "numnum:sum:POP1965": 8992, "numnum:count:POP1970": 3, "numnum:max:POP1970": 8769, "numnum:min:POP1970": 1267, "numnum:sum:POP1970": 11729, "numnum:count:POP1975": 3, "numnum:max:POP1975": 10690, "numnum:min:POP1975": 1589, "numnum:sum:POP1975": 14309, "numnum:count:POP1980": 3, "numnum:max:POP1980": 13010, "numnum:min:POP1980": 1992, "numnum:sum:POP1980": 17426, "numnum:count:POP1985": 3, "numnum:max:POP1985": 14109, "numnum:min:POP1985": 2273, "numnum:sum:POP1985": 19040, "numnum:count:POP1990": 3, "numnum:max:POP1990": 15312, "numnum:min:POP1990": 2594, "numnum:sum:POP1990": 20828, "numnum:count:POP1995": 3, "numnum:max:POP1995": 16811, "numnum:min:POP1995": 2961, "numnum:sum:POP1995": 23125, "numnum:count:POP2000": 3, "numnum:max:POP2000": 18022, "numnum:min:POP2000": 3266, "numnum:sum:POP2000": 25137, "numnum:count:POP2005": 3, "numnum:max:POP2005": 18735, "numnum:min:POP2005": 3579, "numnum:sum:POP2005": 26638, "numnum:count:POP2010": 3, "numnum:max:POP2010": 19028, "numnum:min:POP2010": 3712, "numnum:sum:POP2010": 27199, "numnum:count:POP2015": 3, "numnum:max:POP2015": 19485, "numnum:min:POP2015": 3901, "numnum:sum:POP2015": 27995, "numnum:count:POP2020": 3, "numnum:max:POP2020": 20189, "numnum:min:POP2020": 4140, "numnum:sum:POP2020": 29119, "numnum:count:POP2025": 3, "numnum:max:POP2025": 20695, "numnum:min:POP2025": 4298, "numnum:sum:POP2025": 29929, "numnum:count:POP2050": 3, "numnum:max:POP2050": 21009, "numnum:min:POP2050": 4413, "numnum:sum:POP2050": 30471, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -100.283203, 25.641526 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de México", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de México", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City", "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1720, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 4, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 6, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 45.416697, "numnum:min:LATITUDE": 14.621135, "numnum:sum:LATITUDE": 198.840259, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": -75.700015, "numnum:min:LONGITUDE": -99.130988, "numnum:sum:LONGITUDE": -516.927994, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 19028000, "numnum:min:POP_MAX": 1024000, "numnum:sum:POP_MAX": 39906000, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 10811002, "numnum:min:POP_MIN": 422908, "numnum:sum:POP_MIN": 19817350, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 10018444, "numnum:min:POP_OTHER": 872781, "numnum:sum:POP_OTHER": 23540801, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 76, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 70, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 6167865, "numnum:min:GEONAMEID": 3530597, "numnum:sum:GEONAMEID": 28459248, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 10811002, "numnum:min:MAX_POP10": 885780, "numnum:sum:MAX_POP10": 24728070, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 17250245, "numnum:min:MAX_POP20": 885780, "numnum:sum:MAX_POP20": 33897660, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 18948089, "numnum:min:MAX_POP50": 885780, "numnum:sum:MAX_POP50": 39771712, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 18948089, "numnum:min:MAX_POP300": 885780, "numnum:sum:MAX_POP300": 39771712, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 18948089, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 36500072, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 1400, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 2761, "numnum:min:MIN_AREAKM": 410, "numnum:sum:MIN_AREAKM": 7347, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 4804, "numnum:min:MAX_AREAKM": 419, "numnum:sum:MAX_AREAKM": 14179, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 1066, "numnum:min:MIN_AREAMI": 158, "numnum:sum:MIN_AREAMI": 2836, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 1855, "numnum:min:MAX_AREAMI": 162, "numnum:sum:MAX_AREAMI": 5476, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 1494, "numnum:min:MIN_PERKM": 256, "numnum:sum:MIN_PERKM": 3401, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 2946, "numnum:min:MAX_PERKM": 288, "numnum:sum:MAX_PERKM": 8185, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 929, "numnum:min:MIN_PERMI": 159, "numnum:sum:MIN_PERMI": 2114, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 1830, "numnum:min:MAX_PERMI": 179, "numnum:sum:MAX_PERMI": 5084, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": -75.983333, "numnum:min:MIN_BBXMIN": -99.366667, "numnum:sum:MIN_BBXMIN": -519.2999990000001, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": -75.983333, "numnum:min:MAX_BBXMIN": -99.366667, "numnum:sum:MAX_BBXMIN": -518.45951, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": -75.45, "numnum:min:MIN_BBXMAX": -99.018165, "numnum:sum:MIN_BBXMAX": -515.4315509999999, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": -75.45, "numnum:min:MAX_BBXMAX": -98.808333, "numnum:sum:MAX_BBXMAX": -514.274999, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 45.225, "numnum:min:MIN_BBYMIN": 14.433333, "numnum:sum:MIN_BBYMIN": 196.775, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 45.225, "numnum:min:MAX_BBYMIN": 14.441667, "numnum:sum:MAX_BBYMIN": 197.21666599999998, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 45.55, "numnum:min:MIN_BBYMAX": 14.783333, "numnum:sum:MIN_BBYMAX": 200.267497, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 45.55, "numnum:min:MAX_BBYMAX": 14.783333, "numnum:sum:MAX_BBYMAX": 201.13333300000003, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": -75.717666, "numnum:min:MEAN_BBXC": -99.116655, "numnum:sum:MEAN_BBXC": -517.030203, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 45.405246, "numnum:min:MEAN_BBYC": 14.603015, "numnum:sum:MEAN_BBYC": 198.87921699999999, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 9, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 32, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 11285654, "numnum:min:GN_POP": 422908, "numnum:sum:GN_POP": 20969772, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 320, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 499, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 2216, "numnum:min:GTOPO30": 61, "numnum:sum:GTOPO30": 4469, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 531, "numnum:min:UN_FID": 13, "numnum:sum:UN_FID": 1640, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 45.37, "numnum:min:UN_LAT": 14.61, "numnum:sum:UN_LAT": 198.73, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": -75.65, "numnum:min:UN_LONG": -99.12, "numnum:sum:UN_LONG": -516.68, "numnum:count:POP1950": 6, "numnum:max:POP1950": 4999, "numnum:min:POP1950": 282, "numnum:sum:POP1950": 10032, "numnum:count:POP1955": 6, "numnum:max:POP1955": 5565, "numnum:min:POP1955": 342, "numnum:sum:POP1955": 12074, "numnum:count:POP1960": 6, "numnum:max:POP1960": 6183, "numnum:min:POP1960": 415, "numnum:sum:POP1960": 14606, "numnum:count:POP1965": 6, "numnum:max:POP1965": 6653, "numnum:min:POP1965": 482, "numnum:sum:POP1965": 17418, "numnum:count:POP1970": 6, "numnum:max:POP1970": 8769, "numnum:min:POP1970": 581, "numnum:sum:POP1970": 20833, "numnum:count:POP1975": 6, "numnum:max:POP1975": 10690, "numnum:min:POP1975": 676, "numnum:sum:POP1975": 23397, "numnum:count:POP1980": 6, "numnum:max:POP1980": 13010, "numnum:min:POP1980": 729, "numnum:sum:POP1980": 26337, "numnum:count:POP1985": 6, "numnum:max:POP1985": 14109, "numnum:min:POP1985": 776, "numnum:sum:POP1985": 28207, "numnum:count:POP1990": 6, "numnum:max:POP1990": 15312, "numnum:min:POP1990": 803, "numnum:sum:POP1990": 30398, "numnum:count:POP1995": 6, "numnum:max:POP1995": 16811, "numnum:min:POP1995": 839, "numnum:sum:POP1995": 33455, "numnum:count:POP2000": 6, "numnum:max:POP2000": 18022, "numnum:min:POP2000": 908, "numnum:sum:POP2000": 36491, "numnum:count:POP2005": 6, "numnum:max:POP2005": 18735, "numnum:min:POP2005": 984, "numnum:sum:POP2005": 39000, "numnum:count:POP2010": 6, "numnum:max:POP2010": 19028, "numnum:min:POP2010": 1024, "numnum:sum:POP2010": 39906, "numnum:count:POP2015": 6, "numnum:max:POP2015": 19485, "numnum:min:POP2015": 1104, "numnum:sum:POP2015": 41124, "numnum:count:POP2020": 6, "numnum:max:POP2020": 20189, "numnum:min:POP2020": 1232, "numnum:sum:POP2020": 42793, "numnum:count:POP2025": 6, "numnum:max:POP2025": 20695, "numnum:min:POP2025": 1274, "numnum:sum:POP2025": 44068, "numnum:count:POP2050": 6, "numnum:max:POP2050": 21009, "numnum:min:POP2050": 1315, "numnum:sum:POP2050": 45043, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.476950 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala", "accum2": 1, "numnum:count:SCALERANK": 12, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 21, "numnum:count:NATSCALE": 12, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 3150, "numnum:count:LABELRANK": 12, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 39, "numnum:count:DIFFASCII": 12, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 12, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 7, "numnum:count:CAPALT": 12, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 12, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 6, "numnum:count:MEGACITY": 12, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 10, "numnum:count:LATITUDE": 12, "numnum:max:LATITUDE": 45.416697, "numnum:min:LATITUDE": 14.102045, "numnum:sum:LATITUDE": 364.40438399999996, "numnum:count:LONGITUDE": 12, "numnum:max:LONGITUDE": -73.980017, "numnum:min:LONGITUDE": -90.526966, "numnum:sum:LONGITUDE": -984.709376, "numnum:count:CHANGED": 12, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 12, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 12, "numnum:max:POP_MAX": 19040000, "numnum:min:POP_MAX": 15220, "numnum:sum:POP_MAX": 53204160, "numnum:count:POP_MIN": 12, "numnum:max:POP_MIN": 8008278, "numnum:min:POP_MIN": 13381, "numnum:sum:POP_MIN": 20966065, "numnum:count:POP_OTHER": 12, "numnum:max:POP_OTHER": 9292603, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 28988833, "numnum:count:RANK_MAX": 12, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 6, "numnum:sum:RANK_MAX": 140, "numnum:count:RANK_MIN": 12, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 128, "numnum:count:GEONAMEID": 12, "numnum:max:GEONAMEID": 6167865, "numnum:min:GEONAMEID": 3553478, "numnum:sum:GEONAMEID": 52671256, "numnum:count:LS_MATCH": 12, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 12, "numnum:count:CHECKME": 12, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 12, "numnum:max:MAX_POP10": 9376946, "numnum:min:MAX_POP10": 15220, "numnum:sum:MAX_POP10": 29781068, "numnum:count:MAX_POP20": 12, "numnum:max:MAX_POP20": 11947707, "numnum:min:MAX_POP20": 15220, "numnum:sum:MAX_POP20": 35520486, "numnum:count:MAX_POP50": 12, "numnum:max:MAX_POP50": 18788144, "numnum:min:MAX_POP50": 15220, "numnum:sum:MAX_POP50": 51805803, "numnum:count:MAX_POP300": 12, "numnum:max:MAX_POP300": 18788144, "numnum:min:MAX_POP300": 15220, "numnum:sum:MAX_POP300": 53719698, "numnum:count:MAX_POP310": 12, "numnum:max:MAX_POP310": 18924578, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 47342590, "numnum:count:MAX_NATSCA": 12, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 2400, "numnum:count:MIN_AREAKM": 12, "numnum:max:MIN_AREAKM": 2761, "numnum:min:MIN_AREAKM": 9, "numnum:sum:MIN_AREAKM": 9596, "numnum:count:MAX_AREAKM": 12, "numnum:max:MAX_AREAKM": 8185, "numnum:min:MAX_AREAKM": 9, "numnum:sum:MAX_AREAKM": 27190, "numnum:count:MIN_AREAMI": 12, "numnum:max:MIN_AREAMI": 1066, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 3704, "numnum:count:MAX_AREAMI": 12, "numnum:max:MAX_AREAMI": 3160, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 10498, "numnum:count:MIN_PERKM": 12, "numnum:max:MIN_PERKM": 1494, "numnum:min:MIN_PERKM": 16, "numnum:sum:MIN_PERKM": 4734, "numnum:count:MAX_PERKM": 12, "numnum:max:MAX_PERKM": 4993, "numnum:min:MAX_PERKM": 16, "numnum:sum:MAX_PERKM": 15620, "numnum:count:MIN_PERMI": 12, "numnum:max:MIN_PERMI": 929, "numnum:min:MIN_PERMI": 10, "numnum:sum:MIN_PERMI": 2943, "numnum:count:MAX_PERMI": 12, "numnum:max:MAX_PERMI": 3102, "numnum:min:MAX_PERMI": 10, "numnum:sum:MAX_PERMI": 9702, "numnum:count:MIN_BBXMIN": 12, "numnum:max:MIN_BBXMIN": -74.75, "numnum:min:MIN_BBXMIN": -90.658333, "numnum:sum:MIN_BBXMIN": -988.666665, "numnum:count:MAX_BBXMIN": 12, "numnum:max:MAX_BBXMIN": -74.091431, "numnum:min:MAX_BBXMIN": -90.658333, "numnum:sum:MAX_BBXMIN": -986.917607, "numnum:count:MIN_BBXMAX": 12, "numnum:max:MIN_BBXMAX": -73.574946, "numnum:min:MIN_BBXMAX": -90.425, "numnum:sum:MIN_BBXMAX": -982.2750369999999, "numnum:count:MAX_BBXMAX": 12, "numnum:max:MAX_BBXMAX": -72.716667, "numnum:min:MAX_BBXMAX": -90.425, "numnum:sum:MAX_BBXMAX": -979.966666, "numnum:count:MIN_BBYMIN": 12, "numnum:max:MIN_BBYMIN": 45.225, "numnum:min:MIN_BBYMIN": 14.033333, "numnum:sum:MIN_BBYMIN": 360.783333, "numnum:count:MAX_BBYMIN": 12, "numnum:max:MAX_BBYMIN": 45.225, "numnum:min:MAX_BBYMIN": 14.033333, "numnum:sum:MAX_BBYMIN": 362.271049, "numnum:count:MIN_BBYMAX": 12, "numnum:max:MIN_BBYMAX": 45.55, "numnum:min:MIN_BBYMAX": 14.133333, "numnum:sum:MIN_BBYMAX": 366.615146, "numnum:count:MAX_BBYMAX": 12, "numnum:max:MAX_BBYMAX": 45.55, "numnum:min:MAX_BBYMAX": 14.133333, "numnum:sum:MAX_BBYMAX": 369.366667, "numnum:count:MEAN_BBXC": 12, "numnum:max:MEAN_BBXC": -73.815782, "numnum:min:MEAN_BBXC": -90.54419, "numnum:sum:MEAN_BBXC": -984.6252419999999, "numnum:count:MEAN_BBYC": 12, "numnum:max:MEAN_BBYC": 45.405246, "numnum:min:MEAN_BBYC": 14.083298, "numnum:sum:MEAN_BBYC": 364.74707800000007, "numnum:count:COMPARE": 12, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 12, "numnum:max:ADMIN1_COD": 23, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 58, "numnum:count:GN_POP": 12, "numnum:max:GN_POP": 8008278, "numnum:min:GN_POP": 13381, "numnum:sum:GN_POP": 21883716, "numnum:count:ELEVATION": 12, "numnum:max:ELEVATION": 320, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 518, "numnum:count:GTOPO30": 12, "numnum:max:GTOPO30": 1533, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 3336, "numnum:count:UN_FID": 12, "numnum:max:UN_FID": 577, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 3351, "numnum:count:UN_LAT": 12, "numnum:max:UN_LAT": 45.37, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 321.85999999999998, "numnum:count:UN_LONG": 12, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -90.52, "numnum:sum:UN_LONG": -818.2900000000001, "numnum:count:POP1950": 12, "numnum:max:POP1950": 12338, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 22596, "numnum:count:POP1955": 12, "numnum:max:POP1955": 13219, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 25340, "numnum:count:POP1960": 12, "numnum:max:POP1960": 14164, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 28506, "numnum:count:POP1965": 12, "numnum:max:POP1965": 15177, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 31553, "numnum:count:POP1970": 12, "numnum:max:POP1970": 16191, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 34886, "numnum:count:POP1975": 12, "numnum:max:POP1975": 15880, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 35943, "numnum:count:POP1980": 12, "numnum:max:POP1980": 15601, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 37111, "numnum:count:POP1985": 12, "numnum:max:POP1985": 15827, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 38985, "numnum:count:POP1990": 12, "numnum:max:POP1990": 16086, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 41203, "numnum:count:POP1995": 12, "numnum:max:POP1995": 16943, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 44529, "numnum:count:POP2000": 12, "numnum:max:POP2000": 17846, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 48190, "numnum:count:POP2005": 12, "numnum:max:POP2005": 18732, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 51766, "numnum:count:POP2010": 12, "numnum:max:POP2010": 19040, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 52961, "numnum:count:POP2015": 12, "numnum:max:POP2015": 19441, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 54480, "numnum:count:POP2020": 12, "numnum:max:POP2020": 19974, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 56499, "numnum:count:POP2025": 12, "numnum:max:POP2025": 20370, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 58129, "numnum:count:POP2050": 12, "numnum:max:POP2050": 20628, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 59445, "accum": 12, "numnum:count:accum2": 12, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 12, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 1100, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 38.899549, "numnum:min:LATITUDE": 23.131959, "numnum:sum:LATITUDE": 87.819119, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -77.009419, "numnum:min:LONGITUDE": -82.364182, "numnum:sum:LONGITUDE": -239.597707, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 5585000, "numnum:min:POP_MAX": 2174000, "numnum:sum:POP_MAX": 12097000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1990917, "numnum:min:POP_MIN": 382894, "numnum:sum:POP_MIN": 2926244, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2175991, "numnum:min:POP_OTHER": 1037811, "numnum:sum:POP_OTHER": 5144107, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 37, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 4164138, "numnum:min:GEONAMEID": 3553478, "numnum:sum:GEONAMEID": 11858579, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2182723, "numnum:min:MAX_POP10": 1122682, "numnum:sum:MAX_POP10": 5296322, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2240256, "numnum:min:MAX_POP20": 1443206, "numnum:sum:MAX_POP20": 5734632, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 5187749, "numnum:min:MAX_POP50": 2051170, "numnum:sum:MAX_POP50": 11003304, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 5678280, "numnum:min:MAX_POP300": 2051170, "numnum:sum:MAX_POP300": 12917199, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 5678280, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 10866029, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1114, "numnum:min:MIN_AREAKM": 323, "numnum:sum:MIN_AREAKM": 1817, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 3447, "numnum:min:MAX_AREAKM": 362, "numnum:sum:MAX_AREAKM": 6716, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 430, "numnum:min:MIN_AREAMI": 125, "numnum:sum:MIN_AREAMI": 702, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 1331, "numnum:min:MAX_AREAMI": 140, "numnum:sum:MAX_AREAMI": 2593, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 548, "numnum:min:MIN_PERKM": 156, "numnum:sum:MIN_PERKM": 944, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 1898, "numnum:min:MAX_PERKM": 286, "numnum:sum:MAX_PERKM": 3183, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 341, "numnum:min:MIN_PERMI": 97, "numnum:sum:MIN_PERMI": 587, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 1179, "numnum:min:MAX_PERMI": 177, "numnum:sum:MAX_PERMI": 1976, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -77.533333, "numnum:min:MIN_BBXMIN": -82.533333, "numnum:sum:MIN_BBXMIN": -240.533333, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -77.308333, "numnum:min:MAX_BBXMIN": -82.533333, "numnum:sum:MAX_BBXMIN": -240.283333, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -76.752653, "numnum:min:MIN_BBXMAX": -82.208333, "numnum:sum:MIN_BBXMAX": -239.136705, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -76.4, "numnum:min:MAX_BBXMAX": -82.208333, "numnum:sum:MAX_BBXMAX": -238.63333300000003, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 38.666667, "numnum:min:MIN_BBYMIN": 22.916667, "numnum:sum:MIN_BBYMIN": 87.13333399999999, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 38.754222, "numnum:min:MAX_BBYMIN": 22.975161, "numnum:sum:MAX_BBYMIN": 87.454383, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 39.241667, "numnum:min:MIN_BBYMAX": 23.183333, "numnum:sum:MIN_BBYMAX": 88.43906000000001, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 39.533333, "numnum:min:MAX_BBYMAX": 23.183333, "numnum:sum:MAX_BBYMAX": 89.708333, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -77.002668, "numnum:min:MEAN_BBXC": -82.354344, "numnum:sum:MEAN_BBXC": -239.593428, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 39.007587, "numnum:min:MEAN_BBYC": 23.076845, "numnum:sum:MEAN_BBYC": 88.151611, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 2163824, "numnum:min:GN_POP": 382894, "numnum:sum:GN_POP": 3099151, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 7, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 9, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 11, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 18, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 577, "numnum:min:UN_FID": 172, "numnum:sum:UN_FID": 1299, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 38.89, "numnum:min:UN_LAT": 23.04, "numnum:sum:UN_LAT": 87.75999999999999, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -76.95, "numnum:min:UN_LONG": -82.41, "numnum:sum:UN_LONG": -239.63, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1298, "numnum:min:POP1950": 622, "numnum:sum:POP1950": 3036, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1539, "numnum:min:POP1955": 924, "numnum:sum:POP1955": 3752, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1823, "numnum:min:POP1960": 1361, "numnum:sum:POP1960": 4620, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2135, "numnum:min:POP1965": 1598, "numnum:sum:POP1965": 5442, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2488, "numnum:min:POP1970": 1779, "numnum:sum:POP1970": 6408, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2626, "numnum:min:POP1975": 1848, "numnum:sum:POP1975": 7064, "numnum:count:POP1980": 3, "numnum:max:POP1980": 3122, "numnum:min:POP1980": 1913, "numnum:sum:POP1980": 7812, "numnum:count:POP1985": 3, "numnum:max:POP1985": 3521, "numnum:min:POP1985": 2005, "numnum:sum:POP1985": 8589, "numnum:count:POP1990": 3, "numnum:max:POP1990": 3969, "numnum:min:POP1990": 2108, "numnum:sum:POP1990": 9453, "numnum:count:POP1995": 3, "numnum:max:POP1995": 4431, "numnum:min:POP1995": 2183, "numnum:sum:POP1995": 10265, "numnum:count:POP2000": 3, "numnum:max:POP2000": 4946, "numnum:min:POP2000": 2187, "numnum:sum:POP2000": 11082, "numnum:count:POP2005": 3, "numnum:max:POP2005": 5438, "numnum:min:POP2005": 2189, "numnum:sum:POP2005": 11868, "numnum:count:POP2010": 3, "numnum:max:POP2010": 5585, "numnum:min:POP2010": 2174, "numnum:sum:POP2010": 12097, "numnum:count:POP2015": 3, "numnum:max:POP2015": 5755, "numnum:min:POP2015": 2159, "numnum:sum:POP2015": 12378, "numnum:count:POP2020": 3, "numnum:max:POP2020": 5969, "numnum:min:POP2020": 2151, "numnum:sum:POP2020": 12756, "numnum:count:POP2025": 3, "numnum:max:POP2025": 6141, "numnum:min:POP2025": 2150, "numnum:sum:POP2025": 13069, "numnum:count:POP2050": 3, "numnum:max:POP2050": 6272, "numnum:min:POP2050": 2150, "numnum:sum:POP2050": 13311, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.160563 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 15, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 550, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 40, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 17.977077, "numnum:min:LATITUDE": 8.968017, "numnum:sum:LATITUDE": 62.743125, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": -76.767434, "numnum:min:LONGITUDE": -89.203041, "numnum:sum:LONGITUDE": -415.85605499999999, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 1433000, "numnum:min:POP_MAX": 920000, "numnum:sum:POP_MAX": 5855700, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 920000, "numnum:min:POP_MIN": 1724, "numnum:sum:POP_MIN": 1997672, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 2139587, "numnum:min:POP_OTHER": 18171, "numnum:sum:POP_OTHER": 5620358, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 58, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 3, "numnum:sum:RANK_MIN": 39, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 3703443, "numnum:min:GEONAMEID": 1690681, "numnum:sum:GEONAMEID": 16171364, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 2150614, "numnum:min:MAX_POP10": 664973, "numnum:sum:MAX_POP10": 6330478, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 2150614, "numnum:min:MAX_POP20": 664973, "numnum:sum:MAX_POP20": 6705610, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 2150614, "numnum:min:MAX_POP50": 664973, "numnum:sum:MAX_POP50": 6736647, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 2150614, "numnum:min:MAX_POP300": 664973, "numnum:sum:MAX_POP300": 6736647, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 379, "numnum:min:MIN_AREAKM": 120, "numnum:sum:MIN_AREAKM": 1035, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 431, "numnum:min:MAX_AREAKM": 120, "numnum:sum:MAX_AREAKM": 1218, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 146, "numnum:min:MIN_AREAMI": 46, "numnum:sum:MIN_AREAMI": 399, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 166, "numnum:min:MAX_AREAMI": 46, "numnum:sum:MAX_AREAMI": 470, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 347, "numnum:min:MIN_PERKM": 69, "numnum:sum:MIN_PERKM": 747, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 347, "numnum:min:MAX_PERKM": 69, "numnum:sum:MAX_PERKM": 890, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 215, "numnum:min:MIN_PERMI": 43, "numnum:sum:MIN_PERMI": 463, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 215, "numnum:min:MAX_PERMI": 43, "numnum:sum:MAX_PERMI": 552, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": -76.866667, "numnum:min:MIN_BBXMIN": -89.316667, "numnum:sum:MIN_BBXMIN": -416.525001, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": -76.866667, "numnum:min:MAX_BBXMIN": -89.316667, "numnum:sum:MAX_BBXMIN": -416.30964900000006, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": -76.733333, "numnum:min:MIN_BBXMAX": -88.966667, "numnum:sum:MIN_BBXMAX": -415.241666, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": -76.733333, "numnum:min:MAX_BBXMAX": -88.966667, "numnum:sum:MAX_BBXMAX": -415.233333, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 17.958333, "numnum:min:MIN_BBYMIN": 8.933333, "numnum:sum:MIN_BBYMIN": 62.39999999999999, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 17.958333, "numnum:min:MAX_BBYMIN": 8.943752, "numnum:sum:MAX_BBYMIN": 62.41041899999999, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 18.083333, "numnum:min:MIN_BBYMAX": 9.1, "numnum:sum:MIN_BBYMAX": 63.30000000000001, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 18.083333, "numnum:min:MAX_BBYMAX": 9.1, "numnum:sum:MAX_BBYMAX": 63.308333000000008, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": -76.798044, "numnum:min:MEAN_BBXC": -89.176042, "numnum:sum:MEAN_BBXC": -415.84410499999998, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 18.018509, "numnum:min:MEAN_BBYC": 9.035936, "numnum:sum:MEAN_BBYC": 62.885871, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 37, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 85, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 973087, "numnum:min:GN_POP": 1724, "numnum:sum:GN_POP": 2323486, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 1468, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 1587, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 408, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1140, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 13.7, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 44.78, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -89.2, "numnum:sum:UN_LONG": -339.04999999999998, "numnum:count:POP1950": 5, "numnum:max:POP1950": 194, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 623, "numnum:count:POP1955": 5, "numnum:max:POP1955": 246, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 798, "numnum:count:POP1960": 5, "numnum:max:POP1960": 311, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1023, "numnum:count:POP1965": 5, "numnum:max:POP1965": 394, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1310, "numnum:count:POP1970": 5, "numnum:max:POP1970": 500, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1680, "numnum:count:POP1975": 5, "numnum:max:POP1975": 596, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2007, "numnum:count:POP1980": 5, "numnum:max:POP1980": 701, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2365, "numnum:count:POP1985": 5, "numnum:max:POP1985": 825, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2794, "numnum:count:POP1990": 5, "numnum:max:POP1990": 970, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3289, "numnum:count:POP1995": 5, "numnum:max:POP1995": 1107, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3792, "numnum:count:POP2000": 5, "numnum:max:POP2000": 1233, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 4224, "numnum:count:POP2005": 5, "numnum:max:POP2005": 1374, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4716, "numnum:count:POP2010": 5, "numnum:max:POP2010": 1433, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4918, "numnum:count:POP2015": 5, "numnum:max:POP2015": 1520, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 5217, "numnum:count:POP2020": 5, "numnum:max:POP2020": 1649, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5697, "numnum:count:POP2025": 5, "numnum:max:POP2025": 1776, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 6160, "numnum:count:POP2050": 5, "numnum:max:POP2050": 1902, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 6591, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.667338 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 10, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 27, "numnum:count:NATSCALE": 10, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1590, "numnum:count:LABELRANK": 10, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 65, "numnum:count:DIFFASCII": 10, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 10, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 9, "numnum:count:CAPALT": 10, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 10, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 10, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 7, "numnum:count:LATITUDE": 10, "numnum:max:LATITUDE": 40.749979, "numnum:min:LATITUDE": 8.968017, "numnum:sum:LATITUDE": 178.471598, "numnum:count:LONGITUDE": 10, "numnum:max:LONGITUDE": -72.336035, "numnum:min:LONGITUDE": -89.203041, "numnum:sum:LONGITUDE": -815.506753, "numnum:count:CHANGED": 10, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 10, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 10, "numnum:max:POP_MAX": 19040000, "numnum:min:POP_MAX": 15220, "numnum:sum:POP_MAX": 28082860, "numnum:count:POP_MIN": 10, "numnum:max:POP_MIN": 8008278, "numnum:min:POP_MIN": 1724, "numnum:sum:POP_MIN": 12265887, "numnum:count:POP_OTHER": 10, "numnum:max:POP_OTHER": 9292603, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 18328124, "numnum:count:RANK_MAX": 10, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 6, "numnum:sum:RANK_MAX": 111, "numnum:count:RANK_MIN": 10, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 3, "numnum:sum:RANK_MIN": 90, "numnum:count:GEONAMEID": 10, "numnum:max:GEONAMEID": 5128581, "numnum:min:GEONAMEID": 1690681, "numnum:sum:GEONAMEID": 35773816, "numnum:count:LS_MATCH": 10, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 10, "numnum:count:CHECKME": 10, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 20, "numnum:count:MAX_POP10": 10, "numnum:max:MAX_POP10": 9376946, "numnum:min:MAX_POP10": 15220, "numnum:sum:MAX_POP10": 19343540, "numnum:count:MAX_POP20": 10, "numnum:max:MAX_POP20": 11947707, "numnum:min:MAX_POP20": 15220, "numnum:sum:MAX_POP20": 22289433, "numnum:count:MAX_POP50": 10, "numnum:max:MAX_POP50": 18788144, "numnum:min:MAX_POP50": 15220, "numnum:sum:MAX_POP50": 29160907, "numnum:count:MAX_POP300": 10, "numnum:max:MAX_POP300": 18788144, "numnum:min:MAX_POP300": 15220, "numnum:sum:MAX_POP300": 29160907, "numnum:count:MAX_POP310": 10, "numnum:max:MAX_POP310": 18924578, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 18924578, "numnum:count:MAX_NATSCA": 10, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 1200, "numnum:count:MIN_AREAKM": 10, "numnum:max:MIN_AREAKM": 1137, "numnum:min:MIN_AREAKM": 9, "numnum:sum:MIN_AREAKM": 2736, "numnum:count:MAX_AREAKM": 10, "numnum:max:MAX_AREAKM": 8185, "numnum:min:MAX_AREAKM": 9, "numnum:sum:MAX_AREAKM": 9967, "numnum:count:MIN_AREAMI": 10, "numnum:max:MIN_AREAMI": 439, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 1054, "numnum:count:MAX_AREAMI": 10, "numnum:max:MAX_AREAMI": 3160, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 3846, "numnum:count:MIN_PERKM": 10, "numnum:max:MIN_PERKM": 497, "numnum:min:MIN_PERKM": 16, "numnum:sum:MIN_PERKM": 1679, "numnum:count:MAX_PERKM": 10, "numnum:max:MAX_PERKM": 4993, "numnum:min:MAX_PERKM": 16, "numnum:sum:MAX_PERKM": 6318, "numnum:count:MIN_PERMI": 10, "numnum:max:MIN_PERMI": 309, "numnum:min:MIN_PERMI": 10, "numnum:sum:MIN_PERMI": 1043, "numnum:count:MAX_PERMI": 10, "numnum:max:MAX_PERMI": 3102, "numnum:min:MAX_PERMI": 10, "numnum:sum:MAX_PERMI": 3925, "numnum:count:MIN_BBXMIN": 10, "numnum:max:MIN_BBXMIN": -72.441667, "numnum:min:MIN_BBXMIN": -89.316667, "numnum:sum:MIN_BBXMIN": -817.1666680000001, "numnum:count:MAX_BBXMIN": 10, "numnum:max:MAX_BBXMIN": -72.441667, "numnum:min:MAX_BBXMIN": -89.316667, "numnum:sum:MAX_BBXMIN": -816.292747, "numnum:count:MIN_BBXMAX": 10, "numnum:max:MIN_BBXMAX": -72.033333, "numnum:min:MIN_BBXMAX": -88.966667, "numnum:sum:MIN_BBXMAX": -813.9999449999999, "numnum:count:MAX_BBXMAX": 10, "numnum:max:MAX_BBXMAX": -72.033333, "numnum:min:MAX_BBXMAX": -88.966667, "numnum:sum:MAX_BBXMAX": -813.133333, "numnum:count:MIN_BBYMIN": 10, "numnum:max:MIN_BBYMIN": 39.808333, "numnum:min:MIN_BBYMIN": 8.933333, "numnum:sum:MIN_BBYMIN": 176.96666600000004, "numnum:count:MAX_BBYMIN": 10, "numnum:max:MAX_BBYMIN": 40.566667, "numnum:min:MAX_BBYMIN": 8.943752, "numnum:sum:MAX_BBYMIN": 177.735419, "numnum:count:MIN_BBYMAX": 10, "numnum:max:MIN_BBYMAX": 41.057237, "numnum:min:MIN_BBYMAX": 9.1, "numnum:sum:MIN_BBYMAX": 179.515571, "numnum:count:MAX_BBYMAX": 10, "numnum:max:MAX_BBYMAX": 41.941667, "numnum:min:MAX_BBYMAX": 9.1, "numnum:sum:MAX_BBYMAX": 180.408334, "numnum:count:MEAN_BBXC": 10, "numnum:max:MEAN_BBXC": -72.222424, "numnum:min:MEAN_BBXC": -89.176042, "numnum:sum:MEAN_BBXC": -815.184795, "numnum:count:MEAN_BBYC": 10, "numnum:max:MEAN_BBYC": 40.813006, "numnum:min:MEAN_BBYC": 9.035936, "numnum:sum:MEAN_BBYC": 178.64532899999998, "numnum:count:COMPARE": 10, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 10, "numnum:max:ADMIN1_COD": 37, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 129, "numnum:count:GN_POP": 10, "numnum:max:GN_POP": 8008278, "numnum:min:GN_POP": 1724, "numnum:sum:GN_POP": 12658675, "numnum:count:ELEVATION": 10, "numnum:max:ELEVATION": 10, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 10, "numnum:count:GTOPO30": 10, "numnum:max:GTOPO30": 1468, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 2717, "numnum:count:UN_FID": 10, "numnum:max:UN_FID": 555, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 2112, "numnum:count:UN_LAT": 10, "numnum:max:UN_LAT": 40.7, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 118.09000000000002, "numnum:count:UN_LONG": 10, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -89.2, "numnum:sum:UN_LONG": -572.49, "numnum:count:POP1950": 10, "numnum:max:POP1950": 12338, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 13167, "numnum:count:POP1955": 10, "numnum:max:POP1955": 13219, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 14295, "numnum:count:POP1960": 10, "numnum:max:POP1960": 14164, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 15562, "numnum:count:POP1965": 10, "numnum:max:POP1965": 15177, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 16993, "numnum:count:POP1970": 10, "numnum:max:POP1970": 16191, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 18554, "numnum:count:POP1975": 10, "numnum:max:POP1975": 15880, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 18754, "numnum:count:POP1980": 10, "numnum:max:POP1980": 15601, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 19038, "numnum:count:POP1985": 10, "numnum:max:POP1985": 15827, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 19973, "numnum:count:POP1990": 10, "numnum:max:POP1990": 16086, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 21087, "numnum:count:POP1995": 10, "numnum:max:POP1995": 16943, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 22839, "numnum:count:POP2000": 10, "numnum:max:POP2000": 17846, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 24516, "numnum:count:POP2005": 10, "numnum:max:POP2005": 18732, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 26234, "numnum:count:POP2010": 10, "numnum:max:POP2010": 19040, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 26902, "numnum:count:POP2015": 10, "numnum:max:POP2015": 19441, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 27889, "numnum:count:POP2020": 10, "numnum:max:POP2020": 19974, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 29457, "numnum:count:POP2025": 10, "numnum:max:POP2025": 20370, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 30859, "numnum:count:POP2050": 10, "numnum:max:POP2050": 20628, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 32037, "accum": 10, "numnum:count:accum2": 10, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 10, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-au-Prince", "DIFFASCII": 0, "NAMEASCII": "Port-au-Prince", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Haiti", "SOV_A3": "HTI", "ADM0NAME": "Haiti", "ADM0_A3": "HTI", "ADM1NAME": "Ouest", "ISO_A2": "HT", "LATITUDE": 18.541025, "LONGITUDE": -72.336035, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1998000, "POP_MIN": 1234742, "POP_OTHER": 2385397, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3718426, "MEGANAME": "Port-au-Prince", "LS_NAME": "Port-au-Prince", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2445384, "MAX_POP20": 2445384, "MAX_POP50": 2445384, "MAX_POP300": 2445384, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 374, "MAX_AREAKM": 374, "MIN_AREAMI": 144, "MAX_AREAMI": 144, "MIN_PERKM": 287, "MAX_PERKM": 287, "MIN_PERMI": 179, "MAX_PERMI": 179, "MIN_BBXMIN": -72.441667, "MAX_BBXMIN": -72.441667, "MIN_BBXMAX": -72.033333, "MAX_BBXMAX": -72.033333, "MIN_BBYMIN": 18.491667, "MAX_BBYMIN": 18.491667, "MIN_BBYMAX": 18.666667, "MAX_BBYMAX": 18.666667, "MEAN_BBXC": -72.222424, "MEAN_BBYC": 18.56946, "COMPARE": 0, "GN_ASCII": "Port-au-Prince", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1234742, "ELEVATION": 0, "GTOPO30": 65, "TIMEZONE": "America/Port-au-Prince", "GEONAMESNO": "GeoNames match general.", "UN_FID": 208, "UN_ADM0": "Haiti", "UN_LAT": 18.52, "UN_LONG": -72.34, "POP1950": 133, "POP1955": 182, "POP1960": 247, "POP1965": 337, "POP1970": 460, "POP1975": 575, "POP1980": 701, "POP1985": 881, "POP1990": 1134, "POP1995": 1427, "POP2000": 1653, "POP2005": 1885, "POP2010": 1998, "POP2015": 2209, "POP2020": 2621, "POP2025": 3012, "POP2050": 3346, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 910, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 21, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 18.541025, "numnum:min:LATITUDE": 4.596424, "numnum:sum:LATITUDE": 41.607522, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -69.900085, "numnum:min:LONGITUDE": -74.083344, "numnum:sum:LONGITUDE": -216.31946399999999, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 7772000, "numnum:min:POP_MAX": 1998000, "numnum:sum:POP_MAX": 11924000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 6333661, "numnum:min:POP_MIN": 2873, "numnum:sum:POP_MIN": 7571276, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 5754084, "numnum:min:POP_OTHER": 2385397, "numnum:sum:POP_OTHER": 11461518, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 37, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 29, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3718426, "numnum:min:GEONAMEID": 3668373, "numnum:sum:GEONAMEID": 11075488, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 6333661, "numnum:min:MAX_POP10": 2445384, "numnum:sum:MAX_POP10": 12113458, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 6333154, "numnum:min:MAX_POP20": 2445384, "numnum:sum:MAX_POP20": 12112951, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 6333154, "numnum:min:MAX_POP50": 2445384, "numnum:sum:MAX_POP50": 12112951, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 6333154, "numnum:min:MAX_POP300": 2445384, "numnum:sum:MAX_POP300": 12112951, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 6333154, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 6333154, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 523, "numnum:min:MIN_AREAKM": 374, "numnum:sum:MIN_AREAKM": 1348, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 523, "numnum:min:MAX_AREAKM": 374, "numnum:sum:MAX_AREAKM": 1348, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 202, "numnum:min:MIN_AREAMI": 144, "numnum:sum:MIN_AREAMI": 520, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 202, "numnum:min:MAX_AREAMI": 144, "numnum:sum:MAX_AREAMI": 520, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 309, "numnum:min:MIN_PERKM": 186, "numnum:sum:MIN_PERKM": 782, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 309, "numnum:min:MAX_PERKM": 186, "numnum:sum:MAX_PERKM": 782, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 192, "numnum:min:MIN_PERMI": 116, "numnum:sum:MIN_PERMI": 487, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 192, "numnum:min:MAX_PERMI": 116, "numnum:sum:MAX_PERMI": 487, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -70.208333, "numnum:min:MIN_BBXMIN": -74.266667, "numnum:sum:MIN_BBXMIN": -216.91666699999997, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -70.208333, "numnum:min:MAX_BBXMIN": -74.266667, "numnum:sum:MAX_BBXMIN": -216.91666699999997, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -69.766667, "numnum:min:MIN_BBXMAX": -74.008333, "numnum:sum:MIN_BBXMAX": -215.808333, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -69.766667, "numnum:min:MAX_BBXMAX": -74.008333, "numnum:sum:MAX_BBXMAX": -215.808333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 18.491667, "numnum:min:MIN_BBYMIN": 4.483333, "numnum:sum:MIN_BBYMIN": 41.291667000000007, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 18.491667, "numnum:min:MAX_BBYMIN": 4.483333, "numnum:sum:MAX_BBYMIN": 41.291667000000007, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 18.666667, "numnum:min:MIN_BBYMAX": 4.8, "numnum:sum:MIN_BBYMAX": 42.058334, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 18.666667, "numnum:min:MAX_BBYMAX": 4.8, "numnum:sum:MAX_BBYMAX": 42.058334, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -69.980546, "numnum:min:MEAN_BBXC": -74.116517, "numnum:sum:MEAN_BBXC": -216.31948699999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 18.56946, "numnum:min:MEAN_BBYC": 4.643227, "numnum:sum:MEAN_BBYC": 41.679863000000008, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 34, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 47, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 7102602, "numnum:min:GN_POP": 2873, "numnum:sum:GN_POP": 8340217, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 2620, "numnum:min:GTOPO30": 65, "numnum:sum:GTOPO30": 4689, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 208, "numnum:min:UN_FID": 161, "numnum:sum:UN_FID": 545, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 18.52, "numnum:min:UN_LAT": 4.63, "numnum:sum:UN_LAT": 41.63, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -69.89, "numnum:min:UN_LONG": -74.08, "numnum:sum:UN_LONG": -216.31, "numnum:count:POP1950": 3, "numnum:max:POP1950": 630, "numnum:min:POP1950": 133, "numnum:sum:POP1950": 982, "numnum:count:POP1955": 3, "numnum:max:POP1955": 894, "numnum:min:POP1955": 182, "numnum:sum:POP1955": 1388, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1269, "numnum:min:POP1960": 247, "numnum:sum:POP1960": 1962, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1780, "numnum:min:POP1965": 337, "numnum:sum:POP1965": 2730, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2383, "numnum:min:POP1970": 460, "numnum:sum:POP1970": 3676, "numnum:count:POP1975": 3, "numnum:max:POP1975": 3040, "numnum:min:POP1975": 575, "numnum:sum:POP1975": 4631, "numnum:count:POP1980": 3, "numnum:max:POP1980": 3525, "numnum:min:POP1980": 701, "numnum:sum:POP1980": 5466, "numnum:count:POP1985": 3, "numnum:max:POP1985": 4087, "numnum:min:POP1985": 881, "numnum:sum:POP1985": 6364, "numnum:count:POP1990": 3, "numnum:max:POP1990": 4740, "numnum:min:POP1990": 1134, "numnum:sum:POP1990": 7396, "numnum:count:POP1995": 3, "numnum:max:POP1995": 5494, "numnum:min:POP1995": 1427, "numnum:sum:POP1995": 8591, "numnum:count:POP2000": 3, "numnum:max:POP2000": 6356, "numnum:min:POP2000": 1653, "numnum:sum:POP2000": 9863, "numnum:count:POP2005": 3, "numnum:max:POP2005": 7353, "numnum:min:POP2005": 1885, "numnum:sum:POP2005": 11300, "numnum:count:POP2010": 3, "numnum:max:POP2010": 7772, "numnum:min:POP2010": 1998, "numnum:sum:POP2010": 11924, "numnum:count:POP2015": 3, "numnum:max:POP2015": 8320, "numnum:min:POP2015": 2209, "numnum:sum:POP2015": 12827, "numnum:count:POP2020": 3, "numnum:max:POP2020": 8916, "numnum:min:POP2020": 2525, "numnum:sum:POP2020": 14062, "numnum:count:POP2025": 3, "numnum:max:POP2025": 9299, "numnum:min:POP2025": 2722, "numnum:sum:POP2025": 15033, "numnum:count:POP2050": 3, "numnum:max:POP2050": 9600, "numnum:min:POP2050": 2885, "numnum:sum:POP2050": 15831, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.562947 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 18, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1000, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 21, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 18.470073, "numnum:min:LATITUDE": 4.596424, "numnum:sum:LATITUDE": 86.78955300000001, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": -61.000008, "numnum:min:LONGITUDE": -74.083344, "numnum:sum:LONGITUDE": -390.937493, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 21, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 7772000, "numnum:min:POP_MAX": 21887, "numnum:sum:POP_MAX": 10044685, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 6333661, "numnum:min:POP_MIN": 2873, "numnum:sum:POP_MIN": 6403465, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 5754084, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 9121344, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 53, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 42, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 3688689, "numnum:min:GEONAMEID": 3028258, "numnum:sum:GEONAMEID": 21112528, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 25, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 6333661, "numnum:min:MAX_POP10": 21887, "numnum:sum:MAX_POP10": 9813139, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 6333154, "numnum:min:MAX_POP20": 21887, "numnum:sum:MAX_POP20": 9812632, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 6333154, "numnum:min:MAX_POP50": 21887, "numnum:sum:MAX_POP50": 9812632, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 6333154, "numnum:min:MAX_POP300": 21887, "numnum:sum:MAX_POP300": 9812632, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 6333154, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 6333154, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 800, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 523, "numnum:min:MIN_AREAKM": 7, "numnum:sum:MIN_AREAKM": 1034, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 523, "numnum:min:MAX_AREAKM": 7, "numnum:sum:MAX_AREAKM": 1034, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 202, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 400, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 202, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 400, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 309, "numnum:min:MIN_PERKM": 16, "numnum:sum:MIN_PERKM": 596, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 309, "numnum:min:MAX_PERKM": 16, "numnum:sum:MAX_PERKM": 596, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 192, "numnum:min:MIN_PERMI": 10, "numnum:sum:MIN_PERMI": 372, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 192, "numnum:min:MAX_PERMI": 10, "numnum:sum:MAX_PERMI": 372, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": -61.008333, "numnum:min:MIN_BBXMIN": -74.266667, "numnum:sum:MIN_BBXMIN": -391.48333299999998, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": -61.008333, "numnum:min:MAX_BBXMIN": -74.266667, "numnum:sum:MAX_BBXMIN": -391.48333299999998, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": -60.966667, "numnum:min:MIN_BBXMAX": -74.008333, "numnum:sum:MIN_BBXMAX": -390.58333300000006, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": -60.966667, "numnum:min:MAX_BBXMAX": -74.008333, "numnum:sum:MAX_BBXMAX": -390.58333300000006, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 18.316667, "numnum:min:MIN_BBYMIN": 4.483333, "numnum:sum:MIN_BBYMIN": 86.425001, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 18.316667, "numnum:min:MAX_BBYMIN": 4.483333, "numnum:sum:MAX_BBYMIN": 86.425001, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 18.591667, "numnum:min:MIN_BBYMAX": 4.8, "numnum:sum:MIN_BBYMAX": 87.21666700000002, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 18.591667, "numnum:min:MAX_BBYMAX": 4.8, "numnum:sum:MAX_BBYMAX": 87.21666700000002, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": -60.988377, "numnum:min:MEAN_BBXC": -74.116517, "numnum:sum:MEAN_BBXC": -391.01338799999999, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 18.467176, "numnum:min:MEAN_BBYC": 4.643227, "numnum:sum:MEAN_BBYC": 86.840964, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 34, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 47, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 7102602, "numnum:min:GN_POP": 2873, "numnum:sum:GN_POP": 7164982, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 2620, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -5326, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 176, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 337, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 18.48, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 23.11, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -74.08, "numnum:sum:UN_LONG": -143.97, "numnum:count:POP1950": 6, "numnum:max:POP1950": 630, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 849, "numnum:count:POP1955": 6, "numnum:max:POP1955": 894, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1206, "numnum:count:POP1960": 6, "numnum:max:POP1960": 1269, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1715, "numnum:count:POP1965": 6, "numnum:max:POP1965": 1780, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2393, "numnum:count:POP1970": 6, "numnum:max:POP1970": 2383, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3216, "numnum:count:POP1975": 6, "numnum:max:POP1975": 3040, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4056, "numnum:count:POP1980": 6, "numnum:max:POP1980": 3525, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4765, "numnum:count:POP1985": 6, "numnum:max:POP1985": 4087, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5483, "numnum:count:POP1990": 6, "numnum:max:POP1990": 4740, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 6262, "numnum:count:POP1995": 6, "numnum:max:POP1995": 5494, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 7164, "numnum:count:POP2000": 6, "numnum:max:POP2000": 6356, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 8210, "numnum:count:POP2005": 6, "numnum:max:POP2005": 7353, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 9415, "numnum:count:POP2010": 6, "numnum:max:POP2010": 7772, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 9926, "numnum:count:POP2015": 6, "numnum:max:POP2015": 8320, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 10618, "numnum:count:POP2020": 6, "numnum:max:POP2020": 8916, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 11441, "numnum:count:POP2025": 6, "numnum:max:POP2025": 9299, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 12021, "numnum:count:POP2050": 6, "numnum:max:POP2050": 9600, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 12485, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -69.873047, 18.479609 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 4, "numnum:sum:SCALERANK": 20, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 50, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 250, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 17.30203, "numnum:min:LATITUDE": 13.148279, "numnum:sum:LATITUDE": 76.871335, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": -61.000008, "numnum:min:LONGITUDE": -62.717009, "numnum:sum:LONGITUDE": -308.166126, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 20, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 49485, "numnum:min:POP_MAX": 21887, "numnum:sum:POP_MAX": 168170, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 24518, "numnum:min:POP_MIN": 10634, "numnum:sum:POP_MIN": 91449, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 23336, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 45223, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 7, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 35, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 7, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 32, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 4359981, "numnum:min:GEONAMEID": 3028258, "numnum:sum:GEONAMEID": 18115447, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 25, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 64343, "numnum:min:MAX_POP10": 21887, "numnum:sum:MAX_POP10": 194550, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 64343, "numnum:min:MAX_POP20": 21887, "numnum:sum:MAX_POP20": 194550, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 64343, "numnum:min:MAX_POP50": 21887, "numnum:sum:MAX_POP50": 194550, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 64343, "numnum:min:MAX_POP300": 21887, "numnum:sum:MAX_POP300": 194550, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 25, "numnum:min:MIN_AREAKM": 7, "numnum:sum:MIN_AREAKM": 77, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 25, "numnum:min:MAX_AREAKM": 7, "numnum:sum:MAX_AREAKM": 77, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 10, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 31, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 10, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 31, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 38, "numnum:min:MIN_PERKM": 16, "numnum:sum:MIN_PERKM": 132, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 38, "numnum:min:MAX_PERKM": 16, "numnum:sum:MAX_PERKM": 132, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 24, "numnum:min:MIN_PERMI": 10, "numnum:sum:MIN_PERMI": 83, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 24, "numnum:min:MAX_PERMI": 10, "numnum:sum:MAX_PERMI": 83, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": -61.008333, "numnum:min:MIN_BBXMIN": -62.741667, "numnum:sum:MIN_BBXMIN": -308.25, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": -61.008333, "numnum:min:MAX_BBXMIN": -62.741667, "numnum:sum:MAX_BBXMIN": -308.25, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": -60.966667, "numnum:min:MIN_BBXMAX": -62.708333, "numnum:sum:MIN_BBXMAX": -307.96666600000006, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": -60.966667, "numnum:min:MAX_BBXMAX": -62.708333, "numnum:sum:MAX_BBXMAX": -307.96666600000006, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 17.291667, "numnum:min:MIN_BBYMIN": 13.125, "numnum:sum:MIN_BBYMIN": 76.750001, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 17.291667, "numnum:min:MAX_BBYMIN": 13.125, "numnum:sum:MAX_BBYMIN": 76.750001, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 17.333333, "numnum:min:MIN_BBYMAX": 13.175, "numnum:sum:MIN_BBYMAX": 77, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 17.333333, "numnum:min:MAX_BBYMAX": 13.175, "numnum:sum:MAX_BBYMAX": 77, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": -60.988377, "numnum:min:MEAN_BBXC": -62.726389, "numnum:sum:MEAN_BBXC": -308.11850799999999, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 17.306019, "numnum:min:MEAN_BBYC": 13.145833, "numnum:sum:MEAN_BBYC": 76.876394, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 4, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 24226, "numnum:min:GN_POP": 1662, "numnum:sum:GN_POP": 61169, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 5, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 5, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 47, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9949, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 5, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 5, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 5, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 5, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 5, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 5, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 5, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 5, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 5, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 5, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 5, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 5, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 5, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 5, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 5, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 5, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 5, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -62.753906, 17.308688 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 20, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 610, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 30, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 13.148279, "numnum:min:LATITUDE": 6.801974, "numnum:sum:LATITUDE": 66.257885, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": -58.167029, "numnum:min:LONGITUDE": -66.917037, "numnum:sum:LONGITUDE": -369.171329, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 20, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 2985000, "numnum:min:POP_MAX": 33734, "numnum:sum:POP_MAX": 3818655, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 1815679, "numnum:min:POP_MIN": 24518, "numnum:sum:POP_MIN": 2248166, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 2764555, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 3667144, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 55, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 51, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 4359981, "numnum:min:GEONAMEID": 2075807, "numnum:sum:GEONAMEID": 20614985, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 25, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 2818500, "numnum:min:MAX_POP10": 27343, "numnum:sum:MAX_POP10": 3645764, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 3351058, "numnum:min:MAX_POP20": 27343, "numnum:sum:MAX_POP20": 4178322, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 3351241, "numnum:min:MAX_POP50": 27343, "numnum:sum:MAX_POP50": 4178505, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 3351241, "numnum:min:MAX_POP300": 27343, "numnum:sum:MAX_POP300": 4178505, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 224, "numnum:min:MIN_AREAKM": 10, "numnum:sum:MIN_AREAKM": 506, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 370, "numnum:min:MAX_AREAKM": 10, "numnum:sum:MAX_AREAKM": 652, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 86, "numnum:min:MIN_AREAMI": 4, "numnum:sum:MIN_AREAMI": 195, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 143, "numnum:min:MAX_AREAMI": 4, "numnum:sum:MAX_AREAMI": 252, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 137, "numnum:min:MIN_PERKM": 18, "numnum:sum:MIN_PERKM": 470, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 278, "numnum:min:MAX_PERKM": 18, "numnum:sum:MAX_PERKM": 611, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 85, "numnum:min:MIN_PERMI": 11, "numnum:sum:MIN_PERMI": 291, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 172, "numnum:min:MAX_PERMI": 11, "numnum:sum:MAX_PERMI": 378, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": -58.2, "numnum:min:MIN_BBXMIN": -67.133333, "numnum:sum:MIN_BBXMIN": -369.50833299999996, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": -58.2, "numnum:min:MAX_BBXMIN": -66.993057, "numnum:sum:MAX_BBXMIN": -369.36805699999999, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": -58.116667, "numnum:min:MIN_BBXMAX": -66.725, "numnum:sum:MIN_BBXMAX": -368.475, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": -58.116667, "numnum:min:MAX_BBXMAX": -66.725, "numnum:sum:MAX_BBXMAX": -368.475, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 13.125, "numnum:min:MIN_BBYMIN": 6.75, "numnum:sum:MIN_BBYMIN": 65.858333, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 13.125, "numnum:min:MAX_BBYMIN": 6.75, "numnum:sum:MAX_BBYMIN": 65.941666, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 13.266667, "numnum:min:MIN_BBYMAX": 6.833333, "numnum:sum:MIN_BBYMAX": 66.54200499999999, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 13.266667, "numnum:min:MAX_BBYMAX": 6.833333, "numnum:sum:MAX_BBYMAX": 66.550001, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": -58.153788, "numnum:min:MEAN_BBXC": -66.917919, "numnum:sum:MEAN_BBXC": -368.992819, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 13.145833, "numnum:min:MEAN_BBYC": 6.797348, "numnum:sum:MEAN_BBYC": 66.20897000000001, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 25, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 53, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 1815679, "numnum:min:GN_POP": 1662, "numnum:sum:GN_POP": 2112486, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 5, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 5, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 920, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8899, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 582, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 582, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 10.49, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 10.49, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -66.89, "numnum:sum:UN_LONG": -66.89, "numnum:count:POP1950": 6, "numnum:max:POP1950": 694, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 694, "numnum:count:POP1955": 6, "numnum:max:POP1955": 955, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 955, "numnum:count:POP1960": 6, "numnum:max:POP1960": 1316, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1316, "numnum:count:POP1965": 6, "numnum:max:POP1965": 1657, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1657, "numnum:count:POP1970": 6, "numnum:max:POP1970": 2060, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2060, "numnum:count:POP1975": 6, "numnum:max:POP1975": 2342, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2342, "numnum:count:POP1980": 6, "numnum:max:POP1980": 2575, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2575, "numnum:count:POP1985": 6, "numnum:max:POP1985": 2693, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2693, "numnum:count:POP1990": 6, "numnum:max:POP1990": 2767, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2767, "numnum:count:POP1995": 6, "numnum:max:POP1995": 2816, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2816, "numnum:count:POP2000": 6, "numnum:max:POP2000": 2864, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2864, "numnum:count:POP2005": 6, "numnum:max:POP2005": 2930, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2930, "numnum:count:POP2010": 6, "numnum:max:POP2010": 2985, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2985, "numnum:count:POP2015": 6, "numnum:max:POP2015": 3098, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3098, "numnum:count:POP2020": 6, "numnum:max:POP2020": 3306, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3306, "numnum:count:POP2025": 6, "numnum:max:POP2025": 3482, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3482, "numnum:count:POP2050": 6, "numnum:max:POP2050": 3619, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3619, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint George‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 4, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 50, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 100, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 13.102003, "numnum:min:LATITUDE": 12.052633, "numnum:sum:LATITUDE": 25.154636, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -59.616527, "numnum:min:LONGITUDE": -61.741643, "numnum:sum:LONGITUDE": -121.35817, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 191152, "numnum:min:POP_MAX": 33734, "numnum:sum:POP_MAX": 224886, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 96578, "numnum:min:POP_MIN": 27343, "numnum:sum:POP_MIN": 123921, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 191814, "numnum:min:POP_OTHER": 27343, "numnum:sum:POP_OTHER": 219157, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 9, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 16, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 8, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 15, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3579925, "numnum:min:GEONAMEID": 2075807, "numnum:sum:GEONAMEID": 5655732, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 191152, "numnum:min:MAX_POP10": 27343, "numnum:sum:MAX_POP10": 218495, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 191152, "numnum:min:MAX_POP20": 27343, "numnum:sum:MAX_POP20": 218495, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 191152, "numnum:min:MAX_POP50": 27343, "numnum:sum:MAX_POP50": 218495, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 191152, "numnum:min:MAX_POP300": 27343, "numnum:sum:MAX_POP300": 218495, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 106, "numnum:min:MIN_AREAKM": 10, "numnum:sum:MIN_AREAKM": 116, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 106, "numnum:min:MAX_AREAKM": 10, "numnum:sum:MAX_AREAKM": 116, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 41, "numnum:min:MIN_AREAMI": 4, "numnum:sum:MIN_AREAMI": 45, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 41, "numnum:min:MAX_AREAMI": 4, "numnum:sum:MAX_AREAMI": 45, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 131, "numnum:min:MIN_PERKM": 18, "numnum:sum:MIN_PERKM": 149, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 131, "numnum:min:MAX_PERKM": 18, "numnum:sum:MAX_PERKM": 149, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 82, "numnum:min:MIN_PERMI": 11, "numnum:sum:MIN_PERMI": 93, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 82, "numnum:min:MAX_PERMI": 11, "numnum:sum:MAX_PERMI": 93, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -59.641667, "numnum:min:MIN_BBXMIN": -61.758333, "numnum:sum:MIN_BBXMIN": -121.4, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -59.641667, "numnum:min:MAX_BBXMIN": -61.758333, "numnum:sum:MAX_BBXMIN": -121.4, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -59.5, "numnum:min:MIN_BBXMAX": -61.725, "numnum:sum:MIN_BBXMAX": -121.225, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -59.5, "numnum:min:MAX_BBXMAX": -61.725, "numnum:sum:MAX_BBXMAX": -121.225, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 13.05, "numnum:min:MIN_BBYMIN": 12.025, "numnum:sum:MIN_BBYMIN": 25.075000000000004, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 13.05, "numnum:min:MAX_BBYMIN": 12.025, "numnum:sum:MAX_BBYMIN": 25.075000000000004, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 13.266667, "numnum:min:MIN_BBYMAX": 12.066667, "numnum:sum:MIN_BBYMAX": 25.333334, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 13.266667, "numnum:min:MAX_BBYMAX": 12.066667, "numnum:sum:MAX_BBYMAX": 25.333334, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -59.589731, "numnum:min:MEAN_BBXC": -61.745833, "numnum:sum:MEAN_BBXC": -121.335564, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 13.128773, "numnum:min:MEAN_BBYC": 12.046528, "numnum:sum:MEAN_BBYC": 25.175301, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 3, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7500, "numnum:min:GN_POP": 2971, "numnum:sum:GN_POP": 10471, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 152, "numnum:min:GTOPO30": 26, "numnum:sum:GTOPO30": 178, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -61.699219, 12.039321 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 15, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1180, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 34, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 1, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 1, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 64.150024, "numnum:min:LATITUDE": 5.83503, "numnum:sum:LATITUDE": 216.88478999999999, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": -0.116722, "numnum:min:LONGITUDE": -55.167031, "numnum:sum:LONGITUDE": -120.199368, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 8567000, "numnum:min:POP_MAX": 113364, "numnum:sum:POP_MAX": 10347829, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 7421209, "numnum:min:POP_MIN": 88859, "numnum:sum:POP_MIN": 8993072, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 326670, "numnum:min:POP_OTHER": 22478, "numnum:sum:POP_OTHER": 1022995, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 62, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 60, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 3413829, "numnum:min:GEONAMEID": 2462881, "numnum:sum:GEONAMEID": 18242690, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 7721282, "numnum:min:MAX_POP10": 88859, "numnum:sum:MAX_POP10": 9375863, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 8370578, "numnum:min:MAX_POP20": 88859, "numnum:sum:MAX_POP20": 10025159, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 10011551, "numnum:min:MAX_POP50": 88859, "numnum:sum:MAX_POP50": 11666132, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 10011551, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 11489767, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 10011551, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 10980527, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 950, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 1914, "numnum:min:MIN_AREAKM": 21, "numnum:sum:MIN_AREAKM": 2502, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 3198, "numnum:min:MAX_AREAKM": 21, "numnum:sum:MAX_AREAKM": 3787, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 739, "numnum:min:MIN_AREAMI": 8, "numnum:sum:MIN_AREAMI": 965, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 1235, "numnum:min:MAX_AREAMI": 8, "numnum:sum:MAX_AREAMI": 1461, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 994, "numnum:min:MIN_PERKM": 26, "numnum:sum:MIN_PERKM": 1512, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 2440, "numnum:min:MAX_PERKM": 26, "numnum:sum:MAX_PERKM": 2960, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 618, "numnum:min:MIN_PERMI": 16, "numnum:sum:MIN_PERMI": 939, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 1516, "numnum:min:MAX_PERMI": 16, "numnum:sum:MAX_PERMI": 1839, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": -1.091667, "numnum:min:MIN_BBXMIN": -55.283333, "numnum:sum:MIN_BBXMIN": -121.68333299999999, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": -0.546866, "numnum:min:MAX_BBXMIN": -55.283333, "numnum:sum:MAX_BBXMIN": -121.13853199999999, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 0.307108, "numnum:min:MIN_BBXMAX": -55.107566, "numnum:sum:MIN_BBXMAX": -119.233791, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 0.816667, "numnum:min:MAX_BBXMAX": -55.1, "numnum:sum:MAX_BBXMAX": -118.716666, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 64.05, "numnum:min:MIN_BBYMIN": 5.766667, "numnum:sum:MIN_BBYMIN": 216.15, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 64.05, "numnum:min:MAX_BBYMIN": 5.766667, "numnum:sum:MAX_BBYMIN": 216.225, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 64.166667, "numnum:min:MIN_BBYMAX": 5.866667, "numnum:sum:MIN_BBYMAX": 217.45000000000003, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 64.166667, "numnum:min:MAX_BBYMAX": 5.866667, "numnum:sum:MAX_BBYMAX": 217.45000000000003, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": -0.169651, "numnum:min:MEAN_BBXC": -55.188737, "numnum:sum:MEAN_BBXC": -120.22942099999999, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 64.116125, "numnum:min:MEAN_BBYC": 5.826428, "numnum:sum:MEAN_BBYC": 216.846081, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 39, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 62, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 7421209, "numnum:min:GN_POP": 113364, "numnum:sum:GN_POP": 9084347, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 72, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9878, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 519, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 821, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 53.34, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 104.82, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -6.25, "numnum:sum:UN_LONG": -6.42, "numnum:count:POP1950": 6, "numnum:max:POP1950": 8361, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 8987, "numnum:count:POP1955": 6, "numnum:max:POP1955": 8278, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 8925, "numnum:count:POP1960": 6, "numnum:max:POP1960": 8196, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 8857, "numnum:count:POP1965": 6, "numnum:max:POP1965": 7869, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 8592, "numnum:count:POP1970": 6, "numnum:max:POP1970": 7509, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 8280, "numnum:count:POP1975": 6, "numnum:max:POP1975": 7546, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 8379, "numnum:count:POP1980": 6, "numnum:max:POP1980": 7660, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 8563, "numnum:count:POP1985": 6, "numnum:max:POP1985": 7667, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 8587, "numnum:count:POP1990": 6, "numnum:max:POP1990": 7654, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 8570, "numnum:count:POP1995": 6, "numnum:max:POP1995": 7908, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 8854, "numnum:count:POP2000": 6, "numnum:max:POP2000": 8225, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 9214, "numnum:count:POP2005": 6, "numnum:max:POP2005": 8505, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 9542, "numnum:count:POP2010": 6, "numnum:max:POP2010": 8567, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 9626, "numnum:count:POP2015": 6, "numnum:max:POP2015": 8607, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9705, "numnum:count:POP2020": 6, "numnum:max:POP2020": 8618, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 9795, "numnum:count:POP2025": 6, "numnum:max:POP2025": 8618, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 9875, "numnum:count:POP2050": 6, "numnum:max:POP2050": 8618, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 9950, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -55.195312, 5.790897 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 460, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 22, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 10.651997, "numnum:min:LATITUDE": 6.801974, "numnum:sum:LATITUDE": 27.954970000000004, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -58.167029, "numnum:min:LONGITUDE": -66.917037, "numnum:sum:LONGITUDE": -186.60109699999999, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 2985000, "numnum:min:POP_MAX": 264350, "numnum:sum:POP_MAX": 3544284, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1815679, "numnum:min:POP_MIN": 49031, "numnum:sum:POP_MIN": 2099727, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2764555, "numnum:min:POP_OTHER": 264350, "numnum:sum:POP_OTHER": 3447987, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 32, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 29, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3646738, "numnum:min:GEONAMEID": 3378644, "numnum:sum:GEONAMEID": 10599272, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2818500, "numnum:min:MAX_POP10": 264350, "numnum:sum:MAX_POP10": 3377784, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3351058, "numnum:min:MAX_POP20": 264350, "numnum:sum:MAX_POP20": 3910342, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3351241, "numnum:min:MAX_POP50": 264350, "numnum:sum:MAX_POP50": 3910525, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3351241, "numnum:min:MAX_POP300": 264350, "numnum:sum:MAX_POP300": 3910525, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 224, "numnum:min:MIN_AREAKM": 37, "numnum:sum:MIN_AREAKM": 373, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 370, "numnum:min:MAX_AREAKM": 37, "numnum:sum:MAX_AREAKM": 519, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 86, "numnum:min:MIN_AREAMI": 14, "numnum:sum:MIN_AREAMI": 143, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 143, "numnum:min:MAX_AREAMI": 14, "numnum:sum:MAX_AREAMI": 200, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 137, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 290, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 278, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 431, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 85, "numnum:min:MIN_PERMI": 27, "numnum:sum:MIN_PERMI": 179, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 172, "numnum:min:MAX_PERMI": 27, "numnum:sum:MAX_PERMI": 266, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -58.2, "numnum:min:MIN_BBXMIN": -67.133333, "numnum:sum:MIN_BBXMIN": -186.866666, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -58.2, "numnum:min:MAX_BBXMIN": -66.993057, "numnum:sum:MAX_BBXMIN": -186.72638999999999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -58.116667, "numnum:min:MIN_BBXMAX": -66.725, "numnum:sum:MIN_BBXMAX": -186.091667, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -58.116667, "numnum:min:MAX_BBXMAX": -66.725, "numnum:sum:MAX_BBXMAX": -186.091667, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 10.583333, "numnum:min:MIN_BBYMIN": 6.75, "numnum:sum:MIN_BBYMIN": 27.658333, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 10.583333, "numnum:min:MAX_BBYMIN": 6.75, "numnum:sum:MAX_BBYMIN": 27.741666000000003, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 10.666667, "numnum:min:MIN_BBYMAX": 6.833333, "numnum:sum:MIN_BBYMAX": 28.033671000000003, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 10.666667, "numnum:min:MAX_BBYMAX": 6.833333, "numnum:sum:MAX_BBYMAX": 28.041667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -58.153788, "numnum:min:MEAN_BBXC": -66.917919, "numnum:sum:MEAN_BBXC": -186.455072, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 10.638816, "numnum:min:MEAN_BBYC": 6.797348, "numnum:sum:MEAN_BBYC": 27.887836, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 25, "numnum:min:ADMIN1_COD": 5, "numnum:sum:ADMIN1_COD": 42, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1815679, "numnum:min:GN_POP": 49657, "numnum:sum:GN_POP": 2100353, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 920, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9078, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 582, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 582, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 10.49, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 10.49, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -66.89, "numnum:sum:UN_LONG": -66.89, "numnum:count:POP1950": 3, "numnum:max:POP1950": 694, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 694, "numnum:count:POP1955": 3, "numnum:max:POP1955": 955, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 955, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1316, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1316, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1657, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1657, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2060, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2060, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2342, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2342, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2575, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2575, "numnum:count:POP1985": 3, "numnum:max:POP1985": 2693, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2693, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2767, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2767, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2816, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2816, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2864, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2864, "numnum:count:POP2005": 3, "numnum:max:POP2005": 2930, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2930, "numnum:count:POP2010": 3, "numnum:max:POP2010": 2985, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2985, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3098, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3098, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3306, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3306, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3482, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3482, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3619, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3619, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -66.884766, 10.487812 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 610, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 38.722723, "numnum:min:LATITUDE": 33.599976, "numnum:sum:LATITUDE": 106.34799799999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -6.836131, "numnum:min:LONGITUDE": -9.144866, "numnum:sum:LONGITUDE": -23.597364, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3181000, "numnum:min:POP_MAX": 1705000, "numnum:sum:POP_MAX": 7698000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 3144909, "numnum:min:POP_MIN": 517802, "numnum:sum:POP_MIN": 5318464, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3718797, "numnum:min:POP_OTHER": 1795582, "numnum:sum:POP_OTHER": 7543728, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 35, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2553604, "numnum:min:GEONAMEID": 2267057, "numnum:sum:GEONAMEID": 7359136, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3796279, "numnum:min:MAX_POP10": 1832316, "numnum:sum:MAX_POP10": 7665719, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3796279, "numnum:min:MAX_POP20": 1831921, "numnum:sum:MAX_POP20": 7665324, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3796279, "numnum:min:MAX_POP50": 1831921, "numnum:sum:MAX_POP50": 7665324, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3796279, "numnum:min:MAX_POP300": 1831921, "numnum:sum:MAX_POP300": 7665324, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 506, "numnum:min:MIN_AREAKM": 428, "numnum:sum:MIN_AREAKM": 1370, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 508, "numnum:min:MAX_AREAKM": 428, "numnum:sum:MAX_AREAKM": 1372, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 196, "numnum:min:MIN_AREAMI": 165, "numnum:sum:MIN_AREAMI": 529, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 196, "numnum:min:MAX_AREAMI": 165, "numnum:sum:MAX_AREAMI": 529, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 475, "numnum:min:MIN_PERKM": 261, "numnum:sum:MIN_PERKM": 1091, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 475, "numnum:min:MAX_PERKM": 261, "numnum:sum:MAX_PERKM": 1096, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 295, "numnum:min:MIN_PERMI": 162, "numnum:sum:MIN_PERMI": 678, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 295, "numnum:min:MAX_PERMI": 162, "numnum:sum:MAX_PERMI": 681, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -7.116667, "numnum:min:MIN_BBXMIN": -9.466667, "numnum:sum:MIN_BBXMIN": -24.283334, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -7.116667, "numnum:min:MAX_BBXMIN": -9.466667, "numnum:sum:MAX_BBXMIN": -24.283334, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -6.725, "numnum:min:MIN_BBXMAX": -8.958333, "numnum:sum:MIN_BBXMAX": -23.008333, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -6.725, "numnum:min:MAX_BBXMAX": -8.958333, "numnum:sum:MAX_BBXMAX": -23.008333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 38.675, "numnum:min:MIN_BBYMIN": 33.391667, "numnum:sum:MIN_BBYMIN": 105.808334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 38.675, "numnum:min:MAX_BBYMIN": 33.391667, "numnum:sum:MAX_BBYMIN": 105.808334, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 39.008333, "numnum:min:MIN_BBYMAX": 33.733333, "numnum:sum:MIN_BBYMAX": 106.86666600000001, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 39.008333, "numnum:min:MAX_BBYMAX": 33.733333, "numnum:sum:MAX_BBYMAX": 106.86666600000001, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -6.87491, "numnum:min:MEAN_BBXC": -9.232769, "numnum:sum:MEAN_BBXC": -23.62619, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 38.783256, "numnum:min:MEAN_BBYC": 33.557664, "numnum:sum:MEAN_BBYC": 106.25376700000001, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 49, "numnum:min:ADMIN1_COD": 14, "numnum:sum:ADMIN1_COD": 108, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 3144909, "numnum:min:GN_POP": 517802, "numnum:sum:GN_POP": 5318464, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 56, "numnum:min:GTOPO30": 17, "numnum:sum:GTOPO30": 127, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 419, "numnum:min:UN_FID": 372, "numnum:sum:UN_FID": 1166, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 38.72, "numnum:min:UN_LAT": 33.6, "numnum:sum:UN_LAT": 106.32999999999999, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -6.83, "numnum:min:UN_LONG": -9.12, "numnum:sum:UN_LONG": -23.58, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1304, "numnum:min:POP1950": 145, "numnum:sum:POP1950": 2074, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1405, "numnum:min:POP1955": 184, "numnum:sum:POP1955": 2367, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1514, "numnum:min:POP1960": 233, "numnum:sum:POP1960": 2714, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1657, "numnum:min:POP1965": 339, "numnum:sum:POP1965": 3202, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1817, "numnum:min:POP1970": 494, "numnum:sum:POP1970": 3816, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2103, "numnum:min:POP1975": 641, "numnum:sum:POP1975": 4537, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2449, "numnum:min:POP1980": 808, "numnum:sum:POP1980": 5366, "numnum:count:POP1985": 3, "numnum:max:POP1985": 2518, "numnum:min:POP1985": 986, "numnum:sum:POP1985": 5910, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2682, "numnum:min:POP1990": 1174, "numnum:sum:POP1990": 6393, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2951, "numnum:min:POP1995": 1379, "numnum:sum:POP1995": 6930, "numnum:count:POP2000": 3, "numnum:max:POP2000": 3043, "numnum:min:POP2000": 1507, "numnum:sum:POP2000": 7222, "numnum:count:POP2005": 3, "numnum:max:POP2005": 3138, "numnum:min:POP2005": 1647, "numnum:sum:POP2005": 7547, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3181, "numnum:min:POP2010": 1705, "numnum:sum:POP2010": 7698, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3267, "numnum:min:POP2015": 1793, "numnum:sum:POP2015": 7950, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3475, "numnum:min:POP2020": 1938, "numnum:sum:POP2020": 8409, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3716, "numnum:min:POP2025": 2083, "numnum:sum:POP2025": 8857, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3949, "numnum:min:POP2050": 2222, "numnum:sum:POP2050": 9257, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.754083 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 15, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 39, "numnum:count:NATSCALE": 15, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 2690, "numnum:count:LABELRANK": 15, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 84, "numnum:count:DIFFASCII": 15, "numnum:max:DIFFASCII": 1, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 1, "numnum:count:ADM0CAP": 15, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 12, "numnum:count:CAPALT": 15, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 2, "numnum:count:WORLDCITY": 15, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 5, "numnum:count:MEGACITY": 15, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 7, "numnum:count:LATITUDE": 15, "numnum:max:LATITUDE": 64.150024, "numnum:min:LATITUDE": 5.83503, "numnum:sum:LATITUDE": 447.87314000000006, "numnum:count:LONGITUDE": 15, "numnum:max:LONGITUDE": -0.116722, "numnum:min:LONGITUDE": -55.167031, "numnum:sum:LONGITUDE": -222.771138, "numnum:count:CHANGED": 15, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 21, "numnum:count:NAMEDIFF": 15, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 15, "numnum:max:POP_MAX": 8567000, "numnum:min:POP_MAX": 500, "numnum:sum:POP_MAX": 27405906, "numnum:count:POP_MIN": 15, "numnum:max:POP_MIN": 7421209, "numnum:min:POP_MIN": 200, "numnum:sum:POP_MIN": 17922590, "numnum:count:POP_OTHER": 15, "numnum:max:POP_OTHER": 3718797, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 16437073, "numnum:count:RANK_MAX": 15, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 2, "numnum:sum:RANK_MAX": 153, "numnum:count:RANK_MIN": 15, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 1, "numnum:sum:RANK_MIN": 144, "numnum:count:GEONAMEID": 15, "numnum:max:GEONAMEID": 3675707, "numnum:min:GEONAMEID": -1, "numnum:sum:GEONAMEID": 38696987, "numnum:count:LS_MATCH": 15, "numnum:max:LS_MATCH": 2, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 16, "numnum:count:CHECKME": 15, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 15, "numnum:max:MAX_POP10": 7721282, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 24632537, "numnum:count:MAX_POP20": 15, "numnum:max:MAX_POP20": 8370578, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 25281081, "numnum:count:MAX_POP50": 15, "numnum:max:MAX_POP50": 10011551, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 26947786, "numnum:count:MAX_POP300": 15, "numnum:max:MAX_POP300": 10011551, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 26771421, "numnum:count:MAX_POP310": 15, "numnum:max:MAX_POP310": 10011551, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 14747666, "numnum:count:MAX_NATSCA": 15, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 0, "numnum:sum:MAX_NATSCA": 1950, "numnum:count:MIN_AREAKM": 15, "numnum:max:MIN_AREAKM": 1914, "numnum:min:MIN_AREAKM": 0, "numnum:sum:MIN_AREAKM": 4994, "numnum:count:MAX_AREAKM": 15, "numnum:max:MAX_AREAKM": 3198, "numnum:min:MAX_AREAKM": 0, "numnum:sum:MAX_AREAKM": 6326, "numnum:count:MIN_AREAMI": 15, "numnum:max:MIN_AREAMI": 739, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 1927, "numnum:count:MAX_AREAMI": 15, "numnum:max:MAX_AREAMI": 1235, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 2441, "numnum:count:MIN_PERKM": 15, "numnum:max:MIN_PERKM": 994, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 3554, "numnum:count:MAX_PERKM": 15, "numnum:max:MAX_PERKM": 2440, "numnum:min:MAX_PERKM": 0, "numnum:sum:MAX_PERKM": 5073, "numnum:count:MIN_PERMI": 15, "numnum:max:MIN_PERMI": 618, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 2208, "numnum:count:MAX_PERMI": 15, "numnum:max:MAX_PERMI": 1516, "numnum:min:MAX_PERMI": 0, "numnum:sum:MAX_PERMI": 3152, "numnum:count:MIN_BBXMIN": 15, "numnum:max:MIN_BBXMIN": 0, "numnum:min:MIN_BBXMIN": -55.283333, "numnum:sum:MIN_BBXMIN": -215.79999999999999, "numnum:count:MAX_BBXMIN": 15, "numnum:max:MAX_BBXMIN": 0, "numnum:min:MAX_BBXMIN": -55.283333, "numnum:sum:MAX_BBXMIN": -215.25519899999999, "numnum:count:MIN_BBXMAX": 15, "numnum:max:MIN_BBXMAX": 0.307108, "numnum:min:MIN_BBXMAX": -55.107566, "numnum:sum:MIN_BBXMAX": -210.892124, "numnum:count:MAX_BBXMAX": 15, "numnum:max:MAX_BBXMAX": 0.816667, "numnum:min:MAX_BBXMAX": -55.1, "numnum:sum:MAX_BBXMAX": -210.299999, "numnum:count:MIN_BBYMIN": 15, "numnum:max:MIN_BBYMIN": 64.05, "numnum:min:MIN_BBYMIN": 0, "numnum:sum:MIN_BBYMIN": 420.116667, "numnum:count:MAX_BBYMIN": 15, "numnum:max:MAX_BBYMIN": 64.05, "numnum:min:MAX_BBYMIN": 0, "numnum:sum:MAX_BBYMIN": 420.19166699999996, "numnum:count:MIN_BBYMAX": 15, "numnum:max:MIN_BBYMAX": 64.166667, "numnum:min:MIN_BBYMAX": 0, "numnum:sum:MIN_BBYMAX": 423.308333, "numnum:count:MAX_BBYMAX": 15, "numnum:max:MAX_BBYMAX": 64.166667, "numnum:min:MAX_BBYMAX": 0, "numnum:sum:MAX_BBYMAX": 423.308333, "numnum:count:MEAN_BBXC": 15, "numnum:max:MEAN_BBXC": 0, "numnum:min:MEAN_BBXC": -55.188737, "numnum:sum:MEAN_BBXC": -213.102876, "numnum:count:MEAN_BBYC": 15, "numnum:max:MEAN_BBYC": 64.116125, "numnum:min:MEAN_BBYC": 0, "numnum:sum:MEAN_BBYC": 421.68698300000008, "numnum:count:COMPARE": 15, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 15, "numnum:max:ADMIN1_COD": 49, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 222, "numnum:count:GN_POP": 15, "numnum:max:GN_POP": 7421209, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 18013665, "numnum:count:ELEVATION": 15, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 15, "numnum:max:GTOPO30": 2400, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -27330, "numnum:count:UN_FID": 15, "numnum:max:UN_FID": 519, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 2898, "numnum:count:UN_LAT": 15, "numnum:max:UN_LAT": 53.34, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 266.27, "numnum:count:UN_LONG": 15, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -17.45, "numnum:sum:UN_LONG": -51.14, "numnum:count:POP1950": 15, "numnum:max:POP1950": 8361, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 12972, "numnum:count:POP1955": 15, "numnum:max:POP1955": 8278, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 13545, "numnum:count:POP1960": 15, "numnum:max:POP1960": 8196, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 14322, "numnum:count:POP1965": 15, "numnum:max:POP1965": 7869, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 15165, "numnum:count:POP1970": 15, "numnum:max:POP1970": 7509, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 16227, "numnum:count:POP1975": 15, "numnum:max:POP1975": 7546, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 17588, "numnum:count:POP1980": 15, "numnum:max:POP1980": 7660, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 19139, "numnum:count:POP1985": 15, "numnum:max:POP1985": 7667, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 20014, "numnum:count:POP1990": 15, "numnum:max:POP1990": 7654, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 20782, "numnum:count:POP1995": 15, "numnum:max:POP1995": 7908, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 22173, "numnum:count:POP2000": 15, "numnum:max:POP2000": 8225, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 23510, "numnum:count:POP2005": 15, "numnum:max:POP2005": 8505, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 24937, "numnum:count:POP2010": 15, "numnum:max:POP2010": 8567, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 25495, "numnum:count:POP2015": 15, "numnum:max:POP2015": 8607, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 26275, "numnum:count:POP2020": 15, "numnum:max:POP2020": 8618, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 27397, "numnum:count:POP2025": 15, "numnum:max:POP2025": 8618, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 28392, "numnum:count:POP2050": 15, "numnum:max:POP2050": 8618, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 29367, "accum": 15, "numnum:count:accum2": 15, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 15, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -55.195312, 5.790897 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 10, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 30, "numnum:count:NATSCALE": 10, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 1340, "numnum:count:LABELRANK": 10, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 64, "numnum:count:DIFFASCII": 10, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 10, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 9, "numnum:count:CAPALT": 10, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 10, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 10, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 6, "numnum:count:LATITUDE": 10, "numnum:max:LATITUDE": 40.400026, "numnum:min:LATITUDE": 8.470011, "numnum:sum:LATITUDE": 167.662217, "numnum:count:LONGITUDE": 10, "numnum:max:LONGITUDE": -1.524724, "numnum:min:LONGITUDE": -17.47313, "numnum:sum:LONGITUDE": -115.41362000000001, "numnum:count:CHANGED": 10, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 13, "numnum:count:NAMEDIFF": 10, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 10, "numnum:max:POP_MAX": 5567000, "numnum:min:POP_MAX": 500, "numnum:sum:POP_MAX": 14324077, "numnum:count:POP_MIN": 10, "numnum:max:POP_MIN": 2476400, "numnum:min:POP_MIN": 200, "numnum:sum:POP_MIN": 7251560, "numnum:count:POP_OTHER": 10, "numnum:max:POP_OTHER": 3673427, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 12458291, "numnum:count:RANK_MAX": 10, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 2, "numnum:sum:RANK_MAX": 102, "numnum:count:RANK_MIN": 10, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 1, "numnum:sum:RANK_MIN": 90, "numnum:count:GEONAMEID": 10, "numnum:max:GEONAMEID": 3675707, "numnum:min:GEONAMEID": -1, "numnum:sum:GEONAMEID": 22744040, "numnum:count:LS_MATCH": 10, "numnum:max:LS_MATCH": 2, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 11, "numnum:count:CHECKME": 10, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 10, "numnum:max:MAX_POP10": 3767139, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 12321504, "numnum:count:MAX_POP20": 10, "numnum:max:MAX_POP20": 3767139, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 12321147, "numnum:count:MAX_POP50": 10, "numnum:max:MAX_POP50": 3767139, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 12346879, "numnum:count:MAX_POP300": 10, "numnum:max:MAX_POP300": 3767139, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 12346879, "numnum:count:MAX_POP310": 10, "numnum:max:MAX_POP310": 3767139, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3767139, "numnum:count:MAX_NATSCA": 10, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 0, "numnum:sum:MAX_NATSCA": 1100, "numnum:count:MIN_AREAKM": 10, "numnum:max:MIN_AREAKM": 690, "numnum:min:MIN_AREAKM": 0, "numnum:sum:MIN_AREAKM": 1791, "numnum:count:MAX_AREAKM": 10, "numnum:max:MAX_AREAKM": 690, "numnum:min:MAX_AREAKM": 0, "numnum:sum:MAX_AREAKM": 1836, "numnum:count:MIN_AREAMI": 10, "numnum:max:MIN_AREAMI": 266, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 691, "numnum:count:MAX_AREAMI": 10, "numnum:max:MAX_AREAMI": 266, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 709, "numnum:count:MIN_PERKM": 10, "numnum:max:MIN_PERKM": 558, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 1394, "numnum:count:MAX_PERKM": 10, "numnum:max:MAX_PERKM": 558, "numnum:min:MAX_PERKM": 0, "numnum:sum:MAX_PERKM": 1460, "numnum:count:MIN_PERMI": 10, "numnum:max:MIN_PERMI": 347, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 866, "numnum:count:MAX_PERMI": 10, "numnum:max:MAX_PERMI": 347, "numnum:min:MAX_PERMI": 0, "numnum:sum:MAX_PERMI": 907, "numnum:count:MIN_BBXMIN": 10, "numnum:max:MIN_BBXMIN": 0, "numnum:min:MIN_BBXMIN": -17.533333, "numnum:sum:MIN_BBXMIN": -106.53333300000002, "numnum:count:MAX_BBXMIN": 10, "numnum:max:MAX_BBXMIN": 0, "numnum:min:MAX_BBXMIN": -17.533333, "numnum:sum:MAX_BBXMIN": -106.53333300000002, "numnum:count:MIN_BBXMAX": 10, "numnum:max:MIN_BBXMAX": 0, "numnum:min:MIN_BBXMAX": -17.2, "numnum:sum:MIN_BBXMAX": -104.61666600000001, "numnum:count:MAX_BBXMAX": 10, "numnum:max:MAX_BBXMAX": 0, "numnum:min:MAX_BBXMAX": -17.125, "numnum:sum:MAX_BBXMAX": -104.541666, "numnum:count:MIN_BBYMIN": 10, "numnum:max:MIN_BBYMIN": 40.225, "numnum:min:MIN_BBYMIN": 0, "numnum:sum:MIN_BBYMIN": 140.883333, "numnum:count:MAX_BBYMIN": 10, "numnum:max:MAX_BBYMIN": 40.225, "numnum:min:MAX_BBYMIN": 0, "numnum:sum:MAX_BBYMIN": 140.883333, "numnum:count:MIN_BBYMAX": 10, "numnum:max:MIN_BBYMAX": 40.616667, "numnum:min:MIN_BBYMAX": 0, "numnum:sum:MIN_BBYMAX": 142.466667, "numnum:count:MAX_BBYMAX": 10, "numnum:max:MAX_BBYMAX": 40.616667, "numnum:min:MAX_BBYMAX": 0, "numnum:sum:MAX_BBYMAX": 142.466667, "numnum:count:MEAN_BBXC": 10, "numnum:max:MEAN_BBXC": 0, "numnum:min:MEAN_BBXC": -17.343779, "numnum:sum:MEAN_BBXC": -105.57515899999999, "numnum:count:MEAN_BBYC": 10, "numnum:max:MEAN_BBYC": 40.425498, "numnum:min:MEAN_BBYC": 0, "numnum:sum:MEAN_BBYC": 141.67497899999999, "numnum:count:COMPARE": 10, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 10, "numnum:max:ADMIN1_COD": 53, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 114, "numnum:count:GN_POP": 10, "numnum:max:GN_POP": 2476400, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 7775608, "numnum:count:ELEVATION": 10, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 10, "numnum:max:GTOPO30": 2400, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -16672, "numnum:count:UN_FID": 10, "numnum:max:UN_FID": 578, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 2494, "numnum:count:UN_LAT": 10, "numnum:max:UN_LAT": 40.44, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 98.27000000000001, "numnum:count:UN_LONG": 10, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -17.45, "numnum:sum:UN_LONG": -57.69000000000001, "numnum:count:POP1950": 10, "numnum:max:POP1950": 1700, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2156, "numnum:count:POP1955": 10, "numnum:max:POP1955": 2018, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2573, "numnum:count:POP1960": 10, "numnum:max:POP1960": 2392, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 3171, "numnum:count:POP1965": 10, "numnum:max:POP1965": 2898, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3967, "numnum:count:POP1970": 10, "numnum:max:POP1970": 3521, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 5058, "numnum:count:POP1975": 10, "numnum:max:POP1975": 3890, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5998, "numnum:count:POP1980": 10, "numnum:max:POP1980": 4253, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 6975, "numnum:count:POP1985": 10, "numnum:max:POP1985": 4355, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 7775, "numnum:count:POP1990": 10, "numnum:max:POP1990": 4414, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 8526, "numnum:count:POP1995": 10, "numnum:max:POP1995": 4701, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9614, "numnum:count:POP2000": 10, "numnum:max:POP2000": 5045, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 10919, "numnum:count:POP2005": 10, "numnum:max:POP2005": 5414, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 12454, "numnum:count:POP2010": 10, "numnum:max:POP2010": 5567, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 13135, "numnum:count:POP2015": 10, "numnum:max:POP2015": 5764, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 14191, "numnum:count:POP2020": 10, "numnum:max:POP2020": 5918, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 16012, "numnum:count:POP2025": 10, "numnum:max:POP2025": 5934, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 17997, "numnum:count:POP2050": 10, "numnum:max:POP2050": 5935, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 20268, "accum": 10, "numnum:count:accum2": 10, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 10, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.380028 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 14, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 640, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 38, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 12.650015, "numnum:min:LATITUDE": 6.310557, "numnum:sum:LATITUDE": 49.332422, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": -1.524724, "numnum:min:LONGITUDE": -13.680235, "numnum:sum:LONGITUDE": -47.243966, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 1494000, "numnum:min:POP_MAX": 827000, "numnum:sum:POP_MAX": 6005000, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 1494000, "numnum:min:POP_MIN": 13768, "numnum:sum:POP_MIN": 4426168, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 1498020, "numnum:min:POP_OTHER": 713874, "numnum:sum:POP_OTHER": 5394357, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 59, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 52, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 2460596, "numnum:min:GEONAMEID": 2274895, "numnum:sum:GEONAMEID": 11923774, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 1504217, "numnum:min:MAX_POP10": 785662, "numnum:sum:MAX_POP10": 5516211, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 1504217, "numnum:min:MAX_POP20": 781295, "numnum:sum:MAX_POP20": 5511844, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 1504217, "numnum:min:MAX_POP50": 781295, "numnum:sum:MAX_POP50": 5511844, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 1504217, "numnum:min:MAX_POP300": 781295, "numnum:sum:MAX_POP300": 5511844, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 236, "numnum:min:MIN_AREAKM": 77, "numnum:sum:MIN_AREAKM": 810, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 236, "numnum:min:MAX_AREAKM": 77, "numnum:sum:MAX_AREAKM": 821, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 91, "numnum:min:MIN_AREAMI": 30, "numnum:sum:MIN_AREAMI": 312, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 91, "numnum:min:MAX_AREAMI": 30, "numnum:sum:MAX_AREAMI": 317, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 164, "numnum:min:MIN_PERKM": 81, "numnum:sum:MIN_PERKM": 607, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 184, "numnum:min:MAX_PERKM": 81, "numnum:sum:MAX_PERKM": 627, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 102, "numnum:min:MIN_PERMI": 50, "numnum:sum:MIN_PERMI": 377, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 115, "numnum:min:MAX_PERMI": 50, "numnum:sum:MAX_PERMI": 390, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": -1.616667, "numnum:min:MIN_BBXMIN": -13.725, "numnum:sum:MIN_BBXMIN": -47.516667, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": -1.616667, "numnum:min:MAX_BBXMIN": -13.725, "numnum:sum:MAX_BBXMIN": -47.516667, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": -1.433333, "numnum:min:MIN_BBXMAX": -13.475, "numnum:sum:MIN_BBXMAX": -46.624998999999998, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": -1.433333, "numnum:min:MAX_BBXMAX": -13.475, "numnum:sum:MAX_BBXMAX": -46.624998999999998, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 12.541667, "numnum:min:MIN_BBYMIN": 6.225, "numnum:sum:MIN_BBYMIN": 48.95, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 12.541667, "numnum:min:MAX_BBYMIN": 6.225, "numnum:sum:MAX_BBYMIN": 48.95, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 12.716667, "numnum:min:MIN_BBYMAX": 6.4, "numnum:sum:MIN_BBYMAX": 49.875, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 12.716667, "numnum:min:MAX_BBYMAX": 6.4, "numnum:sum:MAX_BBYMAX": 49.875, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": -1.521746, "numnum:min:MEAN_BBXC": -13.588647, "numnum:sum:MEAN_BBXC": -47.062817, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 12.626173, "numnum:min:MEAN_BBYC": 6.317829, "numnum:sum:MEAN_BBYC": 49.40567299999999, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 53, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 76, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 1767200, "numnum:min:GN_POP": 13768, "numnum:sum:GN_POP": 5104278, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 350, "numnum:min:GTOPO30": 15, "numnum:sum:GTOPO30": 937, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 578, "numnum:min:UN_FID": 207, "numnum:sum:UN_FID": 1925, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 12.65, "numnum:min:UN_LAT": 6.3, "numnum:sum:UN_LAT": 49.45, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": -1.67, "numnum:min:UN_LONG": -13.67, "numnum:sum:UN_LONG": -47.339999999999999, "numnum:count:POP1950": 5, "numnum:max:POP1950": 92, "numnum:min:POP1950": 15, "numnum:sum:POP1950": 260, "numnum:count:POP1955": 5, "numnum:max:POP1955": 111, "numnum:min:POP1955": 34, "numnum:sum:POP1955": 354, "numnum:count:POP1960": 5, "numnum:max:POP1960": 130, "numnum:min:POP1960": 59, "numnum:sum:POP1960": 495, "numnum:count:POP1965": 5, "numnum:max:POP1965": 208, "numnum:min:POP1965": 82, "numnum:sum:POP1965": 717, "numnum:count:POP1970": 5, "numnum:max:POP1970": 388, "numnum:min:POP1970": 111, "numnum:sum:POP1970": 1091, "numnum:count:POP1975": 5, "numnum:max:POP1975": 530, "numnum:min:POP1975": 149, "numnum:sum:POP1975": 1552, "numnum:count:POP1980": 5, "numnum:max:POP1980": 658, "numnum:min:POP1980": 257, "numnum:sum:POP1980": 2090, "numnum:count:POP1985": 5, "numnum:max:POP1985": 766, "numnum:min:POP1985": 424, "numnum:sum:POP1985": 2772, "numnum:count:POP1990": 5, "numnum:max:POP1990": 1042, "numnum:min:POP1990": 529, "numnum:sum:POP1990": 3749, "numnum:count:POP1995": 5, "numnum:max:POP1995": 1045, "numnum:min:POP1995": 464, "numnum:sum:POP1995": 3689, "numnum:count:POP2000": 5, "numnum:max:POP2000": 1219, "numnum:min:POP2000": 688, "numnum:sum:POP2000": 4681, "numnum:count:POP2005": 5, "numnum:max:POP2005": 1409, "numnum:min:POP2005": 785, "numnum:sum:POP2005": 5746, "numnum:count:POP2010": 5, "numnum:max:POP2010": 1494, "numnum:min:POP2010": 827, "numnum:sum:POP2010": 6005, "numnum:count:POP2015": 5, "numnum:max:POP2015": 1708, "numnum:min:POP2015": 894, "numnum:sum:POP2015": 6756, "numnum:count:POP2020": 5, "numnum:max:POP2020": 2130, "numnum:min:POP2020": 1029, "numnum:sum:POP2020": 8276, "numnum:count:POP2025": 5, "numnum:max:POP2025": 2633, "numnum:min:POP2025": 1200, "numnum:sum:POP2025": 10090, "numnum:count:POP2050": 5, "numnum:max:POP2050": 3214, "numnum:min:POP2050": 1406, "numnum:sum:POP2050": 12191, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 15, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 930, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 30, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 6.818381, "numnum:min:LATITUDE": -21.138512, "numnum:sum:LATITUDE": -10.981086999999999, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": -0.216716, "numnum:min:LONGITUDE": -175.220564, "numnum:sum:LONGITUDE": -367.296225, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 22, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 3802000, "numnum:min:POP_MAX": 42620, "numnum:sum:POP_MAX": 7275035, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 3190395, "numnum:min:POP_MIN": 23658, "numnum:sum:POP_MIN": 6195217, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 3181637, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 6571543, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 61, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 58, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 4032402, "numnum:min:GEONAMEID": 2274895, "numnum:sum:GEONAMEID": 16876487, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 3190395, "numnum:min:MAX_POP10": 42620, "numnum:sum:MAX_POP10": 6646211, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 3190395, "numnum:min:MAX_POP20": 42620, "numnum:sum:MAX_POP20": 7223770, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 3190395, "numnum:min:MAX_POP50": 42620, "numnum:sum:MAX_POP50": 7223770, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 3190395, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 7017271, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 550, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 474, "numnum:min:MIN_AREAKM": 15, "numnum:sum:MIN_AREAKM": 1171, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 636, "numnum:min:MAX_AREAKM": 15, "numnum:sum:MAX_AREAKM": 1375, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 183, "numnum:min:MIN_AREAMI": 6, "numnum:sum:MIN_AREAMI": 452, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 245, "numnum:min:MAX_AREAMI": 6, "numnum:sum:MAX_AREAMI": 531, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 304, "numnum:min:MIN_PERKM": 27, "numnum:sum:MIN_PERKM": 842, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 345, "numnum:min:MAX_PERKM": 27, "numnum:sum:MAX_PERKM": 963, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 189, "numnum:min:MIN_PERMI": 17, "numnum:sum:MIN_PERMI": 524, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 214, "numnum:min:MAX_PERMI": 17, "numnum:sum:MAX_PERMI": 599, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": -0.35, "numnum:min:MIN_BBXMIN": -175.233333, "numnum:sum:MIN_BBXMIN": -367.72499999999999, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": -0.35, "numnum:min:MAX_BBXMIN": -175.233333, "numnum:sum:MAX_BBXMIN": -367.72499999999999, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": -0.098725, "numnum:min:MIN_BBXMAX": -175.166667, "numnum:sum:MIN_BBXMAX": -366.723726, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 0.033333, "numnum:min:MAX_BBXMAX": -175.166667, "numnum:sum:MAX_BBXMAX": -366.591668, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 6.783333, "numnum:min:MIN_BBYMIN": -21.166667, "numnum:sum:MIN_BBYMIN": -11.266667000000002, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 6.783333, "numnum:min:MAX_BBYMIN": -21.166667, "numnum:sum:MAX_BBYMIN": -11.266667000000002, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 6.891667, "numnum:min:MIN_BBYMAX": -21.125, "numnum:sum:MIN_BBYMAX": -10.308333000000001, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 6.891667, "numnum:min:MAX_BBYMAX": -21.125, "numnum:sum:MAX_BBYMAX": -10.308333000000001, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": -0.188893, "numnum:min:MEAN_BBXC": -175.206798, "numnum:sum:MEAN_BBXC": -367.195285, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 6.831582, "numnum:min:MEAN_BBYC": -21.142325, "numnum:sum:MEAN_BBYC": -10.819466, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 82, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 204, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 3677115, "numnum:min:GN_POP": 6940, "numnum:sum:GN_POP": 6803773, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 1561, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8010, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 342, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 848, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 6.3, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 17.17, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -10.79, "numnum:sum:UN_LONG": -15.009999999999998, "numnum:count:POP1950": 6, "numnum:max:POP1950": 177, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 257, "numnum:count:POP1955": 6, "numnum:max:POP1955": 265, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 424, "numnum:count:POP1960": 6, "numnum:max:POP1960": 393, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 660, "numnum:count:POP1965": 6, "numnum:max:POP1965": 499, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 930, "numnum:count:POP1970": 6, "numnum:max:POP1970": 631, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1343, "numnum:count:POP1975": 6, "numnum:max:POP1975": 966, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1930, "numnum:count:POP1980": 6, "numnum:max:POP1980": 1384, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2572, "numnum:count:POP1985": 6, "numnum:max:POP1985": 1716, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3243, "numnum:count:POP1990": 6, "numnum:max:POP1990": 2102, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 4341, "numnum:count:POP1995": 6, "numnum:max:POP1995": 2535, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 4414, "numnum:count:POP2000": 6, "numnum:max:POP2000": 3032, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 5542, "numnum:count:POP2005": 6, "numnum:max:POP2005": 3564, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6688, "numnum:count:POP2010": 6, "numnum:max:POP2010": 3802, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 6964, "numnum:count:POP2015": 6, "numnum:max:POP2015": 4175, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 7692, "numnum:count:POP2020": 6, "numnum:max:POP2020": 4810, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 8955, "numnum:count:POP2025": 6, "numnum:max:POP2025": 5432, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 10226, "numnum:count:POP2050": 6, "numnum:max:POP2050": 6031, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 11496, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499, "MAX_POP20": 206499, "MAX_POP50": 206499, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 59, "MAX_AREAKM": 59, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 52, "MAX_PERKM": 52, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 194530, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 13, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 730, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 22, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 6.818381, "numnum:min:LATITUDE": -21.138512, "numnum:sum:LATITUDE": -17.291643999999999, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": -0.216716, "numnum:min:LONGITUDE": -175.220564, "numnum:sum:LONGITUDE": -356.491473, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 22, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 3802000, "numnum:min:POP_MAX": 42620, "numnum:sum:POP_MAX": 6234035, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 3190395, "numnum:min:POP_MIN": 23658, "numnum:sum:POP_MIN": 5409555, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 3181637, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 5765127, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 49, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 47, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 4032402, "numnum:min:GEONAMEID": 2279755, "numnum:sum:GEONAMEID": 14601592, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 3190395, "numnum:min:MAX_POP10": 42620, "numnum:sum:MAX_POP10": 5860549, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 3190395, "numnum:min:MAX_POP20": 42620, "numnum:sum:MAX_POP20": 6442475, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 3190395, "numnum:min:MAX_POP50": 42620, "numnum:sum:MAX_POP50": 6442475, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 3190395, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 6235976, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 450, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 474, "numnum:min:MIN_AREAKM": 15, "numnum:sum:MIN_AREAKM": 1030, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 636, "numnum:min:MAX_AREAKM": 15, "numnum:sum:MAX_AREAKM": 1223, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 183, "numnum:min:MIN_AREAMI": 6, "numnum:sum:MIN_AREAMI": 398, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 245, "numnum:min:MAX_AREAMI": 6, "numnum:sum:MAX_AREAMI": 472, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 304, "numnum:min:MIN_PERKM": 27, "numnum:sum:MIN_PERKM": 678, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 345, "numnum:min:MAX_PERKM": 27, "numnum:sum:MAX_PERKM": 779, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 189, "numnum:min:MIN_PERMI": 17, "numnum:sum:MIN_PERMI": 422, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 214, "numnum:min:MAX_PERMI": 17, "numnum:sum:MAX_PERMI": 484, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": -0.35, "numnum:min:MIN_BBXMIN": -175.233333, "numnum:sum:MIN_BBXMIN": -356.90833299999999, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": -0.35, "numnum:min:MAX_BBXMIN": -175.233333, "numnum:sum:MAX_BBXMIN": -356.90833299999999, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": -0.098725, "numnum:min:MIN_BBXMAX": -175.166667, "numnum:sum:MIN_BBXMAX": -356.065393, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 0.033333, "numnum:min:MAX_BBXMAX": -175.166667, "numnum:sum:MAX_BBXMAX": -355.933335, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 6.783333, "numnum:min:MIN_BBYMIN": -21.166667, "numnum:sum:MIN_BBYMIN": -17.491667000000004, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 6.783333, "numnum:min:MAX_BBYMIN": -21.166667, "numnum:sum:MAX_BBYMIN": -17.491667000000004, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 6.891667, "numnum:min:MIN_BBYMAX": -21.125, "numnum:sum:MIN_BBYMAX": -16.708333, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 6.891667, "numnum:min:MAX_BBYMAX": -21.125, "numnum:sum:MAX_BBYMAX": -16.708333, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": -0.188893, "numnum:min:MEAN_BBXC": -175.206798, "numnum:sum:MEAN_BBXC": -356.460362, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 6.831582, "numnum:min:MEAN_BBYC": -21.142325, "numnum:sum:MEAN_BBYC": -17.137295, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 82, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 190, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 3677115, "numnum:min:GN_POP": 6940, "numnum:sum:GN_POP": 5864249, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 1561, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8040, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 310, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 506, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 5.55, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 10.870000000000001, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -4.02, "numnum:sum:UN_LONG": -4.22, "numnum:count:POP1950": 5, "numnum:max:POP1950": 177, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 242, "numnum:count:POP1955": 5, "numnum:max:POP1955": 265, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 390, "numnum:count:POP1960": 5, "numnum:max:POP1960": 393, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 585, "numnum:count:POP1965": 5, "numnum:max:POP1965": 499, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 809, "numnum:count:POP1970": 5, "numnum:max:POP1970": 631, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1179, "numnum:count:POP1975": 5, "numnum:max:POP1975": 966, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1704, "numnum:count:POP1980": 5, "numnum:max:POP1980": 1384, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2247, "numnum:count:POP1985": 5, "numnum:max:POP1985": 1716, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2729, "numnum:count:POP1990": 5, "numnum:max:POP1990": 2102, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3299, "numnum:count:POP1995": 5, "numnum:max:POP1995": 2535, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3950, "numnum:count:POP2000": 5, "numnum:max:POP2000": 3032, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 4706, "numnum:count:POP2005": 5, "numnum:max:POP2005": 3564, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 5548, "numnum:count:POP2010": 5, "numnum:max:POP2010": 3802, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 5923, "numnum:count:POP2015": 5, "numnum:max:POP2015": 4175, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 6507, "numnum:count:POP2020": 5, "numnum:max:POP2020": 4810, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 7498, "numnum:count:POP2025": 5, "numnum:max:POP2025": 5432, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 8473, "numnum:count:POP2050": 5, "numnum:max:POP2050": 6031, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 9413, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.839170 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 520, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 18, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -0.214988, "numnum:min:LATITUDE": -16.497974, "numnum:sum:LATITUDE": -28.760975, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -68.149985, "numnum:min:LONGITUDE": -78.500051, "numnum:sum:LONGITUDE": -223.70009800000003, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 8012000, "numnum:min:POP_MAX": 1590000, "numnum:sum:POP_MAX": 11303000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 6758234, "numnum:min:POP_MIN": 812799, "numnum:sum:POP_MIN": 8970847, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 6068380, "numnum:min:POP_OTHER": 4400, "numnum:sum:POP_OTHER": 7508308, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 37, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 36, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3936456, "numnum:min:GEONAMEID": 3652462, "numnum:sum:GEONAMEID": 11500843, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 6758234, "numnum:min:MAX_POP10": 1472051, "numnum:sum:MAX_POP10": 9820767, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 7092933, "numnum:min:MAX_POP20": 1590482, "numnum:sum:MAX_POP20": 10575701, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 7115614, "numnum:min:MAX_POP50": 1590482, "numnum:sum:MAX_POP50": 10598382, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 7115806, "numnum:min:MAX_POP300": 1590482, "numnum:sum:MAX_POP300": 10598574, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 724, "numnum:min:MIN_AREAKM": 181, "numnum:sum:MIN_AREAKM": 1239, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 790, "numnum:min:MAX_AREAKM": 181, "numnum:sum:MAX_AREAKM": 1467, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 279, "numnum:min:MIN_AREAMI": 70, "numnum:sum:MIN_AREAMI": 478, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 305, "numnum:min:MAX_AREAMI": 70, "numnum:sum:MAX_AREAMI": 566, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 315, "numnum:min:MIN_PERKM": 121, "numnum:sum:MIN_PERKM": 669, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 384, "numnum:min:MAX_PERKM": 121, "numnum:sum:MAX_PERKM": 864, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 196, "numnum:min:MIN_PERMI": 75, "numnum:sum:MIN_PERMI": 416, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 239, "numnum:min:MAX_PERMI": 75, "numnum:sum:MAX_PERMI": 537, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -68.258333, "numnum:min:MIN_BBXMIN": -78.591667, "numnum:sum:MIN_BBXMIN": -224.01666699999999, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -68.258333, "numnum:min:MAX_BBXMIN": -78.591667, "numnum:sum:MAX_BBXMIN": -224.00316099999999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -68.05, "numnum:min:MIN_BBXMAX": -78.291667, "numnum:sum:MIN_BBXMAX": -223.191667, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -68.05, "numnum:min:MAX_BBXMAX": -78.291667, "numnum:sum:MAX_BBXMAX": -223.175, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -0.391667, "numnum:min:MIN_BBYMIN": -16.575, "numnum:sum:MIN_BBYMIN": -29.283334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -0.30257, "numnum:min:MAX_BBYMIN": -16.575, "numnum:sum:MAX_BBYMIN": -29.159371, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 0.025, "numnum:min:MIN_BBYMAX": -16.433333, "numnum:sum:MIN_BBYMAX": -28.216666, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 0.025, "numnum:min:MAX_BBYMAX": -16.433333, "numnum:sum:MAX_BBYMAX": -28.216666, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -68.157765, "numnum:min:MEAN_BBXC": -78.460061, "numnum:sum:MEAN_BBXC": -223.62802499999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -0.198438, "numnum:min:MEAN_BBYC": -16.506439, "numnum:sum:MEAN_BBYC": -28.746350999999998, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 18, "numnum:min:ADMIN1_COD": 4, "numnum:sum:ADMIN1_COD": 37, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 7737002, "numnum:min:GN_POP": 812799, "numnum:sum:GN_POP": 9949615, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 3829, "numnum:min:GTOPO30": 108, "numnum:sum:GTOPO30": 6701, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 440, "numnum:min:UN_FID": 178, "numnum:sum:UN_FID": 1029, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 24.15, "numnum:min:UN_LAT": -12.08, "numnum:sum:UN_LAT": 11.849999999999998, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -77.04, "numnum:min:UN_LONG": -110.3, "numnum:sum:UN_LONG": -265.86, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1066, "numnum:min:POP1950": 206, "numnum:sum:POP1950": 1591, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1368, "numnum:min:POP1955": 257, "numnum:sum:POP1955": 1999, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1756, "numnum:min:POP1960": 319, "numnum:sum:POP1960": 2513, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2284, "numnum:min:POP1965": 399, "numnum:sum:POP1965": 3195, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2980, "numnum:min:POP1970": 501, "numnum:sum:POP1970": 4081, "numnum:count:POP1975": 3, "numnum:max:POP1975": 3696, "numnum:min:POP1975": 628, "numnum:sum:POP1975": 5027, "numnum:count:POP1980": 3, "numnum:max:POP1980": 4438, "numnum:min:POP1980": 780, "numnum:sum:POP1980": 6027, "numnum:count:POP1985": 3, "numnum:max:POP1985": 5116, "numnum:min:POP1985": 927, "numnum:sum:POP1985": 6979, "numnum:count:POP1990": 3, "numnum:max:POP1990": 5837, "numnum:min:POP1990": 1062, "numnum:sum:POP1990": 7987, "numnum:count:POP1995": 3, "numnum:max:POP1995": 6537, "numnum:min:POP1995": 1217, "numnum:sum:POP1995": 9021, "numnum:count:POP2000": 3, "numnum:max:POP2000": 7116, "numnum:min:POP2000": 1357, "numnum:sum:POP2000": 9863, "numnum:count:POP2005": 3, "numnum:max:POP2005": 7747, "numnum:min:POP2005": 1527, "numnum:sum:POP2005": 10867, "numnum:count:POP2010": 3, "numnum:max:POP2010": 8012, "numnum:min:POP2010": 1590, "numnum:sum:POP2010": 11303, "numnum:count:POP2015": 3, "numnum:max:POP2015": 8375, "numnum:min:POP2015": 1692, "numnum:sum:POP2015": 11913, "numnum:count:POP2020": 3, "numnum:max:POP2020": 8857, "numnum:min:POP2020": 1864, "numnum:sum:POP2020": 12756, "numnum:count:POP2025": 3, "numnum:max:POP2025": 9251, "numnum:min:POP2025": 2027, "numnum:sum:POP2025": 13467, "numnum:count:POP2050": 3, "numnum:max:POP2050": 9600, "numnum:min:POP2050": 2178, "numnum:sum:POP2050": 14094, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.175781 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 15, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1540, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 31, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 6, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": -0.214988, "numnum:min:LATITUDE": -33.450014, "numnum:sum:LATITUDE": -130.083064, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": -47.916052, "numnum:min:LONGITUDE": -78.500051, "numnum:sum:LONGITUDE": -479.163721, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 18, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 8012000, "numnum:min:POP_MAX": 224838, "numnum:sum:POP_MAX": 21818834, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 6758234, "numnum:min:POP_MIN": 15938, "numnum:sum:POP_MIN": 11818095, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 6068380, "numnum:min:POP_OTHER": 4400, "numnum:sum:POP_OTHER": 12700189, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 83, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 71, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 3936456, "numnum:min:GEONAMEID": 3445575, "numnum:sum:GEONAMEID": 25769204, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 6758234, "numnum:min:MAX_POP10": 144390, "numnum:sum:MAX_POP10": 15565629, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 7092933, "numnum:min:MAX_POP20": 221736, "numnum:sum:MAX_POP20": 18428745, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 7115614, "numnum:min:MAX_POP50": 221736, "numnum:sum:MAX_POP50": 18453758, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 7115806, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 17816090, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 650, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 724, "numnum:min:MIN_AREAKM": 34, "numnum:sum:MIN_AREAKM": 2313, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 903, "numnum:min:MAX_AREAKM": 34, "numnum:sum:MAX_AREAKM": 3027, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 279, "numnum:min:MIN_AREAMI": 13, "numnum:sum:MIN_AREAMI": 892, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 349, "numnum:min:MAX_AREAMI": 13, "numnum:sum:MAX_AREAMI": 1168, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 315, "numnum:min:MIN_PERKM": 32, "numnum:sum:MIN_PERKM": 1355, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 558, "numnum:min:MAX_PERKM": 32, "numnum:sum:MAX_PERKM": 1923, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 196, "numnum:min:MIN_PERMI": 20, "numnum:sum:MIN_PERMI": 843, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 347, "numnum:min:MAX_PERMI": 20, "numnum:sum:MAX_PERMI": 1195, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": -48.158333, "numnum:min:MIN_BBXMIN": -78.591667, "numnum:sum:MIN_BBXMIN": -480.0916659999999, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": -48.158333, "numnum:min:MAX_BBXMIN": -78.591667, "numnum:sum:MAX_BBXMIN": -479.91982699999996, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": -47.783333, "numnum:min:MIN_BBXMAX": -78.291667, "numnum:sum:MIN_BBXMAX": -478.2327429999999, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": -47.783333, "numnum:min:MAX_BBXMAX": -78.291667, "numnum:sum:MAX_BBXMAX": -477.9666659999999, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": -0.391667, "numnum:min:MIN_BBYMIN": -33.7, "numnum:sum:MIN_BBYMIN": -131.066668, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": -0.30257, "numnum:min:MAX_BBYMIN": -33.556142, "numnum:sum:MAX_BBYMIN": -130.798847, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 0.025, "numnum:min:MIN_BBYMAX": -33.175, "numnum:sum:MIN_BBYMAX": -129.1, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 0.025, "numnum:min:MAX_BBYMAX": -33.175, "numnum:sum:MAX_BBYMAX": -128.99999999999998, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": -47.9714, "numnum:min:MEAN_BBXC": -78.460061, "numnum:sum:MEAN_BBXC": -479.062263, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": -0.198438, "numnum:min:MEAN_BBYC": -33.461735, "numnum:sum:MEAN_BBYC": -130.097873, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 27, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 95, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 7737002, "numnum:min:GN_POP": 15938, "numnum:sum:GN_POP": 12444720, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 3829, "numnum:min:GTOPO30": 108, "numnum:sum:GTOPO30": 11398, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 472, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1536, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 24.15, "numnum:min:UN_LAT": -33.02, "numnum:sum:UN_LAT": -28.860000000000008, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -110.3, "numnum:sum:UN_LONG": -466.26, "numnum:count:POP1950": 7, "numnum:max:POP1950": 1322, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 3277, "numnum:count:POP1955": 7, "numnum:max:POP1955": 1618, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 4064, "numnum:count:POP1960": 7, "numnum:max:POP1960": 1980, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 5063, "numnum:count:POP1965": 7, "numnum:max:POP1965": 2294, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 6238, "numnum:count:POP1970": 7, "numnum:max:POP1970": 2980, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 7785, "numnum:count:POP1975": 7, "numnum:max:POP1975": 3696, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 9573, "numnum:count:POP1980": 7, "numnum:max:POP1980": 4438, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 11676, "numnum:count:POP1985": 7, "numnum:max:POP1985": 5116, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 13424, "numnum:count:POP1990": 7, "numnum:max:POP1990": 5837, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 15199, "numnum:count:POP1995": 7, "numnum:max:POP1995": 6537, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 17013, "numnum:count:POP2000": 7, "numnum:max:POP2000": 7116, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 18687, "numnum:count:POP2005": 7, "numnum:max:POP2005": 7747, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 20645, "numnum:count:POP2010": 7, "numnum:max:POP2010": 8012, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 21476, "numnum:count:POP2015": 7, "numnum:max:POP2015": 8375, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 22610, "numnum:count:POP2020": 7, "numnum:max:POP2020": 8857, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 24046, "numnum:count:POP2025": 7, "numnum:max:POP2025": 9251, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 25110, "numnum:count:POP2050": 7, "numnum:max:POP2050": 9600, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 25964, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.175781 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEALT": "Valparaíso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valparaíso", "ISO_A2": "CL", "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575, "MEGANAME": "Valparaíso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390, "MAX_POP20": 637860, "MAX_POP50": 637860, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 34, "MAX_AREAKM": 184, "MIN_AREAMI": 13, "MAX_AREAMI": 71, "MIN_PERKM": 33, "MAX_PERKM": 151, "MIN_PERMI": 21, "MAX_PERMI": 94, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27, "GN_POP": 15938, "ELEVATION": 0, "GTOPO30": 405, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328, "POP1955": 377, "POP1960": 433, "POP1965": 481, "POP1970": 532, "POP1975": 581, "POP1980": 635, "POP1985": 685, "POP1990": 733, "POP1995": 771, "POP2000": 803, "POP2005": 838, "POP2010": 854, "POP2015": 880, "POP2020": 922, "POP2025": 956, "POP2050": 982, "CITYALT": "Valparaiso", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 820, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 12, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -19.040971, "numnum:min:LATITUDE": -33.450014, "numnum:sum:LATITUDE": -85.53874900000001, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -65.259516, "numnum:min:LONGITUDE": -71.621014, "numnum:sum:LONGITUDE": -207.547571, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 5720000, "numnum:min:POP_MAX": 224838, "numnum:sum:POP_MAX": 6798838, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 221736, "numnum:min:POP_MIN": 15938, "numnum:sum:POP_MIN": 284285, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3066651, "numnum:min:POP_OTHER": 130815, "numnum:sum:POP_OTHER": 3419202, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3903987, "numnum:min:GEONAMEID": 3445575, "numnum:sum:GEONAMEID": 10799303, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3540014, "numnum:min:MAX_POP10": 144390, "numnum:sum:MAX_POP10": 3906140, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 5157058, "numnum:min:MAX_POP20": 221736, "numnum:sum:MAX_POP20": 6016654, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 5157058, "numnum:min:MAX_POP50": 221736, "numnum:sum:MAX_POP50": 6016654, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 5157058, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 5378794, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 570, "numnum:min:MIN_AREAKM": 34, "numnum:sum:MIN_AREAKM": 638, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 903, "numnum:min:MAX_AREAKM": 34, "numnum:sum:MAX_AREAKM": 1121, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 220, "numnum:min:MIN_AREAMI": 13, "numnum:sum:MIN_AREAMI": 246, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 349, "numnum:min:MAX_AREAMI": 13, "numnum:sum:MAX_AREAMI": 433, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 310, "numnum:min:MIN_PERKM": 32, "numnum:sum:MIN_PERKM": 375, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 558, "numnum:min:MAX_PERKM": 32, "numnum:sum:MAX_PERKM": 741, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 193, "numnum:min:MIN_PERMI": 20, "numnum:sum:MIN_PERMI": 234, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 347, "numnum:min:MAX_PERMI": 20, "numnum:sum:MAX_PERMI": 461, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -65.3, "numnum:min:MIN_BBXMIN": -71.658333, "numnum:sum:MIN_BBXMIN": -207.91666600000003, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -65.3, "numnum:min:MAX_BBXMIN": -71.658333, "numnum:sum:MAX_BBXMIN": -207.758333, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -65.225, "numnum:min:MIN_BBXMAX": -71.57441, "numnum:sum:MIN_BBXMAX": -207.25774299999999, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -65.225, "numnum:min:MAX_BBXMAX": -71.325, "numnum:sum:MAX_BBXMAX": -207.008333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -19.066667, "numnum:min:MIN_BBYMIN": -33.7, "numnum:sum:MIN_BBYMIN": -85.841667, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -19.066667, "numnum:min:MAX_BBYMIN": -33.556142, "numnum:sum:MAX_BBYMIN": -85.697809, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -18.991667, "numnum:min:MIN_BBYMAX": -33.175, "numnum:sum:MIN_BBYMAX": -85.183334, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -18.991667, "numnum:min:MAX_BBYMAX": -33.175, "numnum:sum:MAX_BBYMAX": -85.08333400000001, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -65.260317, "numnum:min:MEAN_BBXC": -71.541251, "numnum:sum:MEAN_BBXC": -207.46283799999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -19.030556, "numnum:min:MEAN_BBYC": -33.461735, "numnum:sum:MEAN_BBYC": -85.526939, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 27, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 51, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 224838, "numnum:min:GN_POP": 15938, "numnum:sum:GN_POP": 287387, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 2759, "numnum:min:GTOPO30": 405, "numnum:sum:GTOPO30": 3605, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 18, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 35, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 8.1, "numnum:min:UN_LAT": -33.02, "numnum:sum:UN_LAT": -24.92, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -80.96, "numnum:sum:UN_LONG": -152.51, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1322, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1650, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1618, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1995, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1980, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2413, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2294, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2775, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2647, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3179, "numnum:count:POP1975": 3, "numnum:max:POP1975": 3138, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3719, "numnum:count:POP1980": 3, "numnum:max:POP1980": 3721, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4356, "numnum:count:POP1985": 3, "numnum:max:POP1985": 4201, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 4886, "numnum:count:POP1990": 3, "numnum:max:POP1990": 4616, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5349, "numnum:count:POP1995": 3, "numnum:max:POP1995": 4964, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5735, "numnum:count:POP2000": 3, "numnum:max:POP2000": 5275, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6078, "numnum:count:POP2005": 3, "numnum:max:POP2005": 5599, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6437, "numnum:count:POP2010": 3, "numnum:max:POP2010": 5720, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 6574, "numnum:count:POP2015": 3, "numnum:max:POP2015": 5879, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 6759, "numnum:count:POP2020": 3, "numnum:max:POP2020": 6084, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 7006, "numnum:count:POP2025": 3, "numnum:max:POP2025": 6224, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 7180, "numnum:count:POP2050": 3, "numnum:max:POP2050": 6310, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 7292, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.063924 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunción", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunción", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunción", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion", "accum2": 1, "numnum:count:SCALERANK": 8, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 14, "numnum:count:NATSCALE": 8, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 2270, "numnum:count:LABELRANK": 8, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 42, "numnum:count:DIFFASCII": 8, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 8, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 8, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 8, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 5, "numnum:count:MEGACITY": 8, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 7, "numnum:count:LATITUDE": 8, "numnum:max:LATITUDE": 59.91669, "numnum:min:LATITUDE": -34.858042, "numnum:sum:LATITUDE": 30.106837000000014, "numnum:count:LONGITUDE": 8, "numnum:max:LONGITUDE": 18.097335, "numnum:min:LONGITUDE": -58.397531, "numnum:sum:LONGITUDE": -228.94285400000005, "numnum:count:CHANGED": 8, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 8, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 8, "numnum:max:POP_MAX": 18845000, "numnum:min:POP_MAX": 835000, "numnum:sum:POP_MAX": 50276000, "numnum:count:POP_MIN": 8, "numnum:max:POP_MIN": 10929146, "numnum:min:POP_MIN": 5324, "numnum:sum:POP_MIN": 25312667, "numnum:count:POP_OTHER": 8, "numnum:max:POP_OTHER": 11522944, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 26919192, "numnum:count:RANK_MAX": 8, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 101, "numnum:count:RANK_MIN": 8, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 85, "numnum:count:GEONAMEID": 8, "numnum:max:GEONAMEID": 5038018, "numnum:min:GEONAMEID": 1730025, "numnum:sum:GEONAMEID": 25667929, "numnum:count:LS_MATCH": 8, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 8, "numnum:count:CHECKME": 8, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 8, "numnum:max:MAX_POP10": 12495084, "numnum:min:MAX_POP10": 708489, "numnum:sum:MAX_POP10": 30339206, "numnum:count:MAX_POP20": 8, "numnum:max:MAX_POP20": 17425624, "numnum:min:MAX_POP20": 708489, "numnum:sum:MAX_POP20": 42525017, "numnum:count:MAX_POP50": 8, "numnum:max:MAX_POP50": 18203351, "numnum:min:MAX_POP50": 762374, "numnum:sum:MAX_POP50": 47639826, "numnum:count:MAX_POP300": 8, "numnum:max:MAX_POP300": 18203351, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 45326959, "numnum:count:MAX_POP310": 8, "numnum:max:MAX_POP310": 18203351, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 41041583, "numnum:count:MAX_NATSCA": 8, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 1550, "numnum:count:MIN_AREAKM": 8, "numnum:max:MIN_AREAKM": 1675, "numnum:min:MIN_AREAKM": 105, "numnum:sum:MIN_AREAKM": 5095, "numnum:count:MAX_AREAKM": 8, "numnum:max:MAX_AREAKM": 2667, "numnum:min:MAX_AREAKM": 347, "numnum:sum:MAX_AREAKM": 9350, "numnum:count:MIN_AREAMI": 8, "numnum:max:MIN_AREAMI": 647, "numnum:min:MIN_AREAMI": 41, "numnum:sum:MIN_AREAMI": 1968, "numnum:count:MAX_AREAMI": 8, "numnum:max:MAX_AREAMI": 1030, "numnum:min:MAX_AREAMI": 134, "numnum:sum:MAX_AREAMI": 3610, "numnum:count:MIN_PERKM": 8, "numnum:max:MIN_PERKM": 629, "numnum:min:MIN_PERKM": 63, "numnum:sum:MIN_PERKM": 2820, "numnum:count:MAX_PERKM": 8, "numnum:max:MAX_PERKM": 1086, "numnum:min:MAX_PERKM": 266, "numnum:sum:MAX_PERKM": 5221, "numnum:count:MIN_PERMI": 8, "numnum:max:MIN_PERMI": 391, "numnum:min:MIN_PERMI": 39, "numnum:sum:MIN_PERMI": 1751, "numnum:count:MAX_PERMI": 8, "numnum:max:MAX_PERMI": 675, "numnum:min:MAX_PERMI": 165, "numnum:sum:MAX_PERMI": 3245, "numnum:count:MIN_BBXMIN": 8, "numnum:max:MIN_BBXMIN": 17.775, "numnum:min:MIN_BBXMIN": -59.016667, "numnum:sum:MIN_BBXMIN": -231.53333399999995, "numnum:count:MAX_BBXMIN": 8, "numnum:max:MAX_BBXMIN": 17.775, "numnum:min:MAX_BBXMIN": -58.757731, "numnum:sum:MAX_BBXMIN": -230.91459699999997, "numnum:count:MIN_BBXMAX": 8, "numnum:max:MIN_BBXMAX": 18.408333, "numnum:min:MIN_BBXMAX": -58.175, "numnum:sum:MIN_BBXMAX": -227.11066499999999, "numnum:count:MAX_BBXMAX": 8, "numnum:max:MAX_BBXMAX": 18.408333, "numnum:min:MAX_BBXMAX": -57.816667, "numnum:sum:MAX_BBXMAX": -225.942526, "numnum:count:MIN_BBYMIN": 8, "numnum:max:MIN_BBYMIN": 59.708333, "numnum:min:MIN_BBYMIN": -35.008333, "numnum:sum:MIN_BBYMIN": 28.208334000000023, "numnum:count:MAX_BBYMIN": 8, "numnum:max:MAX_BBYMIN": 59.708333, "numnum:min:MAX_BBYMIN": -35.008333, "numnum:sum:MAX_BBYMIN": 28.549336000000005, "numnum:count:MIN_BBYMAX": 8, "numnum:max:MIN_BBYMAX": 60.066667, "numnum:min:MIN_BBYMAX": -34.65, "numnum:sum:MIN_BBYMAX": 31.353770999999989, "numnum:count:MAX_BBYMAX": 8, "numnum:max:MAX_BBYMAX": 60.066667, "numnum:min:MAX_BBYMAX": -34.65, "numnum:sum:MAX_BBYMAX": 31.84999899999999, "numnum:count:MEAN_BBXC": 8, "numnum:max:MEAN_BBXC": 18.044982, "numnum:min:MEAN_BBXC": -58.50845, "numnum:sum:MEAN_BBXC": -229.06820299999999, "numnum:count:MEAN_BBYC": 8, "numnum:max:MEAN_BBYC": 59.906118, "numnum:min:MEAN_BBYC": -34.828337, "numnum:sum:MEAN_BBYC": 30.023719, "numnum:count:COMPARE": 8, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 8, "numnum:max:ADMIN1_COD": 27, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 128, "numnum:count:GN_POP": 8, "numnum:max:GN_POP": 13076300, "numnum:min:GN_POP": 5324, "numnum:sum:GN_POP": 31445912, "numnum:count:ELEVATION": 8, "numnum:max:ELEVATION": 284, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 284, "numnum:count:GTOPO30": 8, "numnum:max:GTOPO30": 631, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 1024, "numnum:count:UN_FID": 8, "numnum:max:UN_FID": 579, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 3033, "numnum:count:UN_LAT": 8, "numnum:max:UN_LAT": 59.93, "numnum:min:UN_LAT": -34.92, "numnum:sum:UN_LAT": -21.87999999999998, "numnum:count:UN_LONG": 8, "numnum:max:UN_LONG": 17.99, "numnum:min:UN_LONG": -58.44, "numnum:sum:UN_LONG": -233.59, "numnum:count:POP1950": 8, "numnum:max:POP1950": 5098, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 13061, "numnum:count:POP1955": 8, "numnum:max:POP1955": 5799, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 15302, "numnum:count:POP1960": 8, "numnum:max:POP1960": 6598, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 17992, "numnum:count:POP1965": 8, "numnum:max:POP1965": 7317, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 21595, "numnum:count:POP1970": 8, "numnum:max:POP1970": 8105, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 25954, "numnum:count:POP1975": 8, "numnum:max:POP1975": 9614, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 29632, "numnum:count:POP1980": 8, "numnum:max:POP1980": 12089, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 33953, "numnum:count:POP1985": 8, "numnum:max:POP1985": 13395, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 36536, "numnum:count:POP1990": 8, "numnum:max:POP1990": 14776, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 39243, "numnum:count:POP1995": 8, "numnum:max:POP1995": 15948, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 42014, "numnum:count:POP2000": 8, "numnum:max:POP2000": 17099, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 44797, "numnum:count:POP2005": 8, "numnum:max:POP2005": 18333, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 47706, "numnum:count:POP2010": 8, "numnum:max:POP2010": 18845, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 48870, "numnum:count:POP2015": 8, "numnum:max:POP2015": 19582, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 50519, "numnum:count:POP2020": 8, "numnum:max:POP2020": 20544, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 52727, "numnum:count:POP2025": 8, "numnum:max:POP2025": 21124, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 54212, "numnum:count:POP2050": 8, "numnum:max:POP2050": 21428, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 55123, "accum": 8, "numnum:count:accum2": 8, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 8, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -57.656250, -25.324167 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasília", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasília", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia", "accum2": 1, "numnum:count:SCALERANK": 10, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 17, "numnum:count:NATSCALE": 10, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 2770, "numnum:count:LABELRANK": 10, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 51, "numnum:count:DIFFASCII": 10, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 10, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 7, "numnum:count:CAPALT": 10, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 10, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 6, "numnum:count:MEGACITY": 10, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 9, "numnum:count:LATITUDE": 10, "numnum:max:LATITUDE": 59.91669, "numnum:min:LATITUDE": -34.858042, "numnum:sum:LATITUDE": 66.673466, "numnum:count:LONGITUDE": 10, "numnum:max:LONGITUDE": 18.097335, "numnum:min:LONGITUDE": -58.397531, "numnum:sum:LONGITUDE": -271.942266, "numnum:count:CHANGED": 10, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 13, "numnum:count:NAMEDIFF": 10, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 10, "numnum:max:POP_MAX": 18845000, "numnum:min:POP_MAX": 835000, "numnum:sum:POP_MAX": 55023996, "numnum:count:POP_MIN": 10, "numnum:max:POP_MIN": 10929146, "numnum:min:POP_MIN": 5324, "numnum:sum:POP_MIN": 28617266, "numnum:count:POP_OTHER": 10, "numnum:max:POP_OTHER": 11522944, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 29654359, "numnum:count:RANK_MAX": 10, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 125, "numnum:count:RANK_MIN": 10, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 108, "numnum:count:GEONAMEID": 10, "numnum:max:GEONAMEID": 5038018, "numnum:min:GEONAMEID": 1730025, "numnum:sum:GEONAMEID": 31896781, "numnum:count:LS_MATCH": 10, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 10, "numnum:count:CHECKME": 10, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 10, "numnum:max:MAX_POP10": 12495084, "numnum:min:MAX_POP10": 708489, "numnum:sum:MAX_POP10": 33250830, "numnum:count:MAX_POP20": 10, "numnum:max:MAX_POP20": 17425624, "numnum:min:MAX_POP20": 708489, "numnum:sum:MAX_POP20": 45434309, "numnum:count:MAX_POP50": 10, "numnum:max:MAX_POP50": 18203351, "numnum:min:MAX_POP50": 762374, "numnum:sum:MAX_POP50": 50586721, "numnum:count:MAX_POP300": 10, "numnum:max:MAX_POP300": 18203351, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 48273854, "numnum:count:MAX_POP310": 10, "numnum:max:MAX_POP310": 18203351, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 42149756, "numnum:count:MAX_NATSCA": 10, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 1950, "numnum:count:MIN_AREAKM": 10, "numnum:max:MIN_AREAKM": 1675, "numnum:min:MIN_AREAKM": 105, "numnum:sum:MIN_AREAKM": 5806, "numnum:count:MAX_AREAKM": 10, "numnum:max:MAX_AREAKM": 2667, "numnum:min:MAX_AREAKM": 300, "numnum:sum:MAX_AREAKM": 10089, "numnum:count:MIN_AREAMI": 10, "numnum:max:MIN_AREAMI": 647, "numnum:min:MIN_AREAMI": 41, "numnum:sum:MIN_AREAMI": 2242, "numnum:count:MAX_AREAMI": 10, "numnum:max:MAX_AREAMI": 1030, "numnum:min:MAX_AREAMI": 116, "numnum:sum:MAX_AREAMI": 3895, "numnum:count:MIN_PERKM": 10, "numnum:max:MIN_PERKM": 629, "numnum:min:MIN_PERKM": 63, "numnum:sum:MIN_PERKM": 3424, "numnum:count:MAX_PERKM": 10, "numnum:max:MAX_PERKM": 1086, "numnum:min:MAX_PERKM": 266, "numnum:sum:MAX_PERKM": 5882, "numnum:count:MIN_PERMI": 10, "numnum:max:MIN_PERMI": 391, "numnum:min:MIN_PERMI": 39, "numnum:sum:MIN_PERMI": 2126, "numnum:count:MAX_PERMI": 10, "numnum:max:MAX_PERMI": 675, "numnum:min:MAX_PERMI": 165, "numnum:sum:MAX_PERMI": 3655, "numnum:count:MIN_BBXMIN": 10, "numnum:max:MIN_BBXMIN": 17.775, "numnum:min:MIN_BBXMIN": -59.016667, "numnum:sum:MIN_BBXMIN": -274.96666700000005, "numnum:count:MAX_BBXMIN": 10, "numnum:max:MAX_BBXMIN": 17.775, "numnum:min:MAX_BBXMIN": -58.757731, "numnum:sum:MAX_BBXMIN": -274.31517700000009, "numnum:count:MIN_BBXMAX": 10, "numnum:max:MIN_BBXMAX": 18.408333, "numnum:min:MIN_BBXMAX": -58.175, "numnum:sum:MIN_BBXMAX": -269.83566499999997, "numnum:count:MAX_BBXMAX": 10, "numnum:max:MAX_BBXMAX": 18.408333, "numnum:min:MAX_BBXMAX": -57.816667, "numnum:sum:MAX_BBXMAX": -268.667526, "numnum:count:MIN_BBYMIN": 10, "numnum:max:MIN_BBYMIN": 59.708333, "numnum:min:MIN_BBYMIN": -35.008333, "numnum:sum:MIN_BBYMIN": 64.45000000000002, "numnum:count:MAX_BBYMIN": 10, "numnum:max:MAX_BBYMIN": 59.708333, "numnum:min:MAX_BBYMIN": -35.008333, "numnum:sum:MAX_BBYMIN": 64.791002, "numnum:count:MIN_BBYMAX": 10, "numnum:max:MIN_BBYMAX": 60.066667, "numnum:min:MIN_BBYMAX": -34.65, "numnum:sum:MIN_BBYMAX": 68.162104, "numnum:count:MAX_BBYMAX": 10, "numnum:max:MAX_BBYMAX": 60.066667, "numnum:min:MAX_BBYMAX": -34.65, "numnum:sum:MAX_BBYMAX": 68.68333200000001, "numnum:count:MEAN_BBXC": 10, "numnum:max:MEAN_BBXC": 18.044982, "numnum:min:MEAN_BBXC": -58.50845, "numnum:sum:MEAN_BBXC": -272.1681740000001, "numnum:count:MEAN_BBYC": 10, "numnum:max:MEAN_BBYC": 59.906118, "numnum:min:MEAN_BBYC": -34.828337, "numnum:sum:MEAN_BBYC": 66.54800400000002, "numnum:count:COMPARE": 10, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 10, "numnum:max:ADMIN1_COD": 27, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 142, "numnum:count:GN_POP": 10, "numnum:max:GN_POP": 13076300, "numnum:min:GN_POP": 5324, "numnum:sum:GN_POP": 34395266, "numnum:count:ELEVATION": 10, "numnum:max:ELEVATION": 284, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 284, "numnum:count:GTOPO30": 10, "numnum:max:GTOPO30": 1092, "numnum:min:GTOPO30": -2, "numnum:sum:GTOPO30": 2114, "numnum:count:UN_FID": 10, "numnum:max:UN_FID": 579, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 3884, "numnum:count:UN_LAT": 10, "numnum:max:UN_LAT": 59.93, "numnum:min:UN_LAT": -34.92, "numnum:sum:UN_LAT": 14.699999999999996, "numnum:count:UN_LONG": 10, "numnum:max:UN_LONG": 17.99, "numnum:min:UN_LONG": -58.44, "numnum:sum:UN_LONG": -276.59000000000006, "numnum:count:POP1950": 10, "numnum:max:POP1950": 5098, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 13948, "numnum:count:POP1955": 10, "numnum:max:POP1955": 5799, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 16243, "numnum:count:POP1960": 10, "numnum:max:POP1960": 6598, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 19024, "numnum:count:POP1965": 10, "numnum:max:POP1965": 7317, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 22805, "numnum:count:POP1970": 10, "numnum:max:POP1970": 8105, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 27406, "numnum:count:POP1975": 10, "numnum:max:POP1975": 9614, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 31437, "numnum:count:POP1980": 10, "numnum:max:POP1980": 12089, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 36187, "numnum:count:POP1985": 10, "numnum:max:POP1985": 13395, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 39002, "numnum:count:POP1990": 10, "numnum:max:POP1990": 14776, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 42042, "numnum:count:POP1995": 10, "numnum:max:POP1995": 15948, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 45259, "numnum:count:POP2000": 10, "numnum:max:POP2000": 17099, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 48548, "numnum:count:POP2005": 10, "numnum:max:POP2005": 18333, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 52070, "numnum:count:POP2010": 10, "numnum:max:POP2010": 18845, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 53500, "numnum:count:POP2015": 10, "numnum:max:POP2015": 19582, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 55501, "numnum:count:POP2020": 10, "numnum:max:POP2020": 20544, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 58075, "numnum:count:POP2025": 10, "numnum:max:POP2025": 21124, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 59753, "numnum:count:POP2050": 10, "numnum:max:POP2050": 21428, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 60790, "accum": 10, "numnum:count:accum2": 10, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 10, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089, "accum2": 1, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 15, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 1160, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 27, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 52.349969, "numnum:min:LATITUDE": 42.500001, "numnum:sum:LATITUDE": 244.16164, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 6.130003, "numnum:min:LONGITUDE": 1.516486, "numnum:sum:LONGITUDE": 19.229781000000004, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 9904000, "numnum:min:POP_MAX": 53998, "numnum:sum:POP_MAX": 12839258, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 1019022, "numnum:min:POP_MIN": 11177, "numnum:sum:POP_MIN": 1870775, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 7142744, "numnum:min:POP_OTHER": 53371, "numnum:sum:POP_OTHER": 9754986, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 54, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 44, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 6942553, "numnum:min:GEONAMEID": 2759794, "numnum:sum:GEONAMEID": 18593596, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 7454172, "numnum:min:MAX_POP10": 53998, "numnum:sum:MAX_POP10": 10448172, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 7970513, "numnum:min:MAX_POP20": 53998, "numnum:sum:MAX_POP20": 11079110, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 9960588, "numnum:min:MAX_POP50": 53998, "numnum:sum:MAX_POP50": 14806492, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 9960588, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 14645234, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 9960588, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 14645234, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 1000, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 1121, "numnum:min:MIN_AREAKM": 23, "numnum:sum:MIN_AREAKM": 2379, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 2415, "numnum:min:MAX_AREAKM": 23, "numnum:sum:MAX_AREAKM": 5142, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 433, "numnum:min:MIN_AREAMI": 9, "numnum:sum:MIN_AREAMI": 918, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 932, "numnum:min:MAX_AREAMI": 9, "numnum:sum:MAX_AREAMI": 1985, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 997, "numnum:min:MIN_PERKM": 49, "numnum:sum:MIN_PERKM": 1952, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 2982, "numnum:min:MAX_PERKM": 49, "numnum:sum:MAX_PERKM": 5336, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 620, "numnum:min:MIN_PERMI": 31, "numnum:sum:MIN_PERMI": 1214, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 1853, "numnum:min:MAX_PERMI": 31, "numnum:sum:MAX_PERMI": 3316, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 6.041667, "numnum:min:MIN_BBXMIN": 1.483333, "numnum:sum:MIN_BBXMIN": 17.483333000000003, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 6.041667, "numnum:min:MAX_BBXMIN": 1.483333, "numnum:sum:MAX_BBXMIN": 18.419036, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 6.183333, "numnum:min:MIN_BBXMAX": 1.591667, "numnum:sum:MIN_BBXMAX": 20.158336000000003, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 6.183333, "numnum:min:MAX_BBXMAX": 1.591667, "numnum:sum:MAX_BBXMAX": 20.758333000000005, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 52.183333, "numnum:min:MIN_BBYMIN": 42.483333, "numnum:sum:MIN_BBYMIN": 243.316666, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 52.183333, "numnum:min:MAX_BBYMIN": 42.483333, "numnum:sum:MAX_BBYMIN": 243.46666599999998, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 52.508333, "numnum:min:MIN_BBYMAX": 42.55, "numnum:sum:MIN_BBYMAX": 244.96666600000004, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 52.533333, "numnum:min:MAX_BBYMAX": 42.55, "numnum:sum:MAX_BBYMAX": 245.383332, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 6.125273, "numnum:min:MEAN_BBXC": 1.535473, "numnum:sum:MEAN_BBXC": 19.213611, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 52.348868, "numnum:min:MEAN_BBYC": 42.518131, "numnum:sum:MEAN_BBYC": 244.246415, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 52, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 70, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 1019022, "numnum:min:GN_POP": 7890, "numnum:sum:GN_POP": 1856409, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 687, "numnum:min:GTOPO30": -2, "numnum:sum:GTOPO30": 1220, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 384, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 952, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 52.37, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 152.07999999999999, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 4.89, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 11.68, "numnum:count:POP1950": 5, "numnum:max:POP1950": 6522, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 8788, "numnum:count:POP1955": 5, "numnum:max:POP1955": 6796, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 9116, "numnum:count:POP1960": 5, "numnum:max:POP1960": 7411, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 9791, "numnum:count:POP1965": 5, "numnum:max:POP1965": 7968, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 10435, "numnum:count:POP1970": 5, "numnum:max:POP1970": 8350, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 10845, "numnum:count:POP1975": 5, "numnum:max:POP1975": 8558, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 11146, "numnum:count:POP1980": 5, "numnum:max:POP1980": 8669, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 11264, "numnum:count:POP1985": 5, "numnum:max:POP1985": 8956, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 11517, "numnum:count:POP1990": 5, "numnum:max:POP1990": 9330, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 11946, "numnum:count:POP1995": 5, "numnum:max:POP1995": 9510, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 12213, "numnum:count:POP2000": 5, "numnum:max:POP2000": 9692, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 12430, "numnum:count:POP2005": 5, "numnum:max:POP2005": 9852, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 12617, "numnum:count:POP2010": 5, "numnum:max:POP2010": 9904, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 12678, "numnum:count:POP2015": 5, "numnum:max:POP2015": 9958, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 12746, "numnum:count:POP2020": 5, "numnum:max:POP2020": 10007, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 12815, "numnum:count:POP2025": 5, "numnum:max:POP2025": 10031, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 12853, "numnum:count:POP2050": 5, "numnum:max:POP2050": 10036, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 12869, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.321911 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 14, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 860, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 19, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 50.833317, "numnum:min:LATITUDE": 42.500001, "numnum:sum:LATITUDE": 191.811671, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 6.130003, "numnum:min:LONGITUDE": 1.516486, "numnum:sum:LONGITUDE": 14.313141, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 9904000, "numnum:min:POP_MAX": 53998, "numnum:sum:POP_MAX": 11808258, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 1019022, "numnum:min:POP_MIN": 11177, "numnum:sum:POP_MIN": 1129139, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 7142744, "numnum:min:POP_OTHER": 53371, "numnum:sum:POP_OTHER": 8792498, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 42, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 6942553, "numnum:min:GEONAMEID": 2800866, "numnum:sum:GEONAMEID": 15833802, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 7454172, "numnum:min:MAX_POP10": 53998, "numnum:sum:MAX_POP10": 9375270, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 7970513, "numnum:min:MAX_POP20": 53998, "numnum:sum:MAX_POP20": 10006208, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 9960588, "numnum:min:MAX_POP50": 53998, "numnum:sum:MAX_POP50": 13698319, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 9960588, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 13537061, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 9960588, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 13537061, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 1121, "numnum:min:MIN_AREAKM": 23, "numnum:sum:MIN_AREAKM": 2104, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 2415, "numnum:min:MAX_AREAKM": 23, "numnum:sum:MAX_AREAKM": 4842, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 433, "numnum:min:MIN_AREAMI": 9, "numnum:sum:MIN_AREAMI": 812, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 932, "numnum:min:MAX_AREAMI": 9, "numnum:sum:MAX_AREAMI": 1869, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 997, "numnum:min:MIN_PERKM": 49, "numnum:sum:MIN_PERKM": 1659, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 2982, "numnum:min:MAX_PERKM": 49, "numnum:sum:MAX_PERKM": 4993, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 620, "numnum:min:MIN_PERMI": 31, "numnum:sum:MIN_PERMI": 1032, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 1853, "numnum:min:MAX_PERMI": 31, "numnum:sum:MAX_PERMI": 3103, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 6.041667, "numnum:min:MIN_BBXMIN": 1.483333, "numnum:sum:MIN_BBXMIN": 12.758333, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 6.041667, "numnum:min:MAX_BBXMIN": 1.483333, "numnum:sum:MAX_BBXMIN": 13.661283000000001, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 6.183333, "numnum:min:MIN_BBXMAX": 1.591667, "numnum:sum:MIN_BBXMAX": 15.100003000000001, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 6.183333, "numnum:min:MAX_BBXMAX": 1.591667, "numnum:sum:MAX_BBXMAX": 15.700000000000001, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 50.6, "numnum:min:MIN_BBYMIN": 42.483333, "numnum:sum:MIN_BBYMIN": 191.133333, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 50.65, "numnum:min:MAX_BBYMIN": 42.483333, "numnum:sum:MAX_BBYMIN": 191.28333300000004, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 51.016667, "numnum:min:MIN_BBYMAX": 42.55, "numnum:sum:MIN_BBYMAX": 192.45833299999999, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 51.408333, "numnum:min:MAX_BBYMAX": 42.55, "numnum:sum:MAX_BBYMAX": 192.84999900000003, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 6.125273, "numnum:min:MEAN_BBXC": 1.535473, "numnum:sum:MEAN_BBXC": 14.342182000000001, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 50.919556, "numnum:min:MEAN_BBYC": 42.518131, "numnum:sum:MEAN_BBYC": 191.89754699999998, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 52, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 63, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 1019022, "numnum:min:GN_POP": 7890, "numnum:sum:GN_POP": 1114773, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 687, "numnum:min:GTOPO30": 48, "numnum:sum:GTOPO30": 1222, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 384, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 573, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 50.83, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 99.71000000000001, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 4.36, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 6.790000000000001, "numnum:count:POP1950": 4, "numnum:max:POP1950": 6522, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 7937, "numnum:count:POP1955": 4, "numnum:max:POP1955": 6796, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 8245, "numnum:count:POP1960": 4, "numnum:max:POP1960": 7411, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 8896, "numnum:count:POP1965": 4, "numnum:max:POP1965": 7968, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 9493, "numnum:count:POP1970": 4, "numnum:max:POP1970": 8350, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 9918, "numnum:count:POP1975": 4, "numnum:max:POP1975": 8558, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 10168, "numnum:count:POP1980": 4, "numnum:max:POP1980": 8669, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 10323, "numnum:count:POP1985": 4, "numnum:max:POP1985": 8956, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 10610, "numnum:count:POP1990": 4, "numnum:max:POP1990": 9330, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 11010, "numnum:count:POP1995": 4, "numnum:max:POP1995": 9510, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 11225, "numnum:count:POP2000": 4, "numnum:max:POP2000": 9692, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 11425, "numnum:count:POP2005": 4, "numnum:max:POP2005": 9852, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 11594, "numnum:count:POP2010": 4, "numnum:max:POP2010": 9904, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 11647, "numnum:count:POP2015": 4, "numnum:max:POP2015": 9958, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 11702, "numnum:count:POP2020": 4, "numnum:max:POP2020": 10007, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 11751, "numnum:count:POP2025": 4, "numnum:max:POP2025": 10031, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 11775, "numnum:count:POP2050": 4, "numnum:max:POP2050": 10036, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 11780, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genève", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 7, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 20, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 20, "numnum:sum:NATSCALE": 600, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 22, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 1, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 1, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 55.678564, "numnum:min:LATITUDE": 43.739646, "numnum:sum:LATITUDE": 239.67862499999999, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 12.563486, "numnum:min:LONGITUDE": 6.140028, "numnum:sum:LONGITUDE": 43.094071, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 1240000, "numnum:min:POP_MAX": 36281, "numnum:sum:POP_MAX": 2672981, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 1085000, "numnum:min:POP_MIN": 5342, "numnum:sum:POP_MIN": 1440729, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 1038288, "numnum:min:POP_OTHER": 33009, "numnum:sum:POP_OTHER": 1949766, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 48, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 42, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 3042030, "numnum:min:GEONAMEID": 2618425, "numnum:sum:GEONAMEID": 13976111, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 1124323, "numnum:min:MAX_POP10": 45442, "numnum:sum:MAX_POP10": 2084059, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 1230007, "numnum:min:MAX_POP20": 45442, "numnum:sum:MAX_POP20": 2189743, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 1256924, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 2171218, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 1256924, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 1532253, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 1256924, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 1256924, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 520, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 438, "numnum:min:MIN_AREAKM": 36, "numnum:sum:MIN_AREAKM": 776, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 577, "numnum:min:MAX_AREAKM": 36, "numnum:sum:MAX_AREAKM": 915, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 169, "numnum:min:MIN_AREAMI": 14, "numnum:sum:MIN_AREAMI": 299, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 223, "numnum:min:MAX_AREAMI": 14, "numnum:sum:MAX_AREAMI": 353, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 348, "numnum:min:MIN_PERKM": 57, "numnum:sum:MIN_PERKM": 795, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 542, "numnum:min:MAX_PERKM": 57, "numnum:sum:MAX_PERKM": 989, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 216, "numnum:min:MIN_PERMI": 35, "numnum:sum:MIN_PERMI": 494, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 337, "numnum:min:MAX_PERMI": 35, "numnum:sum:MAX_PERMI": 615, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 12.116667, "numnum:min:MIN_BBXMIN": 5.966667, "numnum:sum:MIN_BBXMIN": 42.241667, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 12.316667, "numnum:min:MAX_BBXMIN": 5.966667, "numnum:sum:MAX_BBXMIN": 42.441667, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 12.658333, "numnum:min:MIN_BBXMAX": 6.325, "numnum:sum:MIN_BBXMAX": 43.608332, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 12.658333, "numnum:min:MAX_BBXMAX": 6.325, "numnum:sum:MAX_BBXMAX": 43.608332, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 55.4, "numnum:min:MIN_BBYMIN": 43.716667, "numnum:sum:MIN_BBYMIN": 239.241667, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 55.583333, "numnum:min:MAX_BBYMIN": 43.716667, "numnum:sum:MAX_BBYMIN": 239.425, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 55.927962, "numnum:min:MIN_BBYMAX": 43.8, "numnum:sum:MIN_BBYMAX": 240.29462900000002, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 56.008333, "numnum:min:MAX_BBYMAX": 43.8, "numnum:sum:MAX_BBYMAX": 240.375, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 12.437175, "numnum:min:MEAN_BBXC": 6.1424, "numnum:sum:MEAN_BBXC": 42.979065000000009, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 55.716213, "numnum:min:MEAN_BBYC": 43.754167, "numnum:sum:MEAN_BBYC": 239.80552400000003, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 17, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 28, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 1153615, "numnum:min:GN_POP": 1020, "numnum:sum:GN_POP": 1465444, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 711, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8382, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 175, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 175, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 55.71, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 55.71, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 12.54, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 12.54, "numnum:count:POP1950": 5, "numnum:max:POP1950": 1216, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1216, "numnum:count:POP1955": 5, "numnum:max:POP1955": 1227, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1227, "numnum:count:POP1960": 5, "numnum:max:POP1960": 1284, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1284, "numnum:count:POP1965": 5, "numnum:max:POP1965": 1373, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1373, "numnum:count:POP1970": 5, "numnum:max:POP1970": 1380, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1380, "numnum:count:POP1975": 5, "numnum:max:POP1975": 1172, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1172, "numnum:count:POP1980": 5, "numnum:max:POP1980": 1096, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1096, "numnum:count:POP1985": 5, "numnum:max:POP1985": 1056, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1056, "numnum:count:POP1990": 5, "numnum:max:POP1990": 1035, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1035, "numnum:count:POP1995": 5, "numnum:max:POP1995": 1048, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1048, "numnum:count:POP2000": 5, "numnum:max:POP2000": 1077, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1077, "numnum:count:POP2005": 5, "numnum:max:POP2005": 1085, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1085, "numnum:count:POP2010": 5, "numnum:max:POP2010": 1085, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1085, "numnum:count:POP2015": 5, "numnum:max:POP2015": 1087, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1087, "numnum:count:POP2020": 5, "numnum:max:POP2020": 1092, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1092, "numnum:count:POP2025": 5, "numnum:max:POP2025": 1095, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1095, "numnum:count:POP2050": 5, "numnum:max:POP2050": 1096, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1096, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genève", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 7, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 12, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 20, "numnum:sum:NATSCALE": 370, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 47.133724, "numnum:min:LATITUDE": 46.210008, "numnum:sum:LATITUDE": 140.260415, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 9.516669, "numnum:min:LONGITUDE": 6.140028, "numnum:sum:LONGITUDE": 23.123672, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1240000, "numnum:min:POP_MAX": 36281, "numnum:sum:POP_MAX": 1551610, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 192385, "numnum:min:POP_MIN": 5342, "numnum:sum:POP_MIN": 319358, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 508284, "numnum:min:POP_OTHER": 33009, "numnum:sum:POP_OTHER": 809107, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 29, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 9, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3042030, "numnum:min:GEONAMEID": 2660646, "numnum:sum:GEONAMEID": 8364228, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 530422, "numnum:min:MAX_POP10": 45442, "numnum:sum:MAX_POP10": 851193, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 530422, "numnum:min:MAX_POP20": 45442, "numnum:sum:MAX_POP20": 851193, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 530422, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 805751, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 275329, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 275329, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 170, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 179, "numnum:min:MIN_AREAKM": 45, "numnum:sum:MIN_AREAKM": 302, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 179, "numnum:min:MAX_AREAKM": 45, "numnum:sum:MAX_AREAKM": 302, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 69, "numnum:min:MIN_AREAMI": 17, "numnum:sum:MIN_AREAMI": 116, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 69, "numnum:min:MAX_AREAMI": 17, "numnum:sum:MAX_AREAMI": 116, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 215, "numnum:min:MIN_PERKM": 85, "numnum:sum:MIN_PERKM": 390, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 215, "numnum:min:MAX_PERKM": 85, "numnum:sum:MAX_PERKM": 390, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 134, "numnum:min:MIN_PERMI": 53, "numnum:sum:MIN_PERMI": 243, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 134, "numnum:min:MAX_PERMI": 53, "numnum:sum:MAX_PERMI": 243, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 9.433333, "numnum:min:MIN_BBXMIN": 5.966667, "numnum:sum:MIN_BBXMIN": 22.775, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 9.433333, "numnum:min:MAX_BBXMIN": 5.966667, "numnum:sum:MAX_BBXMIN": 22.775, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 9.558333, "numnum:min:MIN_BBXMAX": 6.325, "numnum:sum:MIN_BBXMAX": 23.416666, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 9.558333, "numnum:min:MAX_BBXMAX": 6.325, "numnum:sum:MAX_BBXMAX": 23.416666, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 47.091667, "numnum:min:MIN_BBYMIN": 46.133333, "numnum:sum:MIN_BBYMIN": 140.125, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 47.091667, "numnum:min:MAX_BBYMIN": 46.133333, "numnum:sum:MAX_BBYMIN": 140.125, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 47.233333, "numnum:min:MIN_BBYMAX": 46.291667, "numnum:sum:MIN_BBYMAX": 140.566667, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 47.233333, "numnum:min:MAX_BBYMAX": 46.291667, "numnum:sum:MAX_BBYMAX": 140.566667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 9.503734, "numnum:min:MEAN_BBXC": 6.1424, "numnum:sum:MEAN_BBXC": 23.099361000000003, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 47.167478, "numnum:min:MEAN_BBYC": 46.209427, "numnum:sum:MEAN_BBYC": 140.335144, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 183981, "numnum:min:GN_POP": 5197, "numnum:sum:GN_POP": 310809, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 711, "numnum:min:GTOPO30": 375, "numnum:sum:GTOPO30": 1613, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 3, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 3, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 3, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 3, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 3, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 3, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 3, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 3, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 3, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 3, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 3, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 3, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 3, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 3, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 3, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 3, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 3, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436, "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 7, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 20, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 20, "numnum:sum:NATSCALE": 1180, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 38, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 7, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 4, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 52.521819, "numnum:min:LATITUDE": 43.91715, "numnum:sum:LATITUDE": 338.827617, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 21, "numnum:min:LONGITUDE": 12.46667, "numnum:sum:LONGITUDE": 108.215802, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 3406000, "numnum:min:POP_MAX": 29579, "numnum:sum:POP_MAX": 9741912, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 3094014, "numnum:min:POP_MIN": 2087, "numnum:sum:POP_MIN": 7512321, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 3013258, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 8541571, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 76, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 68, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 4548393, "numnum:min:GEONAMEID": 756135, "numnum:sum:GEONAMEID": 20567371, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 3094014, "numnum:min:MAX_POP10": 29088, "numnum:sum:MAX_POP10": 8966704, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 3093307, "numnum:min:MAX_POP20": 29579, "numnum:sum:MAX_POP20": 9015484, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 3503466, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 9396064, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 3503466, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 9396064, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 3503466, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 5113797, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 1020, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 811, "numnum:min:MIN_AREAKM": 30, "numnum:sum:MIN_AREAKM": 2837, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 1021, "numnum:min:MAX_AREAKM": 30, "numnum:sum:MAX_AREAKM": 3092, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 313, "numnum:min:MIN_AREAMI": 11, "numnum:sum:MIN_AREAMI": 1095, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 394, "numnum:min:MAX_AREAMI": 11, "numnum:sum:MAX_AREAMI": 1193, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 759, "numnum:min:MIN_PERKM": 63, "numnum:sum:MIN_PERKM": 2428, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 759, "numnum:min:MAX_PERKM": 63, "numnum:sum:MAX_PERKM": 2708, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 471, "numnum:min:MIN_PERMI": 39, "numnum:sum:MIN_PERMI": 1508, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 471, "numnum:min:MAX_PERMI": 39, "numnum:sum:MAX_PERMI": 1682, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 20.666667, "numnum:min:MIN_BBXMIN": 12.391667, "numnum:sum:MIN_BBXMIN": 106.67500000000001, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 20.666667, "numnum:min:MAX_BBXMIN": 12.391667, "numnum:sum:MAX_BBXMIN": 106.91051000000002, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 21.358333, "numnum:min:MIN_BBXMAX": 12.541667, "numnum:sum:MIN_BBXMAX": 109.85000000000001, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 21.358333, "numnum:min:MAX_BBXMAX": 12.541667, "numnum:sum:MAX_BBXMAX": 109.85000000000001, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 52.275, "numnum:min:MIN_BBYMIN": 43.9, "numnum:sum:MIN_BBYMIN": 337.75833299999996, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 52.275, "numnum:min:MAX_BBYMIN": 43.9, "numnum:sum:MAX_BBYMIN": 337.84999899999999, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 52.708333, "numnum:min:MIN_BBYMAX": 44, "numnum:sum:MIN_BBYMAX": 339.858332, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 52.708333, "numnum:min:MAX_BBYMAX": 44, "numnum:sum:MAX_BBYMAX": 339.858332, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 21.031458, "numnum:min:MEAN_BBXC": 12.462153, "numnum:sum:MEAN_BBXC": 108.25562000000001, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 52.503658, "numnum:min:MEAN_BBYC": 43.953472, "numnum:sum:MEAN_BBYC": 338.83923, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 78, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 192, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 3426354, "numnum:min:GN_POP": 2087, "numnum:sum:GN_POP": 7805129, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 308, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 553, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 377, "numnum:min:GTOPO30": 35, "numnum:sum:GTOPO30": 1391, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 418, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1104, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 52.51, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 203.05, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 21.01, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 65.1, "numnum:count:POP1950": 7, "numnum:max:POP1950": 3352, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 7141, "numnum:count:POP1955": 7, "numnum:max:POP1955": 3299, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 7295, "numnum:count:POP1960": 7, "numnum:max:POP1960": 3260, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 7469, "numnum:count:POP1965": 7, "numnum:max:POP1965": 3232, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 7562, "numnum:count:POP1970": 7, "numnum:max:POP1970": 3206, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 7652, "numnum:count:POP1975": 7, "numnum:max:POP1975": 3130, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 7759, "numnum:count:POP1980": 7, "numnum:max:POP1980": 3056, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 7849, "numnum:count:POP1985": 7, "numnum:max:POP1985": 3060, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 7922, "numnum:count:POP1990": 7, "numnum:max:POP1990": 3422, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 8358, "numnum:count:POP1995": 7, "numnum:max:POP1995": 3471, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 8444, "numnum:count:POP2000": 7, "numnum:max:POP2000": 3384, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 8380, "numnum:count:POP2005": 7, "numnum:max:POP2005": 3391, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 8512, "numnum:count:POP2010": 7, "numnum:max:POP2010": 3406, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 8590, "numnum:count:POP2015": 7, "numnum:max:POP2015": 3423, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 8692, "numnum:count:POP2020": 7, "numnum:max:POP2020": 3434, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 8779, "numnum:count:POP2025": 7, "numnum:max:POP2025": 3436, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 8807, "numnum:count:POP2050": 7, "numnum:max:POP2050": 3436, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 8827, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ 13.447266, 52.536273 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 8, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 21, "numnum:count:NATSCALE": 8, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 1390, "numnum:count:LABELRANK": 8, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 46, "numnum:count:DIFFASCII": 8, "numnum:max:DIFFASCII": 1, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 1, "numnum:count:ADM0CAP": 8, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 8, "numnum:count:CAPALT": 8, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 8, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 5, "numnum:count:MEGACITY": 8, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 8, "numnum:max:LATITUDE": 55.678564, "numnum:min:LATITUDE": 43.739646, "numnum:sum:LATITUDE": 394.328677, "numnum:count:LONGITUDE": 8, "numnum:max:LONGITUDE": 21, "numnum:min:LONGITUDE": 7.406913, "numnum:sum:LONGITUDE": 115.719531, "numnum:count:CHANGED": 8, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 16, "numnum:count:NAMEDIFF": 8, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 8, "numnum:max:POP_MAX": 3406000, "numnum:min:POP_MAX": 36371, "numnum:sum:POP_MAX": 10833704, "numnum:count:POP_MIN": 8, "numnum:max:POP_MIN": 3094014, "numnum:min:POP_MIN": 2087, "numnum:sum:POP_MIN": 8604692, "numnum:count:POP_OTHER": 8, "numnum:max:POP_OTHER": 3013258, "numnum:min:POP_OTHER": 102371, "numnum:sum:POP_OTHER": 9682230, "numnum:count:RANK_MAX": 8, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 88, "numnum:count:RANK_MIN": 8, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 80, "numnum:count:GEONAMEID": 8, "numnum:max:GEONAMEID": 4548393, "numnum:min:GEONAMEID": 756135, "numnum:sum:GEONAMEID": 23011184, "numnum:count:LS_MATCH": 8, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 8, "numnum:count:CHECKME": 8, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 8, "numnum:max:MAX_POP10": 3094014, "numnum:min:MAX_POP10": 108543, "numnum:sum:MAX_POP10": 10170482, "numnum:count:MAX_POP20": 8, "numnum:max:MAX_POP20": 3093307, "numnum:min:MAX_POP20": 108543, "numnum:sum:MAX_POP20": 10324455, "numnum:count:MAX_POP50": 8, "numnum:max:MAX_POP50": 3503466, "numnum:min:MAX_POP50": 108543, "numnum:sum:MAX_POP50": 10761531, "numnum:count:MAX_POP300": 8, "numnum:max:MAX_POP300": 3503466, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 10652988, "numnum:count:MAX_POP310": 8, "numnum:max:MAX_POP310": 3503466, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 6370721, "numnum:count:MAX_NATSCA": 8, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 1350, "numnum:count:MIN_AREAKM": 8, "numnum:max:MIN_AREAKM": 811, "numnum:min:MIN_AREAKM": 36, "numnum:sum:MIN_AREAKM": 3281, "numnum:count:MAX_AREAKM": 8, "numnum:max:MAX_AREAKM": 1021, "numnum:min:MAX_AREAKM": 36, "numnum:sum:MAX_AREAKM": 3675, "numnum:count:MIN_AREAMI": 8, "numnum:max:MIN_AREAMI": 313, "numnum:min:MIN_AREAMI": 14, "numnum:sum:MIN_AREAMI": 1267, "numnum:count:MAX_AREAMI": 8, "numnum:max:MAX_AREAMI": 394, "numnum:min:MAX_AREAMI": 14, "numnum:sum:MAX_AREAMI": 1419, "numnum:count:MIN_PERKM": 8, "numnum:max:MIN_PERKM": 759, "numnum:min:MIN_PERKM": 57, "numnum:sum:MIN_PERKM": 2770, "numnum:count:MAX_PERKM": 8, "numnum:max:MAX_PERKM": 759, "numnum:min:MAX_PERKM": 57, "numnum:sum:MAX_PERKM": 3244, "numnum:count:MIN_PERMI": 8, "numnum:max:MIN_PERMI": 471, "numnum:min:MIN_PERMI": 35, "numnum:sum:MIN_PERMI": 1720, "numnum:count:MAX_PERMI": 8, "numnum:max:MAX_PERMI": 471, "numnum:min:MAX_PERMI": 35, "numnum:sum:MAX_PERMI": 2015, "numnum:count:MIN_BBXMIN": 8, "numnum:max:MIN_BBXMIN": 20.666667, "numnum:min:MIN_BBXMIN": 7.35, "numnum:sum:MIN_BBXMIN": 113.75000000000002, "numnum:count:MAX_BBXMIN": 8, "numnum:max:MAX_BBXMIN": 20.666667, "numnum:min:MAX_BBXMIN": 7.35, "numnum:sum:MAX_BBXMIN": 114.18551000000001, "numnum:count:MIN_BBXMAX": 8, "numnum:max:MIN_BBXMAX": 21.358333, "numnum:min:MIN_BBXMAX": 7.533333, "numnum:sum:MIN_BBXMAX": 117.499999, "numnum:count:MAX_BBXMAX": 8, "numnum:max:MAX_BBXMAX": 21.358333, "numnum:min:MAX_BBXMAX": 7.533333, "numnum:sum:MAX_BBXMAX": 117.499999, "numnum:count:MIN_BBYMIN": 8, "numnum:max:MIN_BBYMIN": 55.4, "numnum:min:MIN_BBYMIN": 43.716667, "numnum:sum:MIN_BBYMIN": 392.975, "numnum:count:MAX_BBYMIN": 8, "numnum:max:MAX_BBYMIN": 55.583333, "numnum:min:MAX_BBYMIN": 43.716667, "numnum:sum:MAX_BBYMIN": 393.24999900000008, "numnum:count:MIN_BBYMAX": 8, "numnum:max:MIN_BBYMAX": 55.927962, "numnum:min:MIN_BBYMAX": 43.8, "numnum:sum:MIN_BBYMAX": 395.58629400000009, "numnum:count:MAX_BBYMAX": 8, "numnum:max:MAX_BBYMAX": 56.008333, "numnum:min:MAX_BBYMAX": 43.8, "numnum:sum:MAX_BBYMAX": 395.6666650000001, "numnum:count:MEAN_BBXC": 8, "numnum:max:MEAN_BBXC": 21.031458, "numnum:min:MEAN_BBXC": 7.442529, "numnum:sum:MEAN_BBXC": 115.67317100000001, "numnum:count:MEAN_BBYC": 8, "numnum:max:MEAN_BBYC": 55.716213, "numnum:min:MEAN_BBYC": 43.754167, "numnum:sum:MEAN_BBYC": 394.35613800000007, "numnum:count:COMPARE": 8, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 8, "numnum:max:ADMIN1_COD": 78, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 202, "numnum:count:GN_POP": 8, "numnum:max:GN_POP": 3426354, "numnum:min:GN_POP": 1020, "numnum:sum:GN_POP": 8930764, "numnum:count:ELEVATION": 8, "numnum:max:ELEVATION": 308, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 553, "numnum:count:GTOPO30": 8, "numnum:max:GTOPO30": 306, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8981, "numnum:count:UN_FID": 8, "numnum:max:UN_FID": 418, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1279, "numnum:count:UN_LAT": 8, "numnum:max:UN_LAT": 55.71, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 258.76, "numnum:count:UN_LONG": 8, "numnum:max:UN_LONG": 21.01, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 77.64000000000002, "numnum:count:POP1950": 8, "numnum:max:POP1950": 3352, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 8357, "numnum:count:POP1955": 8, "numnum:max:POP1955": 3299, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 8522, "numnum:count:POP1960": 8, "numnum:max:POP1960": 3260, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 8753, "numnum:count:POP1965": 8, "numnum:max:POP1965": 3232, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 8935, "numnum:count:POP1970": 8, "numnum:max:POP1970": 3206, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 9032, "numnum:count:POP1975": 8, "numnum:max:POP1975": 3130, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 8931, "numnum:count:POP1980": 8, "numnum:max:POP1980": 3056, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 8945, "numnum:count:POP1985": 8, "numnum:max:POP1985": 3060, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 8978, "numnum:count:POP1990": 8, "numnum:max:POP1990": 3422, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 9393, "numnum:count:POP1995": 8, "numnum:max:POP1995": 3471, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9492, "numnum:count:POP2000": 8, "numnum:max:POP2000": 3384, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 9457, "numnum:count:POP2005": 8, "numnum:max:POP2005": 3391, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 9597, "numnum:count:POP2010": 8, "numnum:max:POP2010": 3406, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 9675, "numnum:count:POP2015": 8, "numnum:max:POP2015": 3423, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9779, "numnum:count:POP2020": 8, "numnum:max:POP2020": 3434, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 9871, "numnum:count:POP2025": 8, "numnum:max:POP2025": 3436, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 9902, "numnum:count:POP2050": 8, "numnum:max:POP2050": 3436, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 9923, "accum": 8, "numnum:count:accum2": 8, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 8, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 7.382812, 43.707594 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 8, "numnum:max:SCALERANK": 8, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 27, "numnum:count:NATSCALE": 8, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 10, "numnum:sum:NATSCALE": 1240, "numnum:count:LABELRANK": 8, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 51, "numnum:count:DIFFASCII": 8, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 8, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 8, "numnum:count:CAPALT": 8, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 8, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 8, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 8, "numnum:max:LATITUDE": 48.150018, "numnum:min:LATITUDE": 41.327541, "numnum:sum:LATITUDE": 351.908173, "numnum:count:LONGITUDE": 8, "numnum:max:LONGITUDE": 20.467991, "numnum:min:LONGITUDE": 12.447808, "numnum:sum:LONGITUDE": 139.06755099999999, "numnum:count:CHANGED": 8, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 16, "numnum:count:NAMEDIFF": 8, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 8, "numnum:max:POP_MAX": 3339000, "numnum:min:POP_MAX": 832, "numnum:sum:POP_MAX": 8279500, "numnum:count:POP_MIN": 8, "numnum:max:POP_MIN": 1679000, "numnum:min:POP_MIN": 832, "numnum:sum:POP_MIN": 4374632, "numnum:count:POP_OTHER": 8, "numnum:max:POP_OTHER": 2050212, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 7109424, "numnum:count:RANK_MAX": 8, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 2, "numnum:sum:RANK_MAX": 79, "numnum:count:RANK_MIN": 8, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 2, "numnum:sum:RANK_MIN": 73, "numnum:count:GEONAMEID": 8, "numnum:max:GEONAMEID": 6691831, "numnum:min:GEONAMEID": 792680, "numnum:sum:GEONAMEID": 27388088, "numnum:count:LS_MATCH": 8, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 8, "numnum:count:CHECKME": 8, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 8, "numnum:max:MAX_POP10": 2143900, "numnum:min:MAX_POP10": 145850, "numnum:sum:MAX_POP10": 7538975, "numnum:count:MAX_POP20": 8, "numnum:max:MAX_POP20": 2143900, "numnum:min:MAX_POP20": 145850, "numnum:sum:MAX_POP20": 7538975, "numnum:count:MAX_POP50": 8, "numnum:max:MAX_POP50": 2666328, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 7424641, "numnum:count:MAX_POP300": 8, "numnum:max:MAX_POP300": 2666328, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 7424641, "numnum:count:MAX_POP310": 8, "numnum:max:MAX_POP310": 2666328, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 2666328, "numnum:count:MAX_NATSCA": 8, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 920, "numnum:count:MIN_AREAKM": 8, "numnum:max:MIN_AREAKM": 556, "numnum:min:MIN_AREAKM": 41, "numnum:sum:MIN_AREAKM": 1779, "numnum:count:MAX_AREAKM": 8, "numnum:max:MAX_AREAKM": 683, "numnum:min:MAX_AREAKM": 41, "numnum:sum:MAX_AREAKM": 1957, "numnum:count:MIN_AREAMI": 8, "numnum:max:MIN_AREAMI": 215, "numnum:min:MIN_AREAMI": 16, "numnum:sum:MIN_AREAMI": 686, "numnum:count:MAX_AREAMI": 8, "numnum:max:MAX_AREAMI": 264, "numnum:min:MAX_AREAMI": 16, "numnum:sum:MAX_AREAMI": 755, "numnum:count:MIN_PERKM": 8, "numnum:max:MIN_PERKM": 460, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 1543, "numnum:count:MAX_PERKM": 8, "numnum:max:MAX_PERKM": 500, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 1661, "numnum:count:MIN_PERMI": 8, "numnum:max:MIN_PERMI": 286, "numnum:min:MIN_PERMI": 27, "numnum:sum:MIN_PERMI": 959, "numnum:count:MAX_PERMI": 8, "numnum:max:MAX_PERMI": 311, "numnum:min:MAX_PERMI": 27, "numnum:sum:MAX_PERMI": 1032, "numnum:count:MIN_BBXMIN": 8, "numnum:max:MIN_BBXMIN": 20.316667, "numnum:min:MIN_BBXMIN": 12.333333, "numnum:sum:MIN_BBXMIN": 138.008333, "numnum:count:MAX_BBXMIN": 8, "numnum:max:MAX_BBXMIN": 20.316667, "numnum:min:MAX_BBXMIN": 12.333333, "numnum:sum:MAX_BBXMIN": 138.125494, "numnum:count:MIN_BBXMAX": 8, "numnum:max:MIN_BBXMAX": 20.575, "numnum:min:MIN_BBXMAX": 12.481009, "numnum:sum:MIN_BBXMAX": 140.13101, "numnum:count:MAX_BBXMAX": 8, "numnum:max:MAX_BBXMAX": 20.575, "numnum:min:MAX_BBXMAX": 12.481009, "numnum:sum:MAX_BBXMAX": 140.13101, "numnum:count:MIN_BBYMIN": 8, "numnum:max:MIN_BBYMIN": 48.091667, "numnum:min:MIN_BBYMIN": 41.275, "numnum:sum:MIN_BBYMIN": 351.03333399999999, "numnum:count:MAX_BBYMIN": 8, "numnum:max:MAX_BBYMIN": 48.091667, "numnum:min:MAX_BBYMIN": 41.275, "numnum:sum:MAX_BBYMIN": 351.03333399999999, "numnum:count:MIN_BBYMAX": 8, "numnum:max:MIN_BBYMAX": 48.225, "numnum:min:MIN_BBYMAX": 41.4, "numnum:sum:MIN_BBYMAX": 352.641666, "numnum:count:MAX_BBYMAX": 8, "numnum:max:MAX_BBYMAX": 48.225, "numnum:min:MAX_BBYMAX": 41.4, "numnum:sum:MAX_BBYMAX": 352.65833299999999, "numnum:count:MEAN_BBXC": 8, "numnum:max:MEAN_BBXC": 20.449561, "numnum:min:MEAN_BBXC": 12.419907, "numnum:sum:MEAN_BBXC": 139.089265, "numnum:count:MEAN_BBYC": 8, "numnum:max:MEAN_BBYC": 48.159311, "numnum:min:MEAN_BBYC": 41.339474, "numnum:sum:MEAN_BBYC": 351.828219, "numnum:count:COMPARE": 8, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 8, "numnum:max:ADMIN1_COD": 50, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 58, "numnum:count:GN_POP": 8, "numnum:max:GN_POP": 1696128, "numnum:min:GN_POP": 826, "numnum:sum:GN_POP": 4637799, "numnum:count:ELEVATION": 8, "numnum:max:ELEVATION": 187, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 187, "numnum:count:GTOPO30": 8, "numnum:max:GTOPO30": 545, "numnum:min:GTOPO30": 17, "numnum:sum:GTOPO30": 1228, "numnum:count:UN_FID": 8, "numnum:max:UN_FID": 448, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 967, "numnum:count:UN_LAT": 8, "numnum:max:UN_LAT": 47.51, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 134.17, "numnum:count:UN_LONG": 8, "numnum:max:UN_LONG": 20.41, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 52.010000000000008, "numnum:count:POP1950": 8, "numnum:max:POP1950": 1884, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 3913, "numnum:count:POP1955": 8, "numnum:max:POP1955": 2143, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 4358, "numnum:count:POP1960": 8, "numnum:max:POP1960": 2456, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 4843, "numnum:count:POP1965": 8, "numnum:max:POP1965": 2780, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 5307, "numnum:count:POP1970": 8, "numnum:max:POP1970": 3135, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 5810, "numnum:count:POP1975": 8, "numnum:max:POP1975": 3300, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 6178, "numnum:count:POP1980": 8, "numnum:max:POP1980": 3390, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 6504, "numnum:count:POP1985": 8, "numnum:max:POP1985": 3429, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 6586, "numnum:count:POP1990": 8, "numnum:max:POP1990": 3450, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 6617, "numnum:count:POP1995": 8, "numnum:max:POP1995": 3425, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 6467, "numnum:count:POP2000": 8, "numnum:max:POP2000": 3385, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6299, "numnum:count:POP2005": 8, "numnum:max:POP2005": 3348, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6147, "numnum:count:POP2010": 8, "numnum:max:POP2010": 3339, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 6117, "numnum:count:POP2015": 8, "numnum:max:POP2015": 3333, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 6093, "numnum:count:POP2020": 8, "numnum:max:POP2020": 3330, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 6093, "numnum:count:POP2025": 8, "numnum:max:POP2025": 3330, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 6117, "numnum:count:POP2050": 8, "numnum:max:POP2050": 3330, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 6148, "accum": 8, "numnum:count:accum2": 8, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 8, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 8, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 28, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 10, "numnum:sum:NATSCALE": 1040, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 35, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 7, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 48.150018, "numnum:min:LATITUDE": 41.895956, "numnum:sum:LATITUDE": 309.679137, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 19.266307, "numnum:min:LONGITUDE": 12.447808, "numnum:sum:LONGITUDE": 111.247347, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 16, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 3339000, "numnum:min:POP_MAX": 832, "numnum:sum:POP_MAX": 6314729, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 1679000, "numnum:min:POP_MIN": 832, "numnum:sum:POP_MIN": 2883346, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 2050212, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 5320091, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 2, "numnum:sum:RANK_MAX": 63, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 2, "numnum:sum:RANK_MIN": 58, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 6691831, "numnum:min:GEONAMEID": 3054643, "numnum:sum:GEONAMEID": 26579603, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 2143900, "numnum:min:MAX_POP10": 29088, "numnum:sum:MAX_POP10": 5746209, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 2143900, "numnum:min:MAX_POP20": 29579, "numnum:sum:MAX_POP20": 5746700, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 2666328, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 5602787, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 2666328, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 5602787, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 2666328, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 2666328, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 740, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 556, "numnum:min:MIN_AREAKM": 30, "numnum:sum:MIN_AREAKM": 1526, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 683, "numnum:min:MAX_AREAKM": 30, "numnum:sum:MAX_AREAKM": 1704, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 215, "numnum:min:MIN_AREAMI": 11, "numnum:sum:MIN_AREAMI": 588, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 264, "numnum:min:MAX_AREAMI": 11, "numnum:sum:MAX_AREAMI": 657, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 460, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 1342, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 500, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 1460, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 286, "numnum:min:MIN_PERMI": 27, "numnum:sum:MIN_PERMI": 834, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 311, "numnum:min:MAX_PERMI": 27, "numnum:sum:MAX_PERMI": 907, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 19.208333, "numnum:min:MIN_BBXMIN": 12.333333, "numnum:sum:MIN_BBXMIN": 110.35000000000001, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 19.208333, "numnum:min:MAX_BBXMIN": 12.333333, "numnum:sum:MAX_BBXMIN": 110.46716099999999, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 19.416667, "numnum:min:MIN_BBXMAX": 12.481009, "numnum:sum:MIN_BBXMAX": 112.222677, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 19.416667, "numnum:min:MAX_BBXMAX": 12.481009, "numnum:sum:MAX_BBXMAX": 112.222677, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 48.091667, "numnum:min:MIN_BBYMIN": 41.666667, "numnum:sum:MIN_BBYMIN": 308.9666669999999, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 48.091667, "numnum:min:MAX_BBYMIN": 41.666667, "numnum:sum:MAX_BBYMIN": 308.9666669999999, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 48.225, "numnum:min:MIN_BBYMAX": 42.033333, "numnum:sum:MIN_BBYMAX": 310.341666, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 48.225, "numnum:min:MAX_BBYMAX": 42.05, "numnum:sum:MAX_BBYMAX": 310.358333, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 19.263397, "numnum:min:MEAN_BBXC": 12.419907, "numnum:sum:MEAN_BBXC": 111.296301, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 48.159311, "numnum:min:MEAN_BBYC": 41.864442, "numnum:sum:MEAN_BBYC": 309.647602, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 7, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 15, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 1696128, "numnum:min:GN_POP": 826, "numnum:sum:GN_POP": 3018347, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 187, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 187, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 545, "numnum:min:GTOPO30": 17, "numnum:sum:GTOPO30": 1412, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 308, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 519, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 47.51, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 89.38, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 19.09, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 31.6, "numnum:count:POP1950": 7, "numnum:max:POP1950": 1884, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 3502, "numnum:count:POP1955": 7, "numnum:max:POP1955": 2143, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3857, "numnum:count:POP1960": 7, "numnum:max:POP1960": 2456, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 4267, "numnum:count:POP1965": 7, "numnum:max:POP1965": 2780, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 4658, "numnum:count:POP1970": 7, "numnum:max:POP1970": 3135, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 5081, "numnum:count:POP1975": 7, "numnum:max:POP1975": 3300, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5305, "numnum:count:POP1980": 7, "numnum:max:POP1980": 3390, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5447, "numnum:count:POP1985": 7, "numnum:max:POP1985": 3429, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5465, "numnum:count:POP1990": 7, "numnum:max:POP1990": 3450, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5455, "numnum:count:POP1995": 7, "numnum:max:POP1995": 3425, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5318, "numnum:count:POP2000": 7, "numnum:max:POP2000": 3385, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 5172, "numnum:count:POP2005": 7, "numnum:max:POP2005": 3348, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 5041, "numnum:count:POP2010": 7, "numnum:max:POP2010": 3339, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 5018, "numnum:count:POP2015": 7, "numnum:max:POP2015": 3333, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4997, "numnum:count:POP2020": 7, "numnum:max:POP2020": 3330, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4985, "numnum:count:POP2025": 7, "numnum:max:POP2025": 3330, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 4985, "numnum:count:POP2050": 7, "numnum:max:POP2050": 3330, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4985, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 43.961191 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 4, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 50, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 100, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 42.66671, "numnum:min:LATITUDE": 42.000006, "numnum:sum:LATITUDE": 84.66671600000001, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 21.433461, "numnum:min:LONGITUDE": 21.165984, "numnum:sum:LONGITUDE": 42.599445, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 494087, "numnum:min:POP_MAX": 465186, "numnum:sum:POP_MAX": 959273, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 474889, "numnum:min:POP_MIN": 198214, "numnum:sum:POP_MIN": 673103, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 491890, "numnum:min:POP_OTHER": 261783, "numnum:sum:POP_OTHER": 753673, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 10, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 20, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 786714, "numnum:min:GEONAMEID": 785842, "numnum:sum:GEONAMEID": 1572556, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 494087, "numnum:min:MAX_POP10": 265361, "numnum:sum:MAX_POP10": 759448, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 494087, "numnum:min:MAX_POP20": 265361, "numnum:sum:MAX_POP20": 759448, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 494087, "numnum:min:MAX_POP50": 265361, "numnum:sum:MAX_POP50": 759448, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 494087, "numnum:min:MAX_POP300": 265361, "numnum:sum:MAX_POP300": 759448, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 114, "numnum:min:MIN_AREAKM": 41, "numnum:sum:MIN_AREAKM": 155, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 114, "numnum:min:MAX_AREAKM": 41, "numnum:sum:MAX_AREAKM": 155, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 44, "numnum:min:MIN_AREAMI": 16, "numnum:sum:MIN_AREAMI": 60, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 44, "numnum:min:MAX_AREAMI": 16, "numnum:sum:MAX_AREAMI": 60, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 98, "numnum:min:MIN_PERKM": 69, "numnum:sum:MIN_PERKM": 167, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 98, "numnum:min:MAX_PERKM": 69, "numnum:sum:MAX_PERKM": 167, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 61, "numnum:min:MIN_PERMI": 43, "numnum:sum:MIN_PERMI": 104, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 61, "numnum:min:MAX_PERMI": 43, "numnum:sum:MAX_PERMI": 104, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 21.3, "numnum:min:MIN_BBXMIN": 21.066667, "numnum:sum:MIN_BBXMIN": 42.366667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 21.3, "numnum:min:MAX_BBXMIN": 21.066667, "numnum:sum:MAX_BBXMIN": 42.366667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 21.533333, "numnum:min:MIN_BBXMAX": 21.208333, "numnum:sum:MIN_BBXMAX": 42.741665999999998, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 21.533333, "numnum:min:MAX_BBXMAX": 21.208333, "numnum:sum:MAX_BBXMAX": 42.741665999999998, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 42.625, "numnum:min:MIN_BBYMIN": 41.95, "numnum:sum:MIN_BBYMIN": 84.575, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 42.625, "numnum:min:MAX_BBYMIN": 41.95, "numnum:sum:MAX_BBYMIN": 84.575, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 42.733333, "numnum:min:MIN_BBYMAX": 42.066667, "numnum:sum:MIN_BBYMAX": 84.80000000000001, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 42.733333, "numnum:min:MAX_BBYMAX": 42.066667, "numnum:sum:MAX_BBYMAX": 84.80000000000001, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 21.430243, "numnum:min:MEAN_BBXC": 21.146346, "numnum:sum:MEAN_BBXC": 42.576589, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 42.666218, "numnum:min:MEAN_BBYC": 42.007257, "numnum:sum:MEAN_BBYC": 84.673475, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 1, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 1, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 550000, "numnum:min:GN_POP": 474889, "numnum:sum:GN_POP": 1024889, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 668, "numnum:min:GTOPO30": 246, "numnum:sum:GTOPO30": 914, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.682435 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade", "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 19, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 630, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 7, "numnum:sum:LABELRANK": 47, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 60.175563, "numnum:min:LATITUDE": 41.327541, "numnum:sum:LATITUDE": 290.422342, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 24.934126, "numnum:min:LONGITUDE": 19.818883, "numnum:sum:LONGITUDE": 132.548486, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 1115000, "numnum:min:POP_MAX": 394024, "numnum:sum:POP_MAX": 4462647, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 1099000, "numnum:min:POP_MIN": 198214, "numnum:sum:POP_MIN": 3091873, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 1271541, "numnum:min:POP_OTHER": 261783, "numnum:sum:POP_OTHER": 3623913, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 65, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 62, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 3183875, "numnum:min:GEONAMEID": 588409, "numnum:sum:GEONAMEID": 6795745, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 1291613, "numnum:min:MAX_POP10": 265361, "numnum:sum:MAX_POP10": 3773562, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 1291613, "numnum:min:MAX_POP20": 265361, "numnum:sum:MAX_POP20": 3773562, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 1291613, "numnum:min:MAX_POP50": 265361, "numnum:sum:MAX_POP50": 3773562, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 1291613, "numnum:min:MAX_POP300": 265361, "numnum:sum:MAX_POP300": 3773562, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 513, "numnum:min:MIN_AREAKM": 41, "numnum:sum:MIN_AREAKM": 1081, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 513, "numnum:min:MAX_AREAKM": 41, "numnum:sum:MAX_AREAKM": 1081, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 198, "numnum:min:MIN_AREAMI": 16, "numnum:sum:MIN_AREAMI": 417, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 198, "numnum:min:MAX_AREAMI": 16, "numnum:sum:MAX_AREAMI": 417, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 550, "numnum:min:MIN_PERKM": 69, "numnum:sum:MIN_PERKM": 1145, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 550, "numnum:min:MAX_PERKM": 69, "numnum:sum:MAX_PERKM": 1145, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 342, "numnum:min:MIN_PERMI": 43, "numnum:sum:MIN_PERMI": 712, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 342, "numnum:min:MAX_PERMI": 43, "numnum:sum:MAX_PERMI": 712, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 24.591667, "numnum:min:MIN_BBXMIN": 19.733333, "numnum:sum:MIN_BBXMIN": 131.566667, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 24.591667, "numnum:min:MAX_BBXMIN": 19.733333, "numnum:sum:MAX_BBXMIN": 131.566667, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 25.191667, "numnum:min:MIN_BBXMAX": 19.875, "numnum:sum:MIN_BBXMAX": 133.29999999999999, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 25.191667, "numnum:min:MAX_BBXMAX": 19.875, "numnum:sum:MAX_BBXMAX": 133.29999999999999, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 60.116667, "numnum:min:MIN_BBYMIN": 41.275, "numnum:sum:MIN_BBYMIN": 289.991667, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 60.116667, "numnum:min:MAX_BBYMIN": 41.275, "numnum:sum:MAX_BBYMIN": 289.991667, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 60.433333, "numnum:min:MIN_BBYMAX": 41.4, "numnum:sum:MIN_BBYMAX": 291.058333, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 60.433333, "numnum:min:MAX_BBYMAX": 41.4, "numnum:sum:MAX_BBYMAX": 291.058333, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 24.910042, "numnum:min:MEAN_BBXC": 19.805556, "numnum:sum:MEAN_BBXC": 132.488339, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 60.254779, "numnum:min:MEAN_BBYC": 41.339474, "numnum:sum:MEAN_BBYC": 290.489433, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 50, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 65, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 1273651, "numnum:min:GN_POP": 374801, "numnum:sum:GN_POP": 3625822, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 668, "numnum:min:GTOPO30": 22, "numnum:sum:GTOPO30": 1152, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 448, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 631, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 60.19, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 104.97999999999999, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 24.97, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 45.379999999999998, "numnum:count:POP1950": 6, "numnum:max:POP1950": 411, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 777, "numnum:count:POP1955": 6, "numnum:max:POP1955": 501, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 906, "numnum:count:POP1960": 6, "numnum:max:POP1960": 576, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1024, "numnum:count:POP1965": 6, "numnum:max:POP1965": 649, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1127, "numnum:count:POP1970": 6, "numnum:max:POP1970": 729, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1236, "numnum:count:POP1975": 6, "numnum:max:POP1975": 873, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1455, "numnum:count:POP1980": 6, "numnum:max:POP1980": 1057, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1731, "numnum:count:POP1985": 6, "numnum:max:POP1985": 1121, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1845, "numnum:count:POP1990": 6, "numnum:max:POP1990": 1162, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2034, "numnum:count:POP1995": 6, "numnum:max:POP1995": 1149, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2092, "numnum:count:POP2000": 6, "numnum:max:POP2000": 1127, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2146, "numnum:count:POP2005": 6, "numnum:max:POP2005": 1106, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2200, "numnum:count:POP2010": 6, "numnum:max:POP2010": 1115, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2214, "numnum:count:POP2015": 6, "numnum:max:POP2015": 1139, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2235, "numnum:count:POP2020": 6, "numnum:max:POP2020": 1169, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 2277, "numnum:count:POP2025": 6, "numnum:max:POP2025": 1195, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2327, "numnum:count:POP2050": 6, "numnum:max:POP2050": 1220, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2383, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.840291 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220, "accum2": 1, "numnum:count:SCALERANK": 8, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 20, "numnum:count:NATSCALE": 8, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1250, "numnum:count:LABELRANK": 8, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 55, "numnum:count:DIFFASCII": 8, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 8, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 8, "numnum:count:CAPALT": 8, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 8, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 8, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 8, "numnum:max:LATITUDE": 60.175563, "numnum:min:LATITUDE": 42.683349, "numnum:sum:LATITUDE": 422.692895, "numnum:count:LONGITUDE": 8, "numnum:max:LONGITUDE": 30.516628, "numnum:min:LONGITUDE": 23.316654, "numnum:sum:LONGITUDE": 206.578623, "numnum:count:CHANGED": 8, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 13, "numnum:count:NAMEDIFF": 8, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 8, "numnum:max:POP_MAX": 2709000, "numnum:min:POP_MAX": 394024, "numnum:sum:POP_MAX": 10434962, "numnum:count:POP_MIN": 8, "numnum:max:POP_MIN": 1742194, "numnum:min:POP_MIN": 340027, "numnum:sum:POP_MIN": 7967213, "numnum:count:POP_OTHER": 8, "numnum:max:POP_OTHER": 1636574, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 7253183, "numnum:count:RANK_MAX": 8, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 92, "numnum:count:RANK_MIN": 8, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 90, "numnum:count:GEONAMEID": 8, "numnum:max:GEONAMEID": 727011, "numnum:min:GEONAMEID": 456172, "numnum:sum:GEONAMEID": 5035031, "numnum:count:LS_MATCH": 8, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 8, "numnum:count:CHECKME": 8, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 8, "numnum:max:MAX_POP10": 1742194, "numnum:min:MAX_POP10": 340027, "numnum:sum:MAX_POP10": 8260989, "numnum:count:MAX_POP20": 8, "numnum:max:MAX_POP20": 1742194, "numnum:min:MAX_POP20": 340027, "numnum:sum:MAX_POP20": 8260989, "numnum:count:MAX_POP50": 8, "numnum:max:MAX_POP50": 1742194, "numnum:min:MAX_POP50": 340027, "numnum:sum:MAX_POP50": 8260989, "numnum:count:MAX_POP300": 8, "numnum:max:MAX_POP300": 1742194, "numnum:min:MAX_POP300": 340027, "numnum:sum:MAX_POP300": 8260989, "numnum:count:MAX_POP310": 8, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 8, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 800, "numnum:count:MIN_AREAKM": 8, "numnum:max:MIN_AREAKM": 513, "numnum:min:MIN_AREAKM": 126, "numnum:sum:MIN_AREAKM": 1930, "numnum:count:MAX_AREAKM": 8, "numnum:max:MAX_AREAKM": 513, "numnum:min:MAX_AREAKM": 126, "numnum:sum:MAX_AREAKM": 1930, "numnum:count:MIN_AREAMI": 8, "numnum:max:MIN_AREAMI": 198, "numnum:min:MIN_AREAMI": 49, "numnum:sum:MIN_AREAMI": 746, "numnum:count:MAX_AREAMI": 8, "numnum:max:MAX_AREAMI": 198, "numnum:min:MAX_AREAMI": 49, "numnum:sum:MAX_AREAMI": 746, "numnum:count:MIN_PERKM": 8, "numnum:max:MIN_PERKM": 550, "numnum:min:MIN_PERKM": 120, "numnum:sum:MIN_PERKM": 1896, "numnum:count:MAX_PERKM": 8, "numnum:max:MAX_PERKM": 550, "numnum:min:MAX_PERKM": 120, "numnum:sum:MAX_PERKM": 1896, "numnum:count:MIN_PERMI": 8, "numnum:max:MIN_PERMI": 342, "numnum:min:MIN_PERMI": 75, "numnum:sum:MIN_PERMI": 1180, "numnum:count:MAX_PERMI": 8, "numnum:max:MAX_PERMI": 342, "numnum:min:MAX_PERMI": 75, "numnum:sum:MAX_PERMI": 1180, "numnum:count:MIN_BBXMIN": 8, "numnum:max:MIN_BBXMIN": 30.325, "numnum:min:MIN_BBXMIN": 23.208333, "numnum:sum:MIN_BBXMIN": 205.10000000000003, "numnum:count:MAX_BBXMIN": 8, "numnum:max:MAX_BBXMIN": 30.325, "numnum:min:MAX_BBXMIN": 23.208333, "numnum:sum:MAX_BBXMIN": 205.10000000000003, "numnum:count:MIN_BBXMAX": 8, "numnum:max:MIN_BBXMAX": 30.575, "numnum:min:MIN_BBXMAX": 23.45, "numnum:sum:MIN_BBXMAX": 207.758335, "numnum:count:MAX_BBXMAX": 8, "numnum:max:MAX_BBXMAX": 30.575, "numnum:min:MAX_BBXMAX": 23.45, "numnum:sum:MAX_BBXMAX": 207.758335, "numnum:count:MIN_BBYMIN": 8, "numnum:max:MIN_BBYMIN": 60.116667, "numnum:min:MIN_BBYMIN": 42.575, "numnum:sum:MIN_BBYMIN": 421.958334, "numnum:count:MAX_BBYMIN": 8, "numnum:max:MAX_BBYMIN": 60.116667, "numnum:min:MAX_BBYMIN": 42.575, "numnum:sum:MAX_BBYMIN": 421.958334, "numnum:count:MIN_BBYMAX": 8, "numnum:max:MIN_BBYMAX": 60.433333, "numnum:min:MIN_BBYMAX": 42.8, "numnum:sum:MIN_BBYMAX": 423.783333, "numnum:count:MAX_BBYMAX": 8, "numnum:max:MAX_BBYMAX": 60.433333, "numnum:min:MAX_BBYMAX": 42.8, "numnum:sum:MAX_BBYMAX": 423.783333, "numnum:count:MEAN_BBXC": 8, "numnum:max:MEAN_BBXC": 30.45263, "numnum:min:MEAN_BBXC": 23.328319, "numnum:sum:MEAN_BBXC": 206.469202, "numnum:count:MEAN_BBYC": 8, "numnum:max:MEAN_BBYC": 60.254779, "numnum:min:MEAN_BBYC": 42.68234, "numnum:sum:MEAN_BBYC": 422.7982160000001, "numnum:count:COMPARE": 8, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 8, "numnum:max:ADMIN1_COD": 65, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 173, "numnum:count:GN_POP": 8, "numnum:max:GN_POP": 2514227, "numnum:min:GN_POP": 394024, "numnum:sum:GN_POP": 9523481, "numnum:count:ELEVATION": 8, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 8, "numnum:max:GTOPO30": 558, "numnum:min:GTOPO30": 9, "numnum:sum:GTOPO30": 1176, "numnum:count:UN_FID": 8, "numnum:max:UN_FID": 511, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1120, "numnum:count:UN_LAT": 8, "numnum:max:UN_LAT": 60.19, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 251.64999999999999, "numnum:count:UN_LONG": 8, "numnum:max:UN_LONG": 30.5, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 132.48999999999999, "numnum:count:POP1950": 8, "numnum:max:POP1950": 815, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2639, "numnum:count:POP1955": 8, "numnum:max:POP1955": 974, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3265, "numnum:count:POP1960": 8, "numnum:max:POP1960": 1163, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 3872, "numnum:count:POP1965": 8, "numnum:max:POP1965": 1389, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 4546, "numnum:count:POP1970": 8, "numnum:max:POP1970": 1655, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 5378, "numnum:count:POP1975": 8, "numnum:max:POP1975": 1926, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 6307, "numnum:count:POP1980": 8, "numnum:max:POP1980": 2201, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 7132, "numnum:count:POP1985": 8, "numnum:max:POP1985": 2410, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 7739, "numnum:count:POP1990": 8, "numnum:max:POP1990": 2574, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 8284, "numnum:count:POP1995": 8, "numnum:max:POP1995": 2590, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 8368, "numnum:count:POP2000": 8, "numnum:max:POP2000": 2606, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 8402, "numnum:count:POP2005": 8, "numnum:max:POP2005": 2672, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 8643, "numnum:count:POP2010": 8, "numnum:max:POP2010": 2709, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 8756, "numnum:count:POP2015": 8, "numnum:max:POP2015": 2748, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 8892, "numnum:count:POP2020": 8, "numnum:max:POP2020": 2770, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 9000, "numnum:count:POP2025": 8, "numnum:max:POP2025": 2772, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 9035, "numnum:count:POP2050": 8, "numnum:max:POP2050": 2772, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 9060, "accum": 8, "numnum:count:accum2": 8, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 8, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ 24.960938, 60.196156 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 22, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 56.950024, "numnum:min:LATITUDE": 53.899977, "numnum:sum:LATITUDE": 165.533367, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 27.566627, "numnum:min:LONGITUDE": 24.099965, "numnum:sum:LONGITUDE": 76.983227, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1805000, "numnum:min:POP_MAX": 542366, "numnum:sum:POP_MAX": 3089938, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1577138, "numnum:min:POP_MIN": 507029, "numnum:sum:POP_MIN": 2789200, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1557919, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 2052275, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 34, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 625144, "numnum:min:GEONAMEID": 456172, "numnum:sum:GEONAMEID": 1674432, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1577138, "numnum:min:MAX_POP10": 507029, "numnum:sum:MAX_POP10": 2789200, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1577138, "numnum:min:MAX_POP20": 507029, "numnum:sum:MAX_POP20": 2789200, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1577138, "numnum:min:MAX_POP50": 507029, "numnum:sum:MAX_POP50": 2789200, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1577138, "numnum:min:MAX_POP300": 507029, "numnum:sum:MAX_POP300": 2789200, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 211, "numnum:min:MIN_AREAKM": 126, "numnum:sum:MIN_AREAKM": 508, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 211, "numnum:min:MAX_AREAKM": 126, "numnum:sum:MAX_AREAKM": 508, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 82, "numnum:min:MIN_AREAMI": 49, "numnum:sum:MIN_AREAMI": 197, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 82, "numnum:min:MAX_AREAMI": 49, "numnum:sum:MAX_AREAMI": 197, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 196, "numnum:min:MIN_PERKM": 162, "numnum:sum:MIN_PERKM": 531, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 196, "numnum:min:MAX_PERKM": 162, "numnum:sum:MAX_PERKM": 531, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 122, "numnum:min:MIN_PERMI": 101, "numnum:sum:MIN_PERMI": 331, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 122, "numnum:min:MAX_PERMI": 101, "numnum:sum:MAX_PERMI": 331, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 27.408333, "numnum:min:MIN_BBXMIN": 23.975, "numnum:sum:MIN_BBXMIN": 76.55, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 27.408333, "numnum:min:MAX_BBXMIN": 23.975, "numnum:sum:MAX_BBXMIN": 76.55, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 27.716667, "numnum:min:MIN_BBXMAX": 24.266667, "numnum:sum:MIN_BBXMAX": 77.375001, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 27.716667, "numnum:min:MAX_BBXMAX": 24.266667, "numnum:sum:MAX_BBXMAX": 77.375001, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 56.875, "numnum:min:MIN_BBYMIN": 53.8, "numnum:sum:MIN_BBYMIN": 165.25, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 56.875, "numnum:min:MAX_BBYMIN": 53.8, "numnum:sum:MAX_BBYMIN": 165.25, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 57.083333, "numnum:min:MIN_BBYMAX": 53.983333, "numnum:sum:MIN_BBYMAX": 165.841666, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 57.083333, "numnum:min:MAX_BBYMAX": 53.983333, "numnum:sum:MAX_BBYMAX": 165.841666, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 27.562159, "numnum:min:MEAN_BBXC": 24.127656, "numnum:sum:MEAN_BBXC": 76.94943800000002, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 56.953571, "numnum:min:MEAN_BBYC": 53.893169, "numnum:sum:MEAN_BBYC": 165.538803, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 65, "numnum:min:ADMIN1_COD": 5, "numnum:sum:ADMIN1_COD": 95, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1742124, "numnum:min:GN_POP": 542366, "numnum:sum:GN_POP": 3027062, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 199, "numnum:min:GTOPO30": 9, "numnum:sum:GTOPO30": 333, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 4, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 4, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 53.89, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 53.89, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 27.57, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 27.57, "numnum:count:POP1950": 3, "numnum:max:POP1950": 284, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 284, "numnum:count:POP1955": 3, "numnum:max:POP1955": 414, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 414, "numnum:count:POP1960": 3, "numnum:max:POP1960": 551, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 551, "numnum:count:POP1965": 3, "numnum:max:POP1965": 719, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 719, "numnum:count:POP1970": 3, "numnum:max:POP1970": 932, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 932, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1120, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1120, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1318, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1318, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1474, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1474, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1607, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1607, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1649, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1649, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1700, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1700, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1775, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1775, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1805, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1805, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1846, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1846, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1879, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1879, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1883, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1883, "numnum:count:POP2050": 3, "numnum:max:POP2050": 1883, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1883, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 13, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1930, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 2, "numnum:sum:LABELRANK": 42, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 55.752164, "numnum:min:LATITUDE": 32.8925, "numnum:sum:LATITUDE": 292.04553699999999, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 44.790795, "numnum:min:LONGITUDE": 3.050553, "numnum:sum:LONGITUDE": 166.68427400000003, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 10452000, "numnum:min:POP_MAX": 688134, "numnum:sum:POP_MAX": 30256634, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 10452000, "numnum:min:POP_MIN": 229398, "numnum:sum:POP_MIN": 24974375, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 10585385, "numnum:min:POP_OTHER": 664472, "numnum:sum:POP_OTHER": 28036241, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 87, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 83, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 2507480, "numnum:min:GEONAMEID": -1, "numnum:sum:GEONAMEID": 7472037, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 11029015, "numnum:min:MAX_POP10": 688134, "numnum:sum:MAX_POP10": 29040898, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 11030955, "numnum:min:MAX_POP20": 688134, "numnum:sum:MAX_POP20": 29372624, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 11547877, "numnum:min:MAX_POP50": 688134, "numnum:sum:MAX_POP50": 30600101, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 11547877, "numnum:min:MAX_POP300": 688134, "numnum:sum:MAX_POP300": 30600101, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 11547877, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 21688827, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 1100, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 1434, "numnum:min:MIN_AREAKM": 109, "numnum:sum:MIN_AREAKM": 4484, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 1639, "numnum:min:MAX_AREAKM": 109, "numnum:sum:MAX_AREAKM": 5182, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 554, "numnum:min:MIN_AREAMI": 42, "numnum:sum:MIN_AREAMI": 1731, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 633, "numnum:min:MAX_AREAMI": 42, "numnum:sum:MAX_AREAMI": 2000, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 875, "numnum:min:MIN_PERKM": 85, "numnum:sum:MIN_PERKM": 3365, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 1192, "numnum:min:MAX_PERKM": 85, "numnum:sum:MAX_PERKM": 4137, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 544, "numnum:min:MIN_PERMI": 53, "numnum:sum:MIN_PERMI": 2092, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 741, "numnum:min:MAX_PERMI": 53, "numnum:sum:MAX_PERMI": 2571, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 44.708333, "numnum:min:MIN_BBXMIN": 2.641667, "numnum:sum:MIN_BBXMIN": 164.45833299999999, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 44.708333, "numnum:min:MAX_BBXMIN": 2.808333, "numnum:sum:MAX_BBXMIN": 164.682267, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 44.933333, "numnum:min:MIN_BBXMAX": 3.548211, "numnum:sum:MIN_BBXMAX": 168.837863, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 44.933333, "numnum:min:MAX_BBXMAX": 3.741667, "numnum:sum:MAX_BBXMAX": 169.441666, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 55.341667, "numnum:min:MIN_BBYMIN": 32.808333, "numnum:sum:MIN_BBYMIN": 290.55, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 55.533007, "numnum:min:MAX_BBYMIN": 32.808333, "numnum:sum:MAX_BBYMIN": 290.810361, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 56.075, "numnum:min:MIN_BBYMAX": 32.908333, "numnum:sum:MIN_BBYMAX": 292.92499999999998, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 56.075, "numnum:min:MAX_BBYMAX": 32.908333, "numnum:sum:MAX_BBYMAX": 292.92499999999998, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 44.822812, "numnum:min:MEAN_BBXC": 3.101671, "numnum:sum:MEAN_BBXC": 166.81257000000003, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 55.754996, "numnum:min:MEAN_BBYC": 32.862069, "numnum:sum:MEAN_BBYC": 291.837996, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 57, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 139, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 11174257, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 15760020, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 420, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 545, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 504, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1471, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 55.74, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 209.64000000000002, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 44.78, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 150.53, "numnum:count:POP1950": 7, "numnum:max:POP1950": 5356, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 7557, "numnum:count:POP1955": 7, "numnum:max:POP1955": 5749, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 8416, "numnum:count:POP1960": 7, "numnum:max:POP1960": 6170, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 9387, "numnum:count:POP1965": 7, "numnum:max:POP1965": 6622, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 10710, "numnum:count:POP1970": 7, "numnum:max:POP1970": 7106, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 12427, "numnum:count:POP1975": 7, "numnum:max:POP1975": 7623, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 14325, "numnum:count:POP1980": 7, "numnum:max:POP1980": 8136, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 16041, "numnum:count:POP1985": 7, "numnum:max:POP1985": 8580, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 17892, "numnum:count:POP1990": 7, "numnum:max:POP1990": 8987, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 20171, "numnum:count:POP1995": 7, "numnum:max:POP1995": 9201, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 21999, "numnum:count:POP2000": 7, "numnum:max:POP2000": 10016, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 24491, "numnum:count:POP2005": 7, "numnum:max:POP2005": 10416, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 26515, "numnum:count:POP2010": 7, "numnum:max:POP2010": 10452, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 27156, "numnum:count:POP2015": 7, "numnum:max:POP2015": 10530, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 28029, "numnum:count:POP2020": 7, "numnum:max:POP2020": 11177, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 29268, "numnum:count:POP2025": 7, "numnum:max:POP2025": 11695, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 30283, "numnum:count:POP2050": 7, "numnum:max:POP2050": 12102, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 31096, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1920, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 2, "numnum:sum:LABELRANK": 33, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 55.752164, "numnum:min:LATITUDE": 41.104996, "numnum:sum:LATITUDE": 281.412272, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 37.615523, "numnum:min:LONGITUDE": 23.316654, "numnum:sum:LONGITUDE": 175.416465, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 10452000, "numnum:min:POP_MAX": 688134, "numnum:sum:POP_MAX": 27037134, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 10452000, "numnum:min:POP_MIN": 635994, "numnum:sum:POP_MIN": 25313133, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 10585385, "numnum:min:POP_OTHER": 664472, "numnum:sum:POP_OTHER": 25021346, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 75, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 73, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 745044, "numnum:min:GEONAMEID": 524901, "numnum:sum:GEONAMEID": 4002336, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 11029015, "numnum:min:MAX_POP10": 688134, "numnum:sum:MAX_POP10": 25942288, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 11030955, "numnum:min:MAX_POP20": 688134, "numnum:sum:MAX_POP20": 25943861, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 11547877, "numnum:min:MAX_POP50": 688134, "numnum:sum:MAX_POP50": 26656490, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 11547877, "numnum:min:MAX_POP300": 688134, "numnum:sum:MAX_POP300": 26656490, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 11547877, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 21688827, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 1000, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 1434, "numnum:min:MIN_AREAKM": 109, "numnum:sum:MIN_AREAKM": 3571, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 1639, "numnum:min:MAX_AREAKM": 109, "numnum:sum:MAX_AREAKM": 3854, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 554, "numnum:min:MIN_AREAMI": 42, "numnum:sum:MIN_AREAMI": 1379, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 633, "numnum:min:MAX_AREAMI": 42, "numnum:sum:MAX_AREAMI": 1488, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 875, "numnum:min:MIN_PERKM": 85, "numnum:sum:MIN_PERKM": 2463, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 1135, "numnum:min:MAX_PERKM": 85, "numnum:sum:MAX_PERKM": 2797, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 544, "numnum:min:MIN_PERMI": 53, "numnum:sum:MIN_PERMI": 1531, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 705, "numnum:min:MAX_PERMI": 53, "numnum:sum:MAX_PERMI": 1738, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 37.233333, "numnum:min:MIN_BBXMIN": 23.208333, "numnum:sum:MIN_BBXMIN": 173.575, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 37.233333, "numnum:min:MAX_BBXMIN": 23.208333, "numnum:sum:MAX_BBXMIN": 173.632268, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 38.075401, "numnum:min:MIN_BBXMAX": 23.45, "numnum:sum:MIN_BBXMAX": 176.725401, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 38.3, "numnum:min:MAX_BBXMAX": 23.45, "numnum:sum:MAX_BBXMAX": 177.058333, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 55.341667, "numnum:min:MIN_BBYMIN": 40.75, "numnum:sum:MIN_BBYMIN": 280.30000099999998, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 55.533007, "numnum:min:MAX_BBYMIN": 40.75, "numnum:sum:MAX_BBYMIN": 280.491341, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 56.075, "numnum:min:MIN_BBYMAX": 41.258333, "numnum:sum:MIN_BBYMAX": 282.391667, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 56.075, "numnum:min:MAX_BBYMAX": 41.258333, "numnum:sum:MAX_BBYMAX": 282.391667, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 37.643636, "numnum:min:MEAN_BBXC": 23.328319, "numnum:sum:MEAN_BBXC": 175.355957, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 55.754996, "numnum:min:MEAN_BBYC": 41.004964, "numnum:sum:MEAN_BBYC": 281.35468899999997, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 57, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 155, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 11174257, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 17354189, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 558, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 878, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 511, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1863, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 55.74, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 234.37, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 37.7, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 146.65, "numnum:count:POP1950": 6, "numnum:max:POP1950": 5356, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 8312, "numnum:count:POP1955": 6, "numnum:max:POP1955": 5749, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 9444, "numnum:count:POP1960": 6, "numnum:max:POP1960": 6170, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 10496, "numnum:count:POP1965": 6, "numnum:max:POP1965": 6622, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 11972, "numnum:count:POP1970": 6, "numnum:max:POP1970": 7106, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 13817, "numnum:count:POP1975": 6, "numnum:max:POP1975": 7623, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 15828, "numnum:count:POP1980": 6, "numnum:max:POP1980": 8136, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 17673, "numnum:count:POP1985": 6, "numnum:max:POP1985": 8580, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 19528, "numnum:count:POP1990": 6, "numnum:max:POP1990": 8987, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 21344, "numnum:count:POP1995": 6, "numnum:max:POP1995": 9201, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 22642, "numnum:count:POP2000": 6, "numnum:max:POP2000": 10016, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 24443, "numnum:count:POP2005": 6, "numnum:max:POP2005": 10416, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 25899, "numnum:count:POP2010": 6, "numnum:max:POP2010": 10452, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 26349, "numnum:count:POP2015": 6, "numnum:max:POP2015": 10530, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 26932, "numnum:count:POP2020": 6, "numnum:max:POP2020": 11177, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 27653, "numnum:count:POP2025": 6, "numnum:max:POP2025": 11695, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 28178, "numnum:count:POP2050": 6, "numnum:max:POP2050": 12102, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 28585, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.457504 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 8, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 22, "numnum:count:NATSCALE": 8, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1310, "numnum:count:LABELRANK": 8, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 34, "numnum:count:DIFFASCII": 8, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 8, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 8, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 2, "numnum:count:WORLDCITY": 8, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 8, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 8, "numnum:max:LATITUDE": 35.899732, "numnum:min:LATITUDE": 0.333402, "numnum:sum:LATITUDE": 84.291692, "numnum:count:LONGITUDE": 8, "numnum:max:LONGITUDE": 14.514711, "numnum:min:LONGITUDE": 1.222757, "numnum:sum:LONGITUDE": 40.648925000000009, "numnum:count:CHANGED": 8, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 8, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 8, "numnum:max:POP_MAX": 9466000, "numnum:min:POP_MAX": 88219, "numnum:sum:POP_MAX": 14927469, "numnum:count:POP_MIN": 8, "numnum:max:POP_MIN": 749700, "numnum:min:POP_MIN": 1536, "numnum:sum:POP_MIN": 2644046, "numnum:count:POP_OTHER": 8, "numnum:max:POP_OTHER": 6567892, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 10831910, "numnum:count:RANK_MAX": 8, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 87, "numnum:count:RANK_MIN": 8, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 3, "numnum:sum:RANK_MIN": 68, "numnum:count:GEONAMEID": 8, "numnum:max:GEONAMEID": 3388092, "numnum:min:GEONAMEID": 735497, "numnum:sum:GEONAMEID": 18601346, "numnum:count:LS_MATCH": 8, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 8, "numnum:count:CHECKME": 8, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 8, "numnum:max:MAX_POP10": 7147910, "numnum:min:MAX_POP10": 88219, "numnum:sum:MAX_POP10": 11485928, "numnum:count:MAX_POP20": 8, "numnum:max:MAX_POP20": 7105663, "numnum:min:MAX_POP20": 88219, "numnum:sum:MAX_POP20": 11416662, "numnum:count:MAX_POP50": 8, "numnum:max:MAX_POP50": 7411389, "numnum:min:MAX_POP50": 88219, "numnum:sum:MAX_POP50": 11722832, "numnum:count:MAX_POP300": 8, "numnum:max:MAX_POP300": 7453740, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 10688729, "numnum:count:MAX_POP310": 8, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 8, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 8, "numnum:max:MIN_AREAKM": 1035, "numnum:min:MIN_AREAKM": 32, "numnum:sum:MIN_AREAKM": 2282, "numnum:count:MAX_AREAKM": 8, "numnum:max:MAX_AREAKM": 1332, "numnum:min:MAX_AREAKM": 32, "numnum:sum:MAX_AREAKM": 2786, "numnum:count:MIN_AREAMI": 8, "numnum:max:MIN_AREAMI": 400, "numnum:min:MIN_AREAMI": 12, "numnum:sum:MIN_AREAMI": 881, "numnum:count:MAX_AREAMI": 8, "numnum:max:MAX_AREAMI": 514, "numnum:min:MAX_AREAMI": 12, "numnum:sum:MAX_AREAMI": 1074, "numnum:count:MIN_PERKM": 8, "numnum:max:MIN_PERKM": 638, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 1814, "numnum:count:MAX_PERKM": 8, "numnum:max:MAX_PERKM": 882, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 2290, "numnum:count:MIN_PERMI": 8, "numnum:max:MIN_PERMI": 397, "numnum:min:MIN_PERMI": 28, "numnum:sum:MIN_PERMI": 1129, "numnum:count:MAX_PERMI": 8, "numnum:max:MAX_PERMI": 548, "numnum:min:MAX_PERMI": 28, "numnum:sum:MAX_PERMI": 1425, "numnum:count:MIN_BBXMIN": 8, "numnum:max:MIN_BBXMIN": 14.408333, "numnum:min:MIN_BBXMIN": 0.95, "numnum:sum:MIN_BBXMIN": 39.142078000000008, "numnum:count:MAX_BBXMIN": 8, "numnum:max:MAX_BBXMIN": 14.408333, "numnum:min:MAX_BBXMIN": 0.95, "numnum:sum:MAX_BBXMIN": 39.30913, "numnum:count:MIN_BBXMAX": 8, "numnum:max:MIN_BBXMAX": 14.55, "numnum:min:MIN_BBXMAX": 1.483333, "numnum:sum:MIN_BBXMAX": 41.582958, "numnum:count:MAX_BBXMAX": 8, "numnum:max:MAX_BBXMAX": 14.55, "numnum:min:MAX_BBXMAX": 1.483333, "numnum:sum:MAX_BBXMAX": 41.808333000000008, "numnum:count:MIN_BBYMIN": 8, "numnum:max:MIN_BBYMIN": 35.816667, "numnum:min:MIN_BBYMIN": 0.3, "numnum:sum:MIN_BBYMIN": 83.78333400000001, "numnum:count:MAX_BBYMIN": 8, "numnum:max:MAX_BBYMIN": 35.816667, "numnum:min:MAX_BBYMIN": 0.3, "numnum:sum:MAX_BBYMIN": 83.78333400000001, "numnum:count:MIN_BBYMAX": 8, "numnum:max:MIN_BBYMAX": 35.941667, "numnum:min:MIN_BBYMAX": 0.391667, "numnum:sum:MIN_BBYMAX": 85.41753700000001, "numnum:count:MAX_BBYMAX": 8, "numnum:max:MAX_BBYMAX": 35.941667, "numnum:min:MAX_BBYMAX": 0.391667, "numnum:sum:MAX_BBYMAX": 85.725001, "numnum:count:MEAN_BBXC": 8, "numnum:max:MEAN_BBXC": 14.483034, "numnum:min:MEAN_BBXC": 1.190359, "numnum:sum:MEAN_BBXC": 40.333802999999999, "numnum:count:MEAN_BBYC": 8, "numnum:max:MEAN_BBYC": 35.881672, "numnum:min:MEAN_BBYC": 0.338176, "numnum:sum:MEAN_BBYC": 84.482567, "numnum:count:COMPARE": 8, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 8, "numnum:max:ADMIN1_COD": 24, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 84, "numnum:count:GN_POP": 8, "numnum:max:GN_POP": 774235, "numnum:min:GN_POP": 1536, "numnum:sum:GN_POP": 2625289, "numnum:count:ELEVATION": 8, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 8, "numnum:max:GTOPO30": 339, "numnum:min:GTOPO30": 39, "numnum:sum:GTOPO30": 1028, "numnum:count:UN_FID": 8, "numnum:max:UN_FID": 497, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1834, "numnum:count:UN_LAT": 8, "numnum:max:UN_LAT": 13.51, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 41.46000000000001, "numnum:count:UN_LONG": 8, "numnum:max:UN_LONG": 7.25, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 16.3, "numnum:count:POP1950": 8, "numnum:max:POP1950": 305, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 400, "numnum:count:POP1955": 8, "numnum:max:POP1955": 468, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 609, "numnum:count:POP1960": 8, "numnum:max:POP1960": 762, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1011, "numnum:count:POP1965": 8, "numnum:max:POP1965": 1135, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1498, "numnum:count:POP1970": 8, "numnum:max:POP1970": 1414, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1946, "numnum:count:POP1975": 8, "numnum:max:POP1975": 1890, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2662, "numnum:count:POP1980": 8, "numnum:max:POP1980": 2572, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3652, "numnum:count:POP1985": 8, "numnum:max:POP1985": 3500, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 4926, "numnum:count:POP1990": 8, "numnum:max:POP1990": 4764, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 6649, "numnum:count:POP1995": 8, "numnum:max:POP1995": 5966, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 8407, "numnum:count:POP2000": 8, "numnum:max:POP2000": 7233, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 10410, "numnum:count:POP2005": 8, "numnum:max:POP2005": 8767, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 12963, "numnum:count:POP2010": 8, "numnum:max:POP2010": 9466, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 14171, "numnum:count:POP2015": 8, "numnum:max:POP2015": 10572, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 16103, "numnum:count:POP2020": 8, "numnum:max:POP2020": 12403, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 19261, "numnum:count:POP2025": 8, "numnum:max:POP2025": 14134, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 22291, "numnum:count:POP2050": 8, "numnum:max:POP2050": 15796, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 25384, "accum": 8, "numnum:count:accum2": 8, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 8, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 420, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 20, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 41.72501, "numnum:min:LATITUDE": 36.763065, "numnum:sum:LATITUDE": 115.290853, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 44.790795, "numnum:min:LONGITUDE": 3.050553, "numnum:sum:LONGITUDE": 58.021026000000009, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3354000, "numnum:min:POP_MAX": 1100000, "numnum:sum:POP_MAX": 6866500, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1977663, "numnum:min:POP_MIN": 728453, "numnum:sum:POP_MIN": 3711373, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3332619, "numnum:min:POP_OTHER": 977179, "numnum:sum:POP_OTHER": 5984915, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 35, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2507480, "numnum:min:GEONAMEID": 611717, "numnum:sum:GEONAMEID": 5583667, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3368320, "numnum:min:MAX_POP10": 1005257, "numnum:sum:MAX_POP10": 6204753, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3698473, "numnum:min:MAX_POP20": 1005257, "numnum:sum:MAX_POP20": 6534906, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 4203253, "numnum:min:MAX_POP50": 1007529, "numnum:sum:MAX_POP50": 7049754, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 4203253, "numnum:min:MAX_POP300": 1007529, "numnum:sum:MAX_POP300": 7049754, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 886, "numnum:min:MIN_AREAKM": 131, "numnum:sum:MIN_AREAKM": 1497, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1275, "numnum:min:MAX_AREAKM": 135, "numnum:sum:MAX_AREAKM": 1912, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 342, "numnum:min:MIN_AREAMI": 51, "numnum:sum:MIN_AREAMI": 578, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 492, "numnum:min:MAX_AREAMI": 52, "numnum:sum:MAX_AREAMI": 738, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 798, "numnum:min:MIN_PERKM": 128, "numnum:sum:MIN_PERKM": 1411, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 1192, "numnum:min:MAX_PERKM": 133, "numnum:sum:MAX_PERKM": 1849, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 496, "numnum:min:MIN_PERMI": 80, "numnum:sum:MIN_PERMI": 878, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 741, "numnum:min:MAX_PERMI": 83, "numnum:sum:MAX_PERMI": 1150, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 44.708333, "numnum:min:MIN_BBXMIN": 2.641667, "numnum:sum:MIN_BBXMIN": 57.3, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 44.708333, "numnum:min:MAX_BBXMIN": 2.808333, "numnum:sum:MAX_BBXMIN": 57.466666000000007, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 44.933333, "numnum:min:MIN_BBXMAX": 3.548211, "numnum:sum:MIN_BBXMAX": 58.979129, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 44.933333, "numnum:min:MAX_BBXMAX": 3.741667, "numnum:sum:MAX_BBXMAX": 59.25, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 41.616667, "numnum:min:MIN_BBYMIN": 36.45, "numnum:sum:MIN_BBYMIN": 114.69999999999999, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 41.627355, "numnum:min:MAX_BBYMIN": 36.508333, "numnum:sum:MAX_BBYMIN": 114.76902100000001, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 41.825, "numnum:min:MIN_BBYMAX": 36.816667, "numnum:sum:MIN_BBYMAX": 115.60833400000002, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 41.825, "numnum:min:MAX_BBYMAX": 36.816667, "numnum:sum:MAX_BBYMAX": 115.60833400000002, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 44.822812, "numnum:min:MEAN_BBXC": 3.101671, "numnum:sum:MEAN_BBXC": 58.126524, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 41.722167, "numnum:min:MEAN_BBYC": 36.673641, "numnum:sum:MEAN_BBYC": 115.198782, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 38, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 39, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1977663, "numnum:min:GN_POP": 693210, "numnum:sum:GN_POP": 3720371, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 420, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 434, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 191, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 197, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 41.72, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 78.5, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 44.78, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 47.83, "numnum:count:POP1950": 3, "numnum:max:POP1950": 612, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1128, "numnum:count:POP1955": 3, "numnum:max:POP1955": 659, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1282, "numnum:count:POP1960": 3, "numnum:max:POP1960": 872, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1590, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1049, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1852, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1254, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2151, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1499, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2491, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1621, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2711, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1672, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2849, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1908, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3132, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2295, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3455, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2754, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3854, "numnum:count:POP2005": 3, "numnum:max:POP2005": 3199, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4292, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3354, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4454, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3574, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4682, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3922, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5035, "numnum:count:POP2025": 3, "numnum:max:POP2025": 4235, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5349, "numnum:count:POP2050": 3, "numnum:max:POP2050": 4499, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5613, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 44.824219, 41.705729 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 15, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 550, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 35, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 12.113097, "numnum:min:LATITUDE": 0.385389, "numnum:sum:LATITUDE": 24.481845999999999, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 18.558288, "numnum:min:LONGITUDE": 8.783278, "numnum:sum:LONGITUDE": 63.36533, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 1611000, "numnum:min:POP_MAX": 155963, "numnum:sum:POP_MAX": 4166044, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 1060587, "numnum:min:POP_MIN": 155963, "numnum:sum:POP_MIN": 3004063, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 1060747, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 3012890, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 54, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 53, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 2427123, "numnum:min:GEONAMEID": 2220957, "numnum:sum:GEONAMEID": 11747157, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 1060587, "numnum:min:MAX_POP10": 314, "numnum:sum:MAX_POP10": 3018529, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 1060587, "numnum:min:MAX_POP20": 314, "numnum:sum:MAX_POP20": 3018529, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 1060587, "numnum:min:MAX_POP50": 314, "numnum:sum:MAX_POP50": 3057568, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 1060587, "numnum:min:MAX_POP300": 314, "numnum:sum:MAX_POP300": 3057568, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 197, "numnum:min:MIN_AREAKM": 1, "numnum:sum:MIN_AREAKM": 475, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 197, "numnum:min:MAX_AREAKM": 1, "numnum:sum:MAX_AREAKM": 488, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 76, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 183, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 76, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 188, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 116, "numnum:min:MIN_PERKM": 4, "numnum:sum:MIN_PERKM": 375, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 116, "numnum:min:MAX_PERKM": 4, "numnum:sum:MAX_PERKM": 391, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 72, "numnum:min:MIN_PERMI": 2, "numnum:sum:MIN_PERMI": 233, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 72, "numnum:min:MAX_PERMI": 2, "numnum:sum:MAX_PERMI": 243, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 18.491667, "numnum:min:MIN_BBXMIN": 8.658333, "numnum:sum:MIN_BBXMIN": 63.008333, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 18.491667, "numnum:min:MAX_BBXMIN": 8.658333, "numnum:sum:MAX_BBXMIN": 63.008333, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 18.614651, "numnum:min:MIN_BBXMAX": 8.666667, "numnum:sum:MIN_BBXMAX": 63.539651000000009, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 18.625, "numnum:min:MAX_BBXMAX": 8.666667, "numnum:sum:MAX_BBXMAX": 63.550000000000007, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 12.066667, "numnum:min:MIN_BBYMIN": 0.283333, "numnum:sum:MIN_BBYMIN": 23.791667, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 12.066667, "numnum:min:MAX_BBYMIN": 0.283333, "numnum:sum:MAX_BBYMIN": 23.791667, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 12.183333, "numnum:min:MIN_BBYMAX": 0.483333, "numnum:sum:MIN_BBYMAX": 24.491665000000006, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 12.183333, "numnum:min:MAX_BBYMAX": 0.483333, "numnum:sum:MAX_BBYMAX": 24.491665000000006, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 18.546436, "numnum:min:MEAN_BBXC": 8.6625, "numnum:sum:MEAN_BBXC": 63.279727, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 12.120479, "numnum:min:MEAN_BBYC": 0.395238, "numnum:sum:MEAN_BBYC": 24.12368, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 18, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 38, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 1299369, "numnum:min:GN_POP": 155963, "numnum:sum:GN_POP": 3296962, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 733, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8492, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 16, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 25, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 12.1, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 15.959999999999999, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 15.24, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 26.75, "numnum:count:POP1950": 5, "numnum:max:POP1950": 32, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 54, "numnum:count:POP1955": 5, "numnum:max:POP1955": 49, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 89, "numnum:count:POP1960": 5, "numnum:max:POP1960": 75, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 146, "numnum:count:POP1965": 5, "numnum:max:POP1965": 112, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 221, "numnum:count:POP1970": 5, "numnum:max:POP1970": 183, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 338, "numnum:count:POP1975": 5, "numnum:max:POP1975": 292, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 523, "numnum:count:POP1980": 5, "numnum:max:POP1980": 415, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 739, "numnum:count:POP1985": 5, "numnum:max:POP1985": 578, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 971, "numnum:count:POP1990": 5, "numnum:max:POP1990": 754, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1231, "numnum:count:POP1995": 5, "numnum:max:POP1995": 948, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1527, "numnum:count:POP2000": 5, "numnum:max:POP2000": 1192, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1903, "numnum:count:POP2005": 5, "numnum:max:POP2005": 1489, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2391, "numnum:count:POP2010": 5, "numnum:max:POP2010": 1611, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2600, "numnum:count:POP2015": 5, "numnum:max:POP2015": 1787, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2914, "numnum:count:POP2020": 5, "numnum:max:POP2020": 2058, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3463, "numnum:count:POP2025": 5, "numnum:max:POP2025": 2312, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 4065, "numnum:count:POP2050": 5, "numnum:max:POP2050": 2549, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4721, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli", "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 18, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1290, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 39, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 2, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 35.899732, "numnum:min:LATITUDE": 6.131937, "numnum:sum:LATITUDE": 107.767457, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 14.514711, "numnum:min:LONGITUDE": 1.222757, "numnum:sum:LONGITUDE": 39.562284000000008, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 9466000, "numnum:min:POP_MAX": 300000, "numnum:sum:POP_MAX": 15452250, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 749700, "numnum:min:POP_MIN": 1536, "numnum:sum:POP_MIN": 2655143, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 6567892, "numnum:min:POP_OTHER": 336174, "numnum:sum:POP_OTHER": 11893672, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 79, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 3, "numnum:sum:RANK_MIN": 61, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 2562305, "numnum:min:GEONAMEID": -1, "numnum:sum:GEONAMEID": 12890459, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 7147910, "numnum:min:MAX_POP10": 336921, "numnum:sum:MAX_POP10": 11915837, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 7105663, "numnum:min:MAX_POP20": 336921, "numnum:sum:MAX_POP20": 11846571, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 7411389, "numnum:min:MAX_POP50": 336921, "numnum:sum:MAX_POP50": 12152741, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 7453740, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 11773896, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 650, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 1035, "numnum:min:MIN_AREAKM": 106, "numnum:sum:MIN_AREAKM": 2271, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 1332, "numnum:min:MAX_AREAKM": 106, "numnum:sum:MAX_AREAKM": 2775, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 400, "numnum:min:MIN_AREAMI": 41, "numnum:sum:MIN_AREAMI": 877, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 514, "numnum:min:MAX_AREAMI": 41, "numnum:sum:MAX_AREAMI": 1070, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 638, "numnum:min:MIN_PERKM": 87, "numnum:sum:MIN_PERKM": 1750, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 882, "numnum:min:MAX_PERKM": 87, "numnum:sum:MAX_PERKM": 2226, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 397, "numnum:min:MIN_PERMI": 54, "numnum:sum:MIN_PERMI": 1088, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 548, "numnum:min:MAX_PERMI": 54, "numnum:sum:MAX_PERMI": 1384, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 14.408333, "numnum:min:MIN_BBXMIN": 0.95, "numnum:sum:MIN_BBXMIN": 38.058744, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 14.408333, "numnum:min:MAX_BBXMIN": 0.95, "numnum:sum:MAX_BBXMIN": 38.225796, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 14.55, "numnum:min:MIN_BBXMAX": 1.483333, "numnum:sum:MIN_BBXMAX": 40.64962400000001, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 14.55, "numnum:min:MAX_BBXMAX": 1.483333, "numnum:sum:MAX_BBXMAX": 40.87499900000001, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 35.816667, "numnum:min:MIN_BBYMIN": 6.025, "numnum:sum:MIN_BBYMIN": 107.30833400000002, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 35.816667, "numnum:min:MAX_BBYMIN": 6.025, "numnum:sum:MAX_BBYMIN": 107.30833400000002, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 35.941667, "numnum:min:MIN_BBYMAX": 6.283333, "numnum:sum:MIN_BBYMAX": 108.76753599999999, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 35.941667, "numnum:min:MAX_BBYMAX": 6.283333, "numnum:sum:MAX_BBYMAX": 109.07499999999999, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 14.483034, "numnum:min:MEAN_BBXC": 1.190359, "numnum:sum:MEAN_BBXC": 39.323606000000008, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 35.881672, "numnum:min:MEAN_BBYC": 6.153924, "numnum:sum:MEAN_BBYC": 107.94327200000001, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 24, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 71, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 774235, "numnum:min:GN_POP": 1536, "numnum:sum:GN_POP": 2686415, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 203, "numnum:min:GTOPO30": 31, "numnum:sum:GTOPO30": 569, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 497, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1792, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 34.34, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 66.75, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 36, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 45.05, "numnum:count:POP1950": 7, "numnum:max:POP1950": 305, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 488, "numnum:count:POP1955": 7, "numnum:max:POP1955": 468, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 724, "numnum:count:POP1960": 7, "numnum:max:POP1960": 762, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1162, "numnum:count:POP1965": 7, "numnum:max:POP1965": 1135, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1704, "numnum:count:POP1970": 7, "numnum:max:POP1970": 1414, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2296, "numnum:count:POP1975": 7, "numnum:max:POP1975": 1890, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3196, "numnum:count:POP1980": 7, "numnum:max:POP1980": 2572, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4324, "numnum:count:POP1985": 7, "numnum:max:POP1985": 3500, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5778, "numnum:count:POP1990": 7, "numnum:max:POP1990": 4764, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 7819, "numnum:count:POP1995": 7, "numnum:max:POP1995": 5966, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9559, "numnum:count:POP2000": 7, "numnum:max:POP2000": 7233, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 11455, "numnum:count:POP2005": 7, "numnum:max:POP2005": 8767, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 13746, "numnum:count:POP2010": 7, "numnum:max:POP2010": 9466, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 14784, "numnum:count:POP2015": 7, "numnum:max:POP2015": 10572, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 16431, "numnum:count:POP2020": 7, "numnum:max:POP2020": 12403, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 19235, "numnum:count:POP2025": 7, "numnum:max:POP2025": 14134, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 22033, "numnum:count:POP2050": 7, "numnum:max:POP2050": 15796, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 24881, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.916485 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athínai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athínai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens", "accum2": 1, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1410, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 22, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 39.927239, "numnum:min:LATITUDE": 30.04996, "numnum:sum:LATITUDE": 175.207192, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 34.770012, "numnum:min:LONGITUDE": 23.733321, "numnum:sum:LONGITUDE": 155.984328, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 13, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 11893000, "numnum:min:POP_MAX": 224300, "numnum:sum:POP_MAX": 22187300, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 7734614, "numnum:min:POP_MIN": 200452, "numnum:sum:POP_MIN": 12349940, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 13720557, "numnum:min:POP_OTHER": 112572, "numnum:sum:POP_OTHER": 19630541, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 60, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 56, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 360630, "numnum:min:GEONAMEID": 146268, "numnum:sum:GEONAMEID": 1388449, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 14936123, "numnum:min:MAX_POP10": 224300, "numnum:sum:MAX_POP10": 23145204, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 15091561, "numnum:min:MAX_POP20": 224300, "numnum:sum:MAX_POP20": 23957341, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 29872827, "numnum:min:MAX_POP50": 224300, "numnum:sum:MAX_POP50": 38738607, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 30682197, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 37223409, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 30696820, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 30696820, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 650, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 1479, "numnum:min:MIN_AREAKM": 128, "numnum:sum:MIN_AREAKM": 2914, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 4900, "numnum:min:MAX_AREAKM": 128, "numnum:sum:MAX_AREAKM": 6507, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 571, "numnum:min:MIN_AREAMI": 49, "numnum:sum:MIN_AREAMI": 1124, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 1892, "numnum:min:MAX_AREAMI": 49, "numnum:sum:MAX_AREAMI": 2511, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 1365, "numnum:min:MIN_PERKM": 109, "numnum:sum:MIN_PERKM": 2414, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 5010, "numnum:min:MAX_PERKM": 109, "numnum:sum:MAX_PERKM": 6166, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 848, "numnum:min:MIN_PERMI": 68, "numnum:sum:MIN_PERMI": 1501, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 3113, "numnum:min:MAX_PERMI": 68, "numnum:sum:MAX_PERMI": 3832, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 34.716667, "numnum:min:MIN_BBXMIN": 23.483333, "numnum:sum:MIN_BBXMIN": 154.54166700000003, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 34.716667, "numnum:min:MAX_BBXMIN": 23.591667, "numnum:sum:MAX_BBXMIN": 155.000027, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 34.958333, "numnum:min:MIN_BBXMAX": 23.916667, "numnum:sum:MIN_BBXMAX": 156.980429, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 34.958333, "numnum:min:MAX_BBXMAX": 23.916667, "numnum:sum:MAX_BBXMAX": 157.041666, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 39.841667, "numnum:min:MIN_BBYMIN": 29.3, "numnum:sum:MIN_BBYMIN": 173.933334, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 39.841667, "numnum:min:MAX_BBYMIN": 29.8, "numnum:sum:MAX_BBYMIN": 174.441667, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 40.116667, "numnum:min:MIN_BBYMAX": 30.531354, "numnum:sum:MIN_BBYMAX": 176.239687, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 40.116667, "numnum:min:MAX_BBYMAX": 31.158333, "numnum:sum:MAX_BBYMAX": 176.866666, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 34.836735, "numnum:min:MEAN_BBXC": 23.741514, "numnum:sum:MEAN_BBXC": 155.958216, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 39.957843, "numnum:min:MEAN_BBYC": 30.353647, "numnum:sum:MEAN_BBYC": 175.523801, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 68, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 88, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 7734614, "numnum:min:GN_POP": 200452, "numnum:sum:GN_POP": 12559743, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 850, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 920, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 889, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8849, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 515, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1517, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 39.92, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 139.97, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 34.76, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 122.50999999999999, "numnum:count:POP1950": 5, "numnum:max:POP1950": 2494, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 4540, "numnum:count:POP1955": 5, "numnum:max:POP1955": 3029, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 5587, "numnum:count:POP1960": 5, "numnum:max:POP1960": 3680, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 6867, "numnum:count:POP1965": 5, "numnum:max:POP1965": 4738, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 8695, "numnum:count:POP1970": 5, "numnum:max:POP1970": 5585, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 10440, "numnum:count:POP1975": 5, "numnum:max:POP1975": 6450, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 12103, "numnum:count:POP1980": 5, "numnum:max:POP1980": 7349, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 13643, "numnum:count:POP1985": 5, "numnum:max:POP1985": 8328, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 15269, "numnum:count:POP1990": 5, "numnum:max:POP1990": 9061, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 16718, "numnum:count:POP1995": 5, "numnum:max:POP1995": 9707, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 18113, "numnum:count:POP2000": 5, "numnum:max:POP2000": 10534, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 19644, "numnum:count:POP2005": 5, "numnum:max:POP2005": 11487, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 21301, "numnum:count:POP2010": 5, "numnum:max:POP2010": 11893, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 21963, "numnum:count:POP2015": 5, "numnum:max:POP2015": 12503, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 22923, "numnum:count:POP2020": 5, "numnum:max:POP2020": 13465, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 24374, "numnum:count:POP2025": 5, "numnum:max:POP2025": 14451, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 25754, "numnum:count:POP2050": 5, "numnum:max:POP2050": 15561, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 27202, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.996163 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 18, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 660, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 30, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 12.113097, "numnum:min:LATITUDE": 0.333402, "numnum:sum:LATITUDE": 29.531937, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 15.049148, "numnum:min:LONGITUDE": 6.733325, "numnum:sum:LONGITUDE": 59.073695, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 1611000, "numnum:min:POP_MAX": 88219, "numnum:sum:POP_MAX": 4998338, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 1060587, "numnum:min:POP_MIN": 56166, "numnum:sum:POP_MIN": 2599593, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 1060747, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 2318835, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 63, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 59, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 3388092, "numnum:min:GEONAMEID": 2220957, "numnum:sum:GEONAMEID": 15068190, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 1060587, "numnum:min:MAX_POP10": 314, "numnum:sum:MAX_POP10": 2969120, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 1060587, "numnum:min:MAX_POP20": 314, "numnum:sum:MAX_POP20": 2969120, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 1060587, "numnum:min:MAX_POP50": 314, "numnum:sum:MAX_POP50": 2969120, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 1060587, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 2313862, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 550, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 197, "numnum:min:MIN_AREAKM": 1, "numnum:sum:MIN_AREAKM": 591, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 197, "numnum:min:MAX_AREAKM": 1, "numnum:sum:MAX_AREAKM": 591, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 76, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 227, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 76, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 227, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 162, "numnum:min:MIN_PERKM": 4, "numnum:sum:MIN_PERKM": 490, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 162, "numnum:min:MAX_PERKM": 4, "numnum:sum:MAX_PERKM": 490, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 101, "numnum:min:MIN_PERMI": 2, "numnum:sum:MIN_PERMI": 305, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 101, "numnum:min:MAX_PERMI": 2, "numnum:sum:MAX_PERMI": 305, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 15.025, "numnum:min:MIN_BBXMIN": 6.691667, "numnum:sum:MIN_BBXMIN": 58.583332999999999, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 15.025, "numnum:min:MAX_BBXMIN": 6.691667, "numnum:sum:MAX_BBXMIN": 58.583332999999999, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 15.133333, "numnum:min:MIN_BBXMAX": 6.75, "numnum:sum:MIN_BBXMAX": 59.266667000000008, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 15.133333, "numnum:min:MAX_BBXMAX": 6.75, "numnum:sum:MAX_BBXMAX": 59.266667000000008, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 12.066667, "numnum:min:MIN_BBYMIN": 0.283333, "numnum:sum:MIN_BBYMIN": 28.758333, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 12.066667, "numnum:min:MAX_BBYMIN": 0.283333, "numnum:sum:MAX_BBYMIN": 28.758333, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 12.183333, "numnum:min:MIN_BBYMAX": 0.391667, "numnum:sum:MIN_BBYMAX": 29.566665999999999, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 12.183333, "numnum:min:MAX_BBYMAX": 0.391667, "numnum:sum:MAX_BBYMAX": 29.566665999999999, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 15.079167, "numnum:min:MEAN_BBXC": 6.719032, "numnum:sum:MEAN_BBXC": 58.936707999999999, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 12.120479, "numnum:min:MEAN_BBYC": 0.338176, "numnum:sum:MEAN_BBYC": 29.136887, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 22, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 42, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 1299369, "numnum:min:GN_POP": 6137, "numnum:sum:GN_POP": 2922841, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 733, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8375, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 386, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 411, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 12.1, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 25.009999999999999, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 15.24, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 34, "numnum:count:POP1950": 6, "numnum:max:POP1950": 32, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 72, "numnum:count:POP1955": 6, "numnum:max:POP1955": 49, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 110, "numnum:count:POP1960": 6, "numnum:max:POP1960": 75, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 169, "numnum:count:POP1965": 6, "numnum:max:POP1965": 112, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 250, "numnum:count:POP1970": 6, "numnum:max:POP1970": 183, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 386, "numnum:count:POP1975": 6, "numnum:max:POP1975": 292, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 600, "numnum:count:POP1980": 6, "numnum:max:POP1980": 415, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 864, "numnum:count:POP1985": 6, "numnum:max:POP1985": 578, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1175, "numnum:count:POP1990": 6, "numnum:max:POP1990": 754, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1561, "numnum:count:POP1995": 6, "numnum:max:POP1995": 948, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2053, "numnum:count:POP2000": 6, "numnum:max:POP2000": 1192, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2735, "numnum:count:POP2005": 6, "numnum:max:POP2005": 1489, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3706, "numnum:count:POP2010": 6, "numnum:max:POP2010": 1611, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4176, "numnum:count:POP2015": 6, "numnum:max:POP2015": 1994, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4908, "numnum:count:POP2020": 6, "numnum:max:POP2020": 2558, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 6021, "numnum:count:POP2025": 6, "numnum:max:POP2025": 2971, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 7036, "numnum:count:POP2050": 6, "numnum:max:POP2050": 3358, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 8079, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 7.558594, 9.102097 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut", "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 17, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1140, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 40, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 7, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 6, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 40.181151, "numnum:min:LATITUDE": 15.588078, "numnum:sum:LATITUDE": 220.208319, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 44.513551, "numnum:min:LONGITUDE": 32.534179, "numnum:sum:LONGITUDE": 264.391229, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 15, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 5054000, "numnum:min:POP_MAX": 1029300, "numnum:sum:POP_MAX": 17311300, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 5054000, "numnum:min:POP_MIN": 801000, "numnum:sum:POP_MIN": 14161257, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 4959534, "numnum:min:POP_OTHER": 1072567, "numnum:sum:POP_OTHER": 17153066, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 85, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 84, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 616052, "numnum:min:GEONAMEID": 98182, "numnum:sum:GEONAMEID": 2072546, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 5298025, "numnum:min:MAX_POP10": 1073782, "numnum:sum:MAX_POP10": 17803870, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 5298025, "numnum:min:MAX_POP20": 1073782, "numnum:sum:MAX_POP20": 19230819, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 5298025, "numnum:min:MAX_POP50": 1073782, "numnum:sum:MAX_POP50": 19259043, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 5298025, "numnum:min:MAX_POP300": 1073782, "numnum:sum:MAX_POP300": 21406431, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 587, "numnum:min:MIN_AREAKM": 191, "numnum:sum:MIN_AREAKM": 2736, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 705, "numnum:min:MAX_AREAKM": 191, "numnum:sum:MAX_AREAKM": 3375, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 227, "numnum:min:MIN_AREAMI": 74, "numnum:sum:MIN_AREAMI": 1057, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 272, "numnum:min:MAX_AREAMI": 74, "numnum:sum:MAX_AREAMI": 1303, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 608, "numnum:min:MIN_PERKM": 166, "numnum:sum:MIN_PERKM": 2276, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 768, "numnum:min:MAX_PERKM": 166, "numnum:sum:MAX_PERKM": 2780, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 378, "numnum:min:MIN_PERMI": 103, "numnum:sum:MIN_PERMI": 1415, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 477, "numnum:min:MAX_PERMI": 103, "numnum:sum:MAX_PERMI": 1727, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 44.391667, "numnum:min:MIN_BBXMIN": 32.341667, "numnum:sum:MIN_BBXMIN": 263.341668, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 44.391667, "numnum:min:MAX_BBXMIN": 32.458333, "numnum:sum:MAX_BBXMIN": 263.458334, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 44.6, "numnum:min:MIN_BBXMAX": 32.691667, "numnum:sum:MIN_BBXMAX": 265.418465, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 44.6, "numnum:min:MAX_BBXMAX": 32.691667, "numnum:sum:MAX_BBXMAX": 265.65000000000006, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 39.925, "numnum:min:MIN_BBYMIN": 15.325, "numnum:sum:MIN_BBYMIN": 218.841666, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 39.925, "numnum:min:MAX_BBYMIN": 15.325, "numnum:sum:MAX_BBYMIN": 218.841666, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 40.241667, "numnum:min:MIN_BBYMAX": 15.699422, "numnum:sum:MIN_BBYMAX": 221.36946700000005, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 40.241667, "numnum:min:MAX_BBYMAX": 15.825, "numnum:sum:MAX_BBYMAX": 221.591668, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 44.506293, "numnum:min:MEAN_BBXC": 32.550462, "numnum:sum:MEAN_BBXC": 264.473801, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 40.127356, "numnum:min:MEAN_BBYC": 15.559101, "numnum:sum:MEAN_BBYC": 220.144712, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 29, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 68, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 5672513, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 12646602, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 1002, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 3037, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 493, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 2299, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 40.2, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 188.39000000000002, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 44.53, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 229.15, "numnum:count:POP1950": 7, "numnum:max:POP1950": 579, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1882, "numnum:count:POP1955": 7, "numnum:max:POP1955": 719, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2428, "numnum:count:POP1960": 7, "numnum:max:POP1960": 1019, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 3262, "numnum:count:POP1965": 7, "numnum:max:POP1965": 1614, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 4498, "numnum:count:POP1970": 7, "numnum:max:POP1970": 2070, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 5730, "numnum:count:POP1975": 7, "numnum:max:POP1975": 2620, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 7539, "numnum:count:POP1980": 7, "numnum:max:POP1980": 3145, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 8986, "numnum:count:POP1985": 7, "numnum:max:POP1985": 3607, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 10208, "numnum:count:POP1990": 7, "numnum:max:POP1990": 4092, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 11462, "numnum:count:POP1995": 7, "numnum:max:POP1995": 4598, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 13072, "numnum:count:POP2000": 7, "numnum:max:POP2000": 5200, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 14798, "numnum:count:POP2005": 7, "numnum:max:POP2005": 5327, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 16097, "numnum:count:POP2010": 7, "numnum:max:POP2010": 5054, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 16282, "numnum:count:POP2015": 7, "numnum:max:POP2015": 5891, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 17900, "numnum:count:POP2020": 7, "numnum:max:POP2020": 6618, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 20014, "numnum:count:POP2025": 7, "numnum:max:POP2025": 7345, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 22144, "numnum:count:POP2050": 7, "numnum:max:POP2050": 8060, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 24236, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 11, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1520, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 29, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 39.927239, "numnum:min:LATITUDE": 4.366644, "numnum:sum:LATITUDE": 179.573836, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 34.770012, "numnum:min:LONGITUDE": 18.558288, "numnum:sum:LONGITUDE": 174.542616, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 13, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 11893000, "numnum:min:POP_MAX": 224300, "numnum:sum:POP_MAX": 23019225, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 7734614, "numnum:min:POP_MIN": 200452, "numnum:sum:POP_MIN": 12972711, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 13720557, "numnum:min:POP_OTHER": 112572, "numnum:sum:POP_OTHER": 20412815, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 71, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 67, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 2389853, "numnum:min:GEONAMEID": 146268, "numnum:sum:GEONAMEID": 3778302, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 14936123, "numnum:min:MAX_POP10": 224300, "numnum:sum:MAX_POP10": 23938090, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 15091561, "numnum:min:MAX_POP20": 224300, "numnum:sum:MAX_POP20": 24750227, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 29872827, "numnum:min:MAX_POP50": 224300, "numnum:sum:MAX_POP50": 39570532, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 30682197, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 38055334, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 30696820, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 30696820, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 750, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 1479, "numnum:min:MIN_AREAKM": 90, "numnum:sum:MIN_AREAKM": 3004, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 4900, "numnum:min:MAX_AREAKM": 103, "numnum:sum:MAX_AREAKM": 6610, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 571, "numnum:min:MIN_AREAMI": 35, "numnum:sum:MIN_AREAMI": 1159, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 1892, "numnum:min:MAX_AREAMI": 40, "numnum:sum:MAX_AREAMI": 2551, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 1365, "numnum:min:MIN_PERKM": 91, "numnum:sum:MIN_PERKM": 2505, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 5010, "numnum:min:MAX_PERKM": 107, "numnum:sum:MAX_PERKM": 6273, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 848, "numnum:min:MIN_PERMI": 57, "numnum:sum:MIN_PERMI": 1558, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 3113, "numnum:min:MAX_PERMI": 67, "numnum:sum:MAX_PERMI": 3899, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 34.716667, "numnum:min:MIN_BBXMIN": 18.491667, "numnum:sum:MIN_BBXMIN": 173.033334, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 34.716667, "numnum:min:MAX_BBXMIN": 18.491667, "numnum:sum:MAX_BBXMIN": 173.491694, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 34.958333, "numnum:min:MIN_BBXMAX": 18.614651, "numnum:sum:MIN_BBXMAX": 175.59508, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 34.958333, "numnum:min:MAX_BBXMAX": 18.625, "numnum:sum:MAX_BBXMAX": 175.66666600000003, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 39.841667, "numnum:min:MIN_BBYMIN": 4.316667, "numnum:sum:MIN_BBYMIN": 178.250001, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 39.841667, "numnum:min:MAX_BBYMIN": 4.316667, "numnum:sum:MAX_BBYMIN": 178.758334, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 40.116667, "numnum:min:MIN_BBYMAX": 4.483333, "numnum:sum:MIN_BBYMAX": 180.72302, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 40.116667, "numnum:min:MAX_BBYMAX": 4.483333, "numnum:sum:MAX_BBYMAX": 181.349999, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 34.836735, "numnum:min:MEAN_BBXC": 18.546436, "numnum:sum:MEAN_BBXC": 174.504652, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 39.957843, "numnum:min:MEAN_BBYC": 4.388157, "numnum:sum:MEAN_BBYC": 179.91195799999998, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 68, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 106, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 7734614, "numnum:min:GN_POP": 200452, "numnum:sum:GN_POP": 13102136, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 850, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 920, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 889, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8476, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 515, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1517, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 39.92, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 139.97, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 34.76, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 122.50999999999999, "numnum:count:POP1950": 6, "numnum:max:POP1950": 2494, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 4540, "numnum:count:POP1955": 6, "numnum:max:POP1955": 3029, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 5587, "numnum:count:POP1960": 6, "numnum:max:POP1960": 3680, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 6867, "numnum:count:POP1965": 6, "numnum:max:POP1965": 4738, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 8695, "numnum:count:POP1970": 6, "numnum:max:POP1970": 5585, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 10440, "numnum:count:POP1975": 6, "numnum:max:POP1975": 6450, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 12103, "numnum:count:POP1980": 6, "numnum:max:POP1980": 7349, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 13643, "numnum:count:POP1985": 6, "numnum:max:POP1985": 8328, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 15269, "numnum:count:POP1990": 6, "numnum:max:POP1990": 9061, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 16718, "numnum:count:POP1995": 6, "numnum:max:POP1995": 9707, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 18113, "numnum:count:POP2000": 6, "numnum:max:POP2000": 10534, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 19644, "numnum:count:POP2005": 6, "numnum:max:POP2005": 11487, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 21301, "numnum:count:POP2010": 6, "numnum:max:POP2010": 11893, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 21963, "numnum:count:POP2015": 6, "numnum:max:POP2015": 12503, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 22923, "numnum:count:POP2020": 6, "numnum:max:POP2020": 13465, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 24374, "numnum:count:POP2025": 6, "numnum:max:POP2025": 14451, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 25754, "numnum:count:POP2050": 6, "numnum:max:POP2050": 15561, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 27202, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.390229 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 16, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 520, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 32, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 15.354733, "numnum:min:LATITUDE": 0.316659, "numnum:sum:LATITUDE": 47.429719999999999, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 44.206593, "numnum:min:LONGITUDE": 31.580026, "numnum:sum:LONGITUDE": 190.451269, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 20, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 29, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 2008000, "numnum:min:POP_MAX": 111975, "numnum:sum:POP_MAX": 5083777, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 1835853, "numnum:min:POP_MIN": 111975, "numnum:sum:POP_MIN": 4468960, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 2153702, "numnum:min:POP_OTHER": 111975, "numnum:sum:POP_OTHER": 4930279, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 55, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 55, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 373303, "numnum:min:GEONAMEID": 71137, "numnum:sum:GEONAMEID": 1243979, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 2155592, "numnum:min:MAX_POP10": 111975, "numnum:sum:MAX_POP10": 5059223, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 2153391, "numnum:min:MAX_POP20": 111975, "numnum:sum:MAX_POP20": 5057022, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 2322955, "numnum:min:MAX_POP50": 111975, "numnum:sum:MAX_POP50": 5226586, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 2322955, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 5114611, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 450, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 405, "numnum:min:MIN_AREAKM": 21, "numnum:sum:MIN_AREAKM": 718, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 465, "numnum:min:MAX_AREAKM": 21, "numnum:sum:MAX_AREAKM": 778, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 156, "numnum:min:MIN_AREAMI": 8, "numnum:sum:MIN_AREAMI": 277, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 180, "numnum:min:MAX_AREAMI": 8, "numnum:sum:MAX_AREAMI": 301, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 391, "numnum:min:MIN_PERKM": 30, "numnum:sum:MIN_PERKM": 690, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 470, "numnum:min:MAX_PERKM": 30, "numnum:sum:MAX_PERKM": 769, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 243, "numnum:min:MIN_PERMI": 18, "numnum:sum:MIN_PERMI": 428, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 292, "numnum:min:MAX_PERMI": 18, "numnum:sum:MAX_PERMI": 477, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 44.15, "numnum:min:MIN_BBXMIN": 31.575, "numnum:sum:MIN_BBXMIN": 190.1, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 44.15, "numnum:min:MAX_BBXMIN": 31.575, "numnum:sum:MAX_BBXMIN": 190.15, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 44.258333, "numnum:min:MIN_BBXMAX": 31.625, "numnum:sum:MIN_BBXMAX": 190.825, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 44.258333, "numnum:min:MAX_BBXMAX": 31.625, "numnum:sum:MAX_BBXMAX": 190.825, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 15.266667, "numnum:min:MIN_BBYMIN": 0.033333, "numnum:sum:MIN_BBYMIN": 46.875, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 15.266667, "numnum:min:MAX_BBYMIN": 0.166719, "numnum:sum:MAX_BBYMIN": 47.008385999999998, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 15.508333, "numnum:min:MIN_BBYMAX": 0.475, "numnum:sum:MIN_BBYMAX": 47.899999, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 15.508333, "numnum:min:MAX_BBYMAX": 0.475, "numnum:sum:MAX_BBYMAX": 47.899999, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 44.206615, "numnum:min:MEAN_BBXC": 31.6015, "numnum:sum:MEAN_BBXC": 190.478841, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 15.376031, "numnum:min:MEAN_BBYC": 0.323809, "numnum:sum:MEAN_BBYC": 47.443915, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 44, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 69, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 1353189, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 2541010, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 2360, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 4118, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 587, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1094, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 15.36, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 15.68, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 44.2, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 76.77000000000001, "numnum:count:POP1950": 5, "numnum:max:POP1950": 95, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 141, "numnum:count:POP1955": 5, "numnum:max:POP1955": 110, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 168, "numnum:count:POP1960": 5, "numnum:max:POP1960": 137, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 209, "numnum:count:POP1965": 5, "numnum:max:POP1965": 222, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 311, "numnum:count:POP1970": 5, "numnum:max:POP1970": 340, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 451, "numnum:count:POP1975": 5, "numnum:max:POP1975": 398, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 539, "numnum:count:POP1980": 5, "numnum:max:POP1980": 469, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 707, "numnum:count:POP1985": 5, "numnum:max:POP1985": 595, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 997, "numnum:count:POP1990": 5, "numnum:max:POP1990": 755, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1408, "numnum:count:POP1995": 5, "numnum:max:POP1995": 1034, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1946, "numnum:count:POP2000": 5, "numnum:max:POP2000": 1365, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2462, "numnum:count:POP2005": 5, "numnum:max:POP2005": 1801, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3119, "numnum:count:POP2010": 5, "numnum:max:POP2010": 2008, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3428, "numnum:count:POP2015": 5, "numnum:max:POP2015": 2345, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3942, "numnum:count:POP2020": 5, "numnum:max:POP2020": 2955, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4934, "numnum:count:POP2025": 5, "numnum:max:POP2025": 3636, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 6142, "numnum:count:POP2050": 5, "numnum:max:POP2050": 4382, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 7580, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 420, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 22, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 40.181151, "numnum:min:LATITUDE": 33.500034, "numnum:sum:LATITUDE": 107.55315999999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 44.513551, "numnum:min:LONGITUDE": 35.509708, "numnum:sum:LONGITUDE": 116.32325500000002, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 2466000, "numnum:min:POP_MAX": 1102000, "numnum:sum:POP_MAX": 5414000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 2466000, "numnum:min:POP_MIN": 1093485, "numnum:sum:POP_MIN": 5271610, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3344577, "numnum:min:POP_OTHER": 1154748, "numnum:sum:POP_OTHER": 6161305, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 36, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 616052, "numnum:min:GEONAMEID": 170654, "numnum:sum:GEONAMEID": 1063487, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3398649, "numnum:min:MAX_POP10": 1200842, "numnum:sum:MAX_POP10": 6311616, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3865606, "numnum:min:MAX_POP20": 1200842, "numnum:sum:MAX_POP20": 6778916, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3865606, "numnum:min:MAX_POP50": 1200842, "numnum:sum:MAX_POP50": 6807140, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3865606, "numnum:min:MAX_POP300": 1200842, "numnum:sum:MAX_POP300": 6807140, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 532, "numnum:min:MIN_AREAKM": 191, "numnum:sum:MIN_AREAKM": 1152, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 705, "numnum:min:MAX_AREAKM": 191, "numnum:sum:MAX_AREAKM": 1367, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 205, "numnum:min:MIN_AREAMI": 74, "numnum:sum:MIN_AREAMI": 445, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 272, "numnum:min:MAX_AREAMI": 74, "numnum:sum:MAX_AREAMI": 528, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 608, "numnum:min:MIN_PERKM": 166, "numnum:sum:MIN_PERKM": 1177, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 768, "numnum:min:MAX_PERKM": 166, "numnum:sum:MAX_PERKM": 1391, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 378, "numnum:min:MIN_PERMI": 103, "numnum:sum:MIN_PERMI": 732, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 477, "numnum:min:MAX_PERMI": 103, "numnum:sum:MAX_PERMI": 864, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 44.391667, "numnum:min:MIN_BBXMIN": 35.441667, "numnum:sum:MIN_BBXMIN": 115.883334, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 44.391667, "numnum:min:MAX_BBXMIN": 35.441667, "numnum:sum:MAX_BBXMIN": 115.883334, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 44.6, "numnum:min:MIN_BBXMAX": 35.718541, "numnum:sum:MIN_BBXMAX": 116.793464, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 44.6, "numnum:min:MAX_BBXMAX": 35.758333, "numnum:sum:MAX_BBXMAX": 116.908333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 39.925, "numnum:min:MIN_BBYMIN": 33.283333, "numnum:sum:MIN_BBYMIN": 106.908333, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 39.925, "numnum:min:MAX_BBYMIN": 33.283333, "numnum:sum:MAX_BBYMIN": 106.908333, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 40.241667, "numnum:min:MIN_BBYMAX": 33.611711, "numnum:sum:MIN_BBYMAX": 108.02004500000001, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 40.241667, "numnum:min:MAX_BBYMAX": 33.625, "numnum:sum:MAX_BBYMAX": 108.033334, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 44.506293, "numnum:min:MEAN_BBXC": 35.600789, "numnum:sum:MEAN_BBXC": 116.382201, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 40.127356, "numnum:min:MEAN_BBYC": 33.474283, "numnum:sum:MEAN_BBYC": 107.49444599999998, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 15, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1916100, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 3009585, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1002, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 1058, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 493, "numnum:min:UN_FID": 341, "numnum:sum:UN_FID": 1211, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 40.2, "numnum:min:UN_LAT": 33.49, "numnum:sum:UN_LAT": 107.57000000000001, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 44.53, "numnum:min:UN_LONG": 35.49, "numnum:sum:UN_LONG": 116.31, "numnum:count:POP1950": 3, "numnum:max:POP1950": 367, "numnum:min:POP1950": 322, "numnum:sum:POP1950": 1030, "numnum:count:POP1955": 3, "numnum:max:POP1955": 461, "numnum:min:POP1955": 425, "numnum:sum:POP1955": 1317, "numnum:count:POP1960": 3, "numnum:max:POP1960": 579, "numnum:min:POP1960": 538, "numnum:sum:POP1960": 1678, "numnum:count:POP1965": 3, "numnum:max:POP1965": 733, "numnum:min:POP1965": 648, "numnum:sum:POP1965": 2108, "numnum:count:POP1970": 3, "numnum:max:POP1970": 923, "numnum:min:POP1970": 778, "numnum:sum:POP1970": 2615, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1500, "numnum:min:POP1975": 911, "numnum:sum:POP1975": 3533, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1623, "numnum:min:POP1980": 1042, "numnum:sum:POP1980": 4041, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1585, "numnum:min:POP1985": 1123, "numnum:sum:POP1985": 4254, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1691, "numnum:min:POP1990": 1175, "numnum:sum:POP1990": 4159, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1849, "numnum:min:POP1995": 1142, "numnum:sum:POP1995": 4259, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2044, "numnum:min:POP2000": 1111, "numnum:sum:POP2000": 4642, "numnum:count:POP2005": 3, "numnum:max:POP2005": 2330, "numnum:min:POP2005": 1103, "numnum:sum:POP2005": 5210, "numnum:count:POP2010": 3, "numnum:max:POP2010": 2466, "numnum:min:POP2010": 1102, "numnum:sum:POP2010": 5414, "numnum:count:POP2015": 3, "numnum:max:POP2015": 2675, "numnum:min:POP2015": 1102, "numnum:sum:POP2015": 5718, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2981, "numnum:min:POP2020": 1102, "numnum:sum:POP2020": 6134, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3293, "numnum:min:POP2025": 1102, "numnum:sum:POP2025": 6514, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3605, "numnum:min:POP2050": 1102, "numnum:sum:POP2050": 6880, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Addis Ababa", "DIFFASCII": 0, "NAMEASCII": "Addis Ababa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ethiopia", "SOV_A3": "ETH", "ADM0NAME": "Ethiopia", "ADM0_A3": "ETH", "ADM1NAME": "Addis Ababa", "ISO_A2": "ET", "LATITUDE": 9.03331, "LONGITUDE": 38.700004, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3100000, "POP_MIN": 2757729, "POP_OTHER": 3013653, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 344979, "MEGANAME": "Addis Ababa", "LS_NAME": "Addis Ababa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2984087, "MAX_POP20": 3176486, "MAX_POP50": 3491912, "MAX_POP300": 3450173, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 462, "MAX_AREAKM": 1182, "MIN_AREAMI": 178, "MAX_AREAMI": 457, "MIN_PERKM": 397, "MAX_PERKM": 1325, "MIN_PERMI": 247, "MAX_PERMI": 823, "MIN_BBXMIN": 38.575, "MAX_BBXMIN": 38.575, "MIN_BBXMAX": 38.966667, "MAX_BBXMAX": 39.483333, "MIN_BBYMIN": 8.033333, "MAX_BBYMIN": 8.67178, "MIN_BBYMAX": 9.125, "MAX_BBYMAX": 9.125, "MEAN_BBXC": 38.919464, "MEAN_BBYC": 8.825709, "COMPARE": 0, "GN_ASCII": "Addis Ababa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 2757729, "ELEVATION": 0, "GTOPO30": 2363, "TIMEZONE": "Africa/Addis_Ababa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 180, "UN_ADM0": "Ethiopia", "UN_LAT": 9.02, "UN_LONG": 38.7, "POP1950": 392, "POP1955": 451, "POP1960": 519, "POP1965": 597, "POP1970": 729, "POP1975": 926, "POP1980": 1175, "POP1985": 1476, "POP1990": 1791, "POP1995": 2157, "POP2000": 2493, "POP2005": 2902, "POP2010": 3100, "POP2015": 3453, "POP2020": 4184, "POP2025": 5083, "POP2050": 6156, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 520, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 51.181125, "numnum:min:LATITUDE": 9.03331, "numnum:sum:LATITUDE": 69.774457, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 71.427774, "numnum:min:LONGITUDE": 38.700004, "numnum:sum:LONGITUDE": 154.193088, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3100000, "numnum:min:POP_MAX": 345604, "numnum:sum:POP_MAX": 3923480, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 2757729, "numnum:min:POP_MIN": 247018, "numnum:sum:POP_MIN": 3329768, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3013653, "numnum:min:POP_OTHER": 247018, "numnum:sum:POP_OTHER": 3578116, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 32, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 32, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1526273, "numnum:min:GEONAMEID": 57289, "numnum:sum:GEONAMEID": 1928541, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2984087, "numnum:min:MAX_POP10": 247018, "numnum:sum:MAX_POP10": 3556126, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3176486, "numnum:min:MAX_POP20": 247018, "numnum:sum:MAX_POP20": 3748525, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3491912, "numnum:min:MAX_POP50": 247018, "numnum:sum:MAX_POP50": 4063951, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3450173, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 3775194, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 462, "numnum:min:MIN_AREAKM": 40, "numnum:sum:MIN_AREAKM": 606, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1182, "numnum:min:MAX_AREAKM": 40, "numnum:sum:MAX_AREAKM": 1326, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 178, "numnum:min:MIN_AREAMI": 15, "numnum:sum:MIN_AREAMI": 233, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 457, "numnum:min:MAX_AREAMI": 15, "numnum:sum:MAX_AREAMI": 512, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 397, "numnum:min:MIN_PERKM": 37, "numnum:sum:MIN_PERKM": 535, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 1325, "numnum:min:MAX_PERKM": 37, "numnum:sum:MAX_PERKM": 1463, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 247, "numnum:min:MIN_PERMI": 23, "numnum:sum:MIN_PERMI": 333, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 823, "numnum:min:MAX_PERMI": 23, "numnum:sum:MAX_PERMI": 909, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 71.325, "numnum:min:MIN_BBXMIN": 38.575, "numnum:sum:MIN_BBXMIN": 153.925, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 71.325, "numnum:min:MAX_BBXMIN": 38.575, "numnum:sum:MAX_BBXMIN": 153.925, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 71.533333, "numnum:min:MIN_BBXMAX": 38.966667, "numnum:sum:MIN_BBXMAX": 154.6, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 71.533333, "numnum:min:MAX_BBXMAX": 39.483333, "numnum:sum:MAX_BBXMAX": 155.116666, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 51.1, "numnum:min:MIN_BBYMIN": 8.033333, "numnum:sum:MIN_BBYMIN": 68.65, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 51.1, "numnum:min:MAX_BBYMIN": 8.67178, "numnum:sum:MAX_BBYMIN": 69.288447, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 51.225, "numnum:min:MIN_BBYMAX": 9.125, "numnum:sum:MIN_BBYMAX": 69.941667, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 51.225, "numnum:min:MAX_BBYMAX": 9.125, "numnum:sum:MAX_BBYMAX": 69.941667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 71.43275, "numnum:min:MEAN_BBXC": 38.919464, "numnum:sum:MEAN_BBXC": 154.416664, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 51.164443, "numnum:min:MEAN_BBYC": 8.825709, "numnum:sum:MEAN_BBYC": 69.547156, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 44, "numnum:min:ADMIN1_COD": 5, "numnum:sum:ADMIN1_COD": 69, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 2757729, "numnum:min:GN_POP": 345604, "numnum:sum:GN_POP": 3581209, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 2363, "numnum:min:GTOPO30": 339, "numnum:sum:GTOPO30": 3949, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 180, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 180, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 9.02, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 9.02, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 38.7, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 38.7, "numnum:count:POP1950": 3, "numnum:max:POP1950": 392, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 392, "numnum:count:POP1955": 3, "numnum:max:POP1955": 451, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 451, "numnum:count:POP1960": 3, "numnum:max:POP1960": 519, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 519, "numnum:count:POP1965": 3, "numnum:max:POP1965": 597, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 597, "numnum:count:POP1970": 3, "numnum:max:POP1970": 729, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 729, "numnum:count:POP1975": 3, "numnum:max:POP1975": 926, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 926, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1175, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1175, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1476, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1476, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1791, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1791, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2157, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2157, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2493, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2493, "numnum:count:POP2005": 3, "numnum:max:POP2005": 2902, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2902, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3100, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3100, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3453, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3453, "numnum:count:POP2020": 3, "numnum:max:POP2020": 4184, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4184, "numnum:count:POP2025": 3, "numnum:max:POP2025": 5083, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5083, "numnum:count:POP2050": 3, "numnum:max:POP2050": 6156, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 6156, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ 38.671875, 9.015302 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 10, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 26, "numnum:count:NATSCALE": 10, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1540, "numnum:count:LABELRANK": 10, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 53, "numnum:count:DIFFASCII": 10, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 10, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 9, "numnum:count:CAPALT": 10, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 10, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 10, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 6, "numnum:count:LATITUDE": 10, "numnum:max:LATITUDE": 33.338648, "numnum:min:LATITUDE": 0.316659, "numnum:sum:LATITUDE": 169.118189, "numnum:count:LONGITUDE": 10, "numnum:max:LONGITUDE": 44.393869, "numnum:min:LONGITUDE": 31.580026, "numnum:sum:LONGITUDE": 377.219247, "numnum:count:CHANGED": 10, "numnum:max:CHANGED": 20, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 44, "numnum:count:NAMEDIFF": 10, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 10, "numnum:max:POP_MAX": 5054000, "numnum:min:POP_MAX": 111975, "numnum:sum:POP_MAX": 20081077, "numnum:count:POP_MIN": 10, "numnum:max:POP_MIN": 5054000, "numnum:min:POP_MIN": 111975, "numnum:sum:POP_MIN": 16116336, "numnum:count:POP_OTHER": 10, "numnum:max:POP_OTHER": 4959534, "numnum:min:POP_OTHER": 111975, "numnum:sum:POP_OTHER": 18935693, "numnum:count:RANK_MAX": 10, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 116, "numnum:count:RANK_MIN": 10, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 115, "numnum:count:GEONAMEID": 10, "numnum:max:GEONAMEID": 379252, "numnum:min:GEONAMEID": 71137, "numnum:sum:GEONAMEID": 2598017, "numnum:count:LS_MATCH": 10, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 10, "numnum:count:CHECKME": 10, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 10, "numnum:max:MAX_POP10": 5298025, "numnum:min:MAX_POP10": 111975, "numnum:sum:MAX_POP10": 19535564, "numnum:count:MAX_POP20": 10, "numnum:max:MAX_POP20": 5298025, "numnum:min:MAX_POP20": 111975, "numnum:sum:MAX_POP20": 20685411, "numnum:count:MAX_POP50": 10, "numnum:max:MAX_POP50": 5298025, "numnum:min:MAX_POP50": 111975, "numnum:sum:MAX_POP50": 21170401, "numnum:count:MAX_POP300": 10, "numnum:max:MAX_POP300": 5298025, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 23164075, "numnum:count:MAX_POP310": 10, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 10, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 950, "numnum:count:MIN_AREAKM": 10, "numnum:max:MIN_AREAKM": 587, "numnum:min:MIN_AREAKM": 21, "numnum:sum:MIN_AREAKM": 2764, "numnum:count:MAX_AREAKM": 10, "numnum:max:MAX_AREAKM": 1182, "numnum:min:MAX_AREAKM": 21, "numnum:sum:MAX_AREAKM": 3968, "numnum:count:MIN_AREAMI": 10, "numnum:max:MIN_AREAMI": 227, "numnum:min:MIN_AREAMI": 8, "numnum:sum:MIN_AREAMI": 1067, "numnum:count:MAX_AREAMI": 10, "numnum:max:MAX_AREAMI": 457, "numnum:min:MAX_AREAMI": 8, "numnum:sum:MAX_AREAMI": 1533, "numnum:count:MIN_PERKM": 10, "numnum:max:MIN_PERKM": 397, "numnum:min:MIN_PERKM": 30, "numnum:sum:MIN_PERKM": 2186, "numnum:count:MAX_PERKM": 10, "numnum:max:MAX_PERKM": 1325, "numnum:min:MAX_PERKM": 30, "numnum:sum:MAX_PERKM": 3483, "numnum:count:MIN_PERMI": 10, "numnum:max:MIN_PERMI": 247, "numnum:min:MIN_PERMI": 18, "numnum:sum:MIN_PERMI": 1358, "numnum:count:MAX_PERMI": 10, "numnum:max:MAX_PERMI": 823, "numnum:min:MAX_PERMI": 18, "numnum:sum:MAX_PERMI": 2163, "numnum:count:MIN_BBXMIN": 10, "numnum:max:MIN_BBXMIN": 44.241667, "numnum:min:MIN_BBXMIN": 31.575, "numnum:sum:MIN_BBXMIN": 376.133334, "numnum:count:MAX_BBXMIN": 10, "numnum:max:MAX_BBXMIN": 44.241667, "numnum:min:MAX_BBXMIN": 31.575, "numnum:sum:MAX_BBXMIN": 376.29999999999998, "numnum:count:MIN_BBXMAX": 10, "numnum:max:MIN_BBXMAX": 44.575, "numnum:min:MIN_BBXMAX": 31.625, "numnum:sum:MIN_BBXMAX": 378.4166680000001, "numnum:count:MAX_BBXMAX": 10, "numnum:max:MAX_BBXMAX": 44.575, "numnum:min:MAX_BBXMAX": 31.625, "numnum:sum:MAX_BBXMAX": 379.05000000000009, "numnum:count:MIN_BBYMIN": 10, "numnum:max:MIN_BBYMIN": 33.141667, "numnum:min:MIN_BBYMIN": 0.033333, "numnum:sum:MIN_BBYMIN": 166.841666, "numnum:count:MAX_BBYMIN": 10, "numnum:max:MAX_BBYMIN": 33.141667, "numnum:min:MAX_BBYMIN": 0.166719, "numnum:sum:MAX_BBYMIN": 167.61349900000003, "numnum:count:MIN_BBYMAX": 10, "numnum:max:MIN_BBYMAX": 33.575, "numnum:min:MIN_BBYMAX": 0.475, "numnum:sum:MIN_BBYMAX": 170.37442099999999, "numnum:count:MAX_BBYMAX": 10, "numnum:max:MAX_BBYMAX": 33.575, "numnum:min:MAX_BBYMAX": 0.475, "numnum:sum:MAX_BBYMAX": 170.58333299999999, "numnum:count:MEAN_BBXC": 10, "numnum:max:MEAN_BBXC": 44.401776, "numnum:min:MEAN_BBXC": 31.6015, "numnum:sum:MEAN_BBXC": 377.489905, "numnum:count:MEAN_BBYC": 10, "numnum:max:MEAN_BBYC": 33.332697, "numnum:min:MEAN_BBYC": 0.323809, "numnum:sum:MEAN_BBYC": 168.91988999999999, "numnum:count:COMPARE": 10, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 10, "numnum:max:ADMIN1_COD": 44, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 166, "numnum:count:GN_POP": 10, "numnum:max:GN_POP": 5672513, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 14935756, "numnum:count:ELEVATION": 10, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 10, "numnum:max:GTOPO30": 2363, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 8460, "numnum:count:UN_FID": 10, "numnum:max:UN_FID": 587, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 2362, "numnum:count:UN_LAT": 10, "numnum:max:UN_LAT": 33.33, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 105.51999999999998, "numnum:count:UN_LONG": 10, "numnum:max:UN_LONG": 44.39, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 228.31, "numnum:count:POP1950": 10, "numnum:max:POP1950": 579, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1385, "numnum:count:POP1955": 10, "numnum:max:POP1955": 719, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1730, "numnum:count:POP1960": 10, "numnum:max:POP1960": 1019, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2312, "numnum:count:POP1965": 10, "numnum:max:POP1965": 1614, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3298, "numnum:count:POP1970": 10, "numnum:max:POP1970": 2070, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 4295, "numnum:count:POP1975": 10, "numnum:max:POP1975": 2620, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5471, "numnum:count:POP1980": 10, "numnum:max:POP1980": 3145, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 6827, "numnum:count:POP1985": 10, "numnum:max:POP1985": 3607, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 8427, "numnum:count:POP1990": 10, "numnum:max:POP1990": 4092, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 10502, "numnum:count:POP1995": 10, "numnum:max:POP1995": 4598, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 12916, "numnum:count:POP2000": 10, "numnum:max:POP2000": 5200, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 15111, "numnum:count:POP2005": 10, "numnum:max:POP2005": 5327, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 16908, "numnum:count:POP2010": 10, "numnum:max:POP2010": 5054, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 17396, "numnum:count:POP2015": 10, "numnum:max:POP2015": 5891, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 19577, "numnum:count:POP2020": 10, "numnum:max:POP2020": 6618, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 22998, "numnum:count:POP2025": 10, "numnum:max:POP2025": 7345, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 26855, "numnum:count:POP2050": 10, "numnum:max:POP2050": 8060, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 31092, "accum": 10, "numnum:count:accum2": 10, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 10, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.358062 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892, "accum2": 1, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1120, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 28, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 43.805012, "numnum:min:LATITUDE": 35.671943, "numnum:sum:LATITUDE": 204.057008, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 87.575006, "numnum:min:LONGITUDE": 49.862217, "numnum:sum:LONGITUDE": 332.741704, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 15, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 7873000, "numnum:min:POP_MAX": 837000, "numnum:sum:POP_MAX": 15167300, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 7153309, "numnum:min:POP_MIN": 804212, "numnum:sum:POP_MIN": 13335774, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 8209012, "numnum:min:POP_OTHER": 781714, "numnum:sum:POP_OTHER": 15360215, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 60, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 60, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 1529102, "numnum:min:GEONAMEID": 112931, "numnum:sum:GEONAMEID": 5270361, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 8258981, "numnum:min:MAX_POP10": 804212, "numnum:sum:MAX_POP10": 15575560, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 8258981, "numnum:min:MAX_POP20": 804212, "numnum:sum:MAX_POP20": 15576604, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 8258981, "numnum:min:MAX_POP50": 804212, "numnum:sum:MAX_POP50": 15576604, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 8258981, "numnum:min:MAX_POP300": 804212, "numnum:sum:MAX_POP300": 15576604, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 639, "numnum:min:MIN_AREAKM": 245, "numnum:sum:MIN_AREAKM": 1987, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 643, "numnum:min:MAX_AREAKM": 245, "numnum:sum:MAX_AREAKM": 1994, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 247, "numnum:min:MIN_AREAMI": 94, "numnum:sum:MIN_AREAMI": 766, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 248, "numnum:min:MAX_AREAMI": 94, "numnum:sum:MAX_AREAMI": 768, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 377, "numnum:min:MIN_PERKM": 174, "numnum:sum:MIN_PERKM": 1304, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 383, "numnum:min:MAX_PERKM": 179, "numnum:sum:MAX_PERKM": 1315, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 234, "numnum:min:MIN_PERMI": 108, "numnum:sum:MIN_PERMI": 810, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 238, "numnum:min:MAX_PERMI": 111, "numnum:sum:MAX_PERMI": 817, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 87.358333, "numnum:min:MIN_BBXMIN": 49.7, "numnum:sum:MIN_BBXMIN": 331.75, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 87.358333, "numnum:min:MAX_BBXMIN": 49.716667, "numnum:sum:MAX_BBXMIN": 331.766667, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 87.725, "numnum:min:MIN_BBXMAX": 50.016667, "numnum:sum:MIN_BBXMAX": 333.57813400000006, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 87.725, "numnum:min:MAX_BBXMAX": 50.016667, "numnum:sum:MAX_BBXMAX": 333.59166700000005, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 43.641667, "numnum:min:MIN_BBYMIN": 35.55, "numnum:sum:MIN_BBYMIN": 203.41666800000002, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 43.641667, "numnum:min:MAX_BBYMIN": 35.55, "numnum:sum:MAX_BBYMIN": 203.41666800000002, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 44.016667, "numnum:min:MIN_BBYMAX": 35.825, "numnum:sum:MIN_BBYMAX": 204.825, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 44.016667, "numnum:min:MAX_BBYMAX": 35.825, "numnum:sum:MAX_BBYMAX": 204.825, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 87.578494, "numnum:min:MEAN_BBXC": 49.881373, "numnum:sum:MEAN_BBXC": 332.73725500000008, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 43.854525, "numnum:min:MEAN_BBYC": 35.709171, "numnum:sum:MEAN_BBYC": 204.17184899999999, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 26, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 62, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 7153309, "numnum:min:GN_POP": 900000, "numnum:sum:GN_POP": 12656075, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 1149, "numnum:min:GTOPO30": 30, "numnum:sum:GTOPO30": 3326, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 580, "numnum:min:UN_FID": 118, "numnum:sum:UN_FID": 1535, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 43.78, "numnum:min:UN_LAT": 35.77, "numnum:sum:UN_LAT": 203.98000000000003, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 87.58, "numnum:min:UN_LONG": 49.81, "numnum:sum:UN_LONG": 332.94, "numnum:count:POP1950": 5, "numnum:max:POP1950": 1041, "numnum:min:POP1950": 150, "numnum:sum:POP1950": 3096, "numnum:count:POP1955": 5, "numnum:max:POP1955": 1396, "numnum:min:POP1955": 186, "numnum:sum:POP1955": 3677, "numnum:count:POP1960": 5, "numnum:max:POP1960": 1873, "numnum:min:POP1960": 236, "numnum:sum:POP1960": 4462, "numnum:count:POP1965": 5, "numnum:max:POP1965": 2511, "numnum:min:POP1965": 322, "numnum:sum:POP1965": 5602, "numnum:count:POP1970": 5, "numnum:max:POP1970": 3290, "numnum:min:POP1970": 433, "numnum:sum:POP1970": 6981, "numnum:count:POP1975": 5, "numnum:max:POP1975": 4273, "numnum:min:POP1975": 485, "numnum:sum:POP1975": 8514, "numnum:count:POP1980": 5, "numnum:max:POP1980": 5079, "numnum:min:POP1980": 538, "numnum:sum:POP1980": 9890, "numnum:count:POP1985": 5, "numnum:max:POP1985": 5839, "numnum:min:POP1985": 583, "numnum:sum:POP1985": 11069, "numnum:count:POP1990": 5, "numnum:max:POP1990": 6365, "numnum:min:POP1990": 635, "numnum:sum:POP1990": 11994, "numnum:count:POP1995": 5, "numnum:max:POP1995": 6687, "numnum:min:POP1995": 703, "numnum:sum:POP1995": 12689, "numnum:count:POP2000": 5, "numnum:max:POP2000": 7128, "numnum:min:POP2000": 770, "numnum:sum:POP2000": 13569, "numnum:count:POP2005": 5, "numnum:max:POP2005": 7653, "numnum:min:POP2005": 817, "numnum:sum:POP2005": 14520, "numnum:count:POP2010": 5, "numnum:max:POP2010": 7873, "numnum:min:POP2010": 837, "numnum:sum:POP2010": 14937, "numnum:count:POP2015": 5, "numnum:max:POP2015": 8221, "numnum:min:POP2015": 869, "numnum:sum:POP2015": 15608, "numnum:count:POP2020": 5, "numnum:max:POP2020": 8832, "numnum:min:POP2020": 934, "numnum:sum:POP2020": 16808, "numnum:count:POP2025": 5, "numnum:max:POP2025": 9404, "numnum:min:POP2025": 1011, "numnum:sum:POP2025": 17999, "numnum:count:POP2050": 5, "numnum:max:POP2050": 9814, "numnum:min:POP2050": 1096, "numnum:sum:POP2050": 19027, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ 69.257812, 41.310824 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 14, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1040, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 29, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 51.181125, "numnum:min:LATITUDE": 9.560022, "numnum:sum:LATITUDE": 229.126212, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 87.575006, "numnum:min:LONGITUDE": 44.06531, "numnum:sum:LONGITUDE": 396.81044399999998, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 14, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 2184000, "numnum:min:POP_MAX": 345604, "numnum:sum:POP_MAX": 8117780, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 1978028, "numnum:min:POP_MIN": 247018, "numnum:sum:POP_MIN": 6754504, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 2806287, "numnum:min:POP_OTHER": 247018, "numnum:sum:POP_OTHER": 7715666, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 67, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 67, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 1529102, "numnum:min:GEONAMEID": 57289, "numnum:sum:GEONAMEID": 6740992, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 2865234, "numnum:min:MAX_POP10": 247018, "numnum:sum:MAX_POP10": 7888618, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 2865890, "numnum:min:MAX_POP20": 247018, "numnum:sum:MAX_POP20": 7889662, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 2865890, "numnum:min:MAX_POP50": 247018, "numnum:sum:MAX_POP50": 7889662, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 2865890, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 7642644, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 550, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 639, "numnum:min:MIN_AREAKM": 40, "numnum:sum:MIN_AREAKM": 1635, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 643, "numnum:min:MAX_AREAKM": 40, "numnum:sum:MAX_AREAKM": 1642, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 247, "numnum:min:MIN_AREAMI": 15, "numnum:sum:MIN_AREAMI": 630, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 248, "numnum:min:MAX_AREAMI": 15, "numnum:sum:MAX_AREAMI": 632, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 377, "numnum:min:MIN_PERKM": 37, "numnum:sum:MIN_PERKM": 1197, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 383, "numnum:min:MAX_PERKM": 37, "numnum:sum:MAX_PERKM": 1208, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 234, "numnum:min:MIN_PERMI": 23, "numnum:sum:MIN_PERMI": 744, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 238, "numnum:min:MAX_PERMI": 23, "numnum:sum:MAX_PERMI": 751, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 87.358333, "numnum:min:MIN_BBXMIN": 44.025, "numnum:sum:MIN_BBXMIN": 395.883333, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 87.358333, "numnum:min:MAX_BBXMIN": 44.025, "numnum:sum:MAX_BBXMIN": 395.9, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 87.725, "numnum:min:MIN_BBXMAX": 44.1, "numnum:sum:MIN_BBXMAX": 397.61146699999997, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 87.725, "numnum:min:MAX_BBXMAX": 44.1, "numnum:sum:MAX_BBXMAX": 397.625, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 51.1, "numnum:min:MIN_BBYMIN": 9.516667, "numnum:sum:MIN_BBYMIN": 228.48333499999996, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 51.1, "numnum:min:MAX_BBYMIN": 9.516667, "numnum:sum:MAX_BBYMIN": 228.48333499999996, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 51.225, "numnum:min:MIN_BBYMAX": 9.591667, "numnum:sum:MIN_BBYMAX": 229.816667, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 51.225, "numnum:min:MAX_BBYMAX": 9.591667, "numnum:sum:MAX_BBYMAX": 229.816667, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 87.578494, "numnum:min:MEAN_BBXC": 44.06445, "numnum:sum:MEAN_BBXC": 396.817607, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 51.164443, "numnum:min:MEAN_BBYC": 9.557004, "numnum:sum:MEAN_BBYC": 229.184125, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 20, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 61, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 1978028, "numnum:min:GN_POP": 345604, "numnum:sum:GN_POP": 6326246, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 1247, "numnum:min:GTOPO30": 30, "numnum:sum:GTOPO30": 3763, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 580, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1238, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 43.78, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 168.21, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 87.58, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 281.5, "numnum:count:POP1950": 6, "numnum:max:POP1950": 897, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2055, "numnum:count:POP1955": 6, "numnum:max:POP1955": 940, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2281, "numnum:count:POP1960": 6, "numnum:max:POP1960": 1005, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2589, "numnum:count:POP1965": 6, "numnum:max:POP1965": 1165, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3091, "numnum:count:POP1970": 6, "numnum:max:POP1970": 1403, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3691, "numnum:count:POP1975": 6, "numnum:max:POP1975": 1612, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4241, "numnum:count:POP1980": 6, "numnum:max:POP1980": 1818, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4811, "numnum:count:POP1985": 6, "numnum:max:POP1985": 1958, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5230, "numnum:count:POP1990": 6, "numnum:max:POP1990": 2100, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5629, "numnum:count:POP1995": 6, "numnum:max:POP1995": 2116, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 6002, "numnum:count:POP2000": 6, "numnum:max:POP2000": 2135, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6441, "numnum:count:POP2005": 6, "numnum:max:POP2005": 2158, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6867, "numnum:count:POP2010": 6, "numnum:max:POP2010": 2184, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 7064, "numnum:count:POP2015": 6, "numnum:max:POP2015": 2340, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 7387, "numnum:count:POP2020": 6, "numnum:max:POP2020": 2620, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 7976, "numnum:count:POP2025": 6, "numnum:max:POP2025": 2851, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 8595, "numnum:count:POP2050": 6, "numnum:max:POP2050": 3038, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 9213, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 9.535749 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 11, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1200, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 29, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 29.369718, "numnum:min:LATITUDE": 24.640833, "numnum:sum:LATITUDE": 130.763239, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 55.279974, "numnum:min:LONGITUDE": 46.772742, "numnum:sum:LONGITUDE": 252.14703700000005, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 1, "numnum:sum:CHANGED": 18, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 4465000, "numnum:min:POP_MAX": 563920, "numnum:sum:POP_MAX": 9920920, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 4205961, "numnum:min:POP_MIN": 60064, "numnum:sum:POP_MIN": 6292156, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 5148778, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 8562290, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 59, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 52, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 292223, "numnum:min:GEONAMEID": 108410, "numnum:sum:GEONAMEID": 1266790, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 5322753, "numnum:min:MAX_POP10": 563920, "numnum:sum:MAX_POP10": 9544186, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 5322753, "numnum:min:MAX_POP20": 563920, "numnum:sum:MAX_POP20": 11005514, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 5322753, "numnum:min:MAX_POP50": 563920, "numnum:sum:MAX_POP50": 11005514, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 5322753, "numnum:min:MAX_POP300": 563920, "numnum:sum:MAX_POP300": 11005514, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 2244726, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 2244726, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 854, "numnum:min:MIN_AREAKM": 178, "numnum:sum:MIN_AREAKM": 1753, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 854, "numnum:min:MAX_AREAKM": 178, "numnum:sum:MAX_AREAKM": 2075, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 330, "numnum:min:MIN_AREAMI": 69, "numnum:sum:MIN_AREAMI": 677, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 330, "numnum:min:MAX_AREAMI": 69, "numnum:sum:MAX_AREAMI": 801, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 459, "numnum:min:MIN_PERKM": 158, "numnum:sum:MIN_PERKM": 1168, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 459, "numnum:min:MAX_PERKM": 184, "numnum:sum:MAX_PERKM": 1375, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 285, "numnum:min:MIN_PERMI": 98, "numnum:sum:MIN_PERMI": 726, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 285, "numnum:min:MAX_PERMI": 115, "numnum:sum:MAX_PERMI": 855, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 55.175, "numnum:min:MIN_BBXMIN": 46.516667, "numnum:sum:MIN_BBXMIN": 251.29166700000003, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 55.175, "numnum:min:MAX_BBXMIN": 46.516667, "numnum:sum:MAX_BBXMIN": 251.31271900000002, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 55.437142, "numnum:min:MIN_BBXMAX": 46.933333, "numnum:sum:MIN_BBXMAX": 252.687141, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 55.533333, "numnum:min:MAX_BBXMAX": 46.933333, "numnum:sum:MAX_BBXMAX": 252.833332, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 29.066667, "numnum:min:MIN_BBYMIN": 24.516667, "numnum:sum:MIN_BBYMIN": 129.891667, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 29.225, "numnum:min:MAX_BBYMIN": 24.516667, "numnum:sum:MAX_BBYMIN": 130.05, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 29.391667, "numnum:min:MIN_BBYMAX": 24.833333, "numnum:sum:MIN_BBYMAX": 131.191666, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 29.391667, "numnum:min:MAX_BBYMAX": 24.833333, "numnum:sum:MAX_BBYMAX": 131.316666, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 55.361736, "numnum:min:MEAN_BBXC": 46.740447, "numnum:sum:MEAN_BBXC": 252.10715, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 29.277119, "numnum:min:MEAN_BBYC": 24.678984, "numnum:sum:MEAN_BBYC": 130.660686, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 10, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 16, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 4205961, "numnum:min:GN_POP": 60064, "numnum:sum:GN_POP": 5895385, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 618, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9339, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 498, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1281, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 29.38, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 79.3, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 55.32, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 150.06, "numnum:count:POP1950": 5, "numnum:max:POP1950": 111, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 194, "numnum:count:POP1955": 5, "numnum:max:POP1955": 131, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 265, "numnum:count:POP1960": 5, "numnum:max:POP1960": 179, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 375, "numnum:count:POP1965": 5, "numnum:max:POP1965": 303, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 581, "numnum:count:POP1970": 5, "numnum:max:POP1970": 553, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1041, "numnum:count:POP1975": 5, "numnum:max:POP1975": 710, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1565, "numnum:count:POP1980": 5, "numnum:max:POP1980": 1055, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2200, "numnum:count:POP1985": 5, "numnum:max:POP1985": 1566, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3033, "numnum:count:POP1990": 5, "numnum:max:POP1990": 2325, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 4190, "numnum:count:POP1995": 5, "numnum:max:POP1995": 3035, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 4875, "numnum:count:POP2000": 5, "numnum:max:POP2000": 3567, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6004, "numnum:count:POP2005": 5, "numnum:max:POP2005": 4193, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 7353, "numnum:count:POP2010": 5, "numnum:max:POP2010": 4465, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 7907, "numnum:count:POP2015": 5, "numnum:max:POP2015": 4856, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 8677, "numnum:count:POP2020": 5, "numnum:max:POP2020": 5405, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 9706, "numnum:count:POP2025": 5, "numnum:max:POP2025": 5866, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 10550, "numnum:count:POP2050": 5, "numnum:max:POP2050": 6275, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 11308, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 12, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1500, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 34, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 35.671943, "numnum:min:LATITUDE": 24.640833, "numnum:sum:LATITUDE": 166.435182, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 55.279974, "numnum:min:LONGITUDE": 46.772742, "numnum:sum:LONGITUDE": 303.571381, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 1, "numnum:sum:CHANGED": 23, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 7873000, "numnum:min:POP_MAX": 563920, "numnum:sum:POP_MAX": 17793920, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 7153309, "numnum:min:POP_MIN": 60064, "numnum:sum:POP_MIN": 13445465, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 8209012, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 16771302, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 72, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 65, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 292223, "numnum:min:GEONAMEID": 108410, "numnum:sum:GEONAMEID": 1379721, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 8258981, "numnum:min:MAX_POP10": 563920, "numnum:sum:MAX_POP10": 17803167, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 8258981, "numnum:min:MAX_POP20": 563920, "numnum:sum:MAX_POP20": 19264495, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 8258981, "numnum:min:MAX_POP50": 563920, "numnum:sum:MAX_POP50": 19264495, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 8258981, "numnum:min:MAX_POP300": 563920, "numnum:sum:MAX_POP300": 19264495, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 2244726, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 2244726, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 800, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 854, "numnum:min:MIN_AREAKM": 178, "numnum:sum:MIN_AREAKM": 2249, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 854, "numnum:min:MAX_AREAKM": 178, "numnum:sum:MAX_AREAKM": 2571, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 330, "numnum:min:MIN_AREAMI": 69, "numnum:sum:MIN_AREAMI": 868, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 330, "numnum:min:MAX_AREAMI": 69, "numnum:sum:MAX_AREAMI": 992, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 459, "numnum:min:MIN_PERKM": 158, "numnum:sum:MIN_PERKM": 1413, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 459, "numnum:min:MAX_PERKM": 184, "numnum:sum:MAX_PERKM": 1620, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 285, "numnum:min:MIN_PERMI": 98, "numnum:sum:MIN_PERMI": 878, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 285, "numnum:min:MAX_PERMI": 115, "numnum:sum:MAX_PERMI": 1007, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 55.175, "numnum:min:MIN_BBXMIN": 46.516667, "numnum:sum:MIN_BBXMIN": 302.508334, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 55.175, "numnum:min:MAX_BBXMIN": 46.516667, "numnum:sum:MAX_BBXMIN": 302.52938600000007, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 55.437142, "numnum:min:MIN_BBXMAX": 46.933333, "numnum:sum:MIN_BBXMAX": 304.287141, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 55.533333, "numnum:min:MAX_BBXMAX": 46.933333, "numnum:sum:MAX_BBXMAX": 304.433332, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 35.55, "numnum:min:MIN_BBYMIN": 24.516667, "numnum:sum:MIN_BBYMIN": 165.44166699999998, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 35.55, "numnum:min:MAX_BBYMIN": 24.516667, "numnum:sum:MAX_BBYMIN": 165.6, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 35.825, "numnum:min:MIN_BBYMAX": 24.833333, "numnum:sum:MIN_BBYMAX": 167.016666, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 35.825, "numnum:min:MAX_BBYMAX": 24.833333, "numnum:sum:MAX_BBYMAX": 167.141666, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 55.361736, "numnum:min:MEAN_BBXC": 46.740447, "numnum:sum:MEAN_BBXC": 303.523998, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 35.709171, "numnum:min:MEAN_BBYC": 24.678984, "numnum:sum:MEAN_BBYC": 166.36985700000003, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 26, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 42, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 7153309, "numnum:min:GN_POP": 60064, "numnum:sum:GN_POP": 13048694, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 1149, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8190, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 498, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1578, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 35.77, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 115.07000000000001, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 55.32, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 201.5, "numnum:count:POP1950": 6, "numnum:max:POP1950": 1041, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1235, "numnum:count:POP1955": 6, "numnum:max:POP1955": 1396, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1661, "numnum:count:POP1960": 6, "numnum:max:POP1960": 1873, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2248, "numnum:count:POP1965": 6, "numnum:max:POP1965": 2511, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3092, "numnum:count:POP1970": 6, "numnum:max:POP1970": 3290, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 4331, "numnum:count:POP1975": 6, "numnum:max:POP1975": 4273, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5838, "numnum:count:POP1980": 6, "numnum:max:POP1980": 5079, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 7279, "numnum:count:POP1985": 6, "numnum:max:POP1985": 5839, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 8872, "numnum:count:POP1990": 6, "numnum:max:POP1990": 6365, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 10555, "numnum:count:POP1995": 6, "numnum:max:POP1995": 6687, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 11562, "numnum:count:POP2000": 6, "numnum:max:POP2000": 7128, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 13132, "numnum:count:POP2005": 6, "numnum:max:POP2005": 7653, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 15006, "numnum:count:POP2010": 6, "numnum:max:POP2010": 7873, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 15780, "numnum:count:POP2015": 6, "numnum:max:POP2015": 8221, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 16898, "numnum:count:POP2020": 6, "numnum:max:POP2020": 8832, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 18538, "numnum:count:POP2025": 6, "numnum:max:POP2025": 9404, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 19954, "numnum:count:POP2050": 6, "numnum:max:POP2050": 9814, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 21122, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 19, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 960, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 2, "numnum:sum:LABELRANK": 47, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 7, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 38.560035, "numnum:min:LATITUDE": 2.066681, "numnum:sum:LATITUDE": 194.873406, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 73.166634, "numnum:min:LONGITUDE": 45.366678, "numnum:sum:LONGITUDE": 427.833655, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 3277000, "numnum:min:POP_MAX": 603492, "numnum:sum:POP_MAX": 8309133, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 3043532, "numnum:min:POP_MIN": 560230, "numnum:sum:POP_MIN": 6924993, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 3475519, "numnum:min:POP_OTHER": 556048, "numnum:sum:POP_OTHER": 8003084, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 80, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 78, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 1221874, "numnum:min:GEONAMEID": 53654, "numnum:sum:GEONAMEID": 4333538, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 3720671, "numnum:min:MAX_POP10": 560230, "numnum:sum:MAX_POP10": 8149732, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 3720671, "numnum:min:MAX_POP20": 560230, "numnum:sum:MAX_POP20": 8161074, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 7482035, "numnum:min:MAX_POP50": 560230, "numnum:sum:MAX_POP50": 15983447, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 7482969, "numnum:min:MAX_POP300": 560230, "numnum:sum:MAX_POP300": 15974809, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 772, "numnum:min:MIN_AREAKM": 96, "numnum:sum:MIN_AREAKM": 2188, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 5463, "numnum:min:MAX_AREAKM": 96, "numnum:sum:MAX_AREAKM": 7776, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 298, "numnum:min:MIN_AREAMI": 37, "numnum:sum:MIN_AREAMI": 844, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 2109, "numnum:min:MAX_AREAMI": 37, "numnum:sum:MAX_AREAMI": 3001, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 545, "numnum:min:MIN_PERKM": 68, "numnum:sum:MIN_PERKM": 1750, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 4154, "numnum:min:MAX_PERKM": 68, "numnum:sum:MAX_PERKM": 6085, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 339, "numnum:min:MIN_PERMI": 43, "numnum:sum:MIN_PERMI": 1088, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 2581, "numnum:min:MAX_PERMI": 43, "numnum:sum:MAX_PERMI": 3781, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 72.286464, "numnum:min:MIN_BBXMIN": 45.25, "numnum:sum:MIN_BBXMIN": 425.89479800000006, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 73.033333, "numnum:min:MAX_BBXMIN": 45.25, "numnum:sum:MAX_BBXMIN": 426.728037, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 73.516667, "numnum:min:MIN_BBXMAX": 45.416667, "numnum:sum:MIN_BBXMAX": 428.99999999999997, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 73.816667, "numnum:min:MAX_BBXMAX": 45.416667, "numnum:sum:MAX_BBXMAX": 429.7749999999999, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 38.416667, "numnum:min:MIN_BBYMIN": 2, "numnum:sum:MIN_BBYMIN": 193.366667, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 38.416667, "numnum:min:MAX_BBYMIN": 2, "numnum:sum:MAX_BBYMIN": 193.925, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 38.675, "numnum:min:MIN_BBYMAX": 2.116667, "numnum:sum:MIN_BBYMAX": 195.51048100000004, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 38.675, "numnum:min:MAX_BBYMAX": 2.116667, "numnum:sum:MAX_BBYMAX": 196.675001, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 73.182617, "numnum:min:MEAN_BBXC": 45.331178, "numnum:sum:MEAN_BBXC": 427.77950300000006, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 38.542754, "numnum:min:MEAN_BBYC": 2.054239, "numnum:sum:MEAN_BBYC": 194.833269, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 13, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 31, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 3043532, "numnum:min:GN_POP": 543107, "numnum:sum:GN_POP": 8903614, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 1808, "numnum:min:GTOPO30": 14, "numnum:sum:GTOPO30": 3454, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 454, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1175, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 34.53, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 70.28, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 73.06, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 187.53, "numnum:count:POP1950": 7, "numnum:max:POP1950": 129, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 234, "numnum:count:POP1955": 7, "numnum:max:POP1955": 184, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 298, "numnum:count:POP1960": 7, "numnum:max:POP1960": 263, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 402, "numnum:count:POP1965": 7, "numnum:max:POP1965": 369, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 571, "numnum:count:POP1970": 7, "numnum:max:POP1970": 472, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 814, "numnum:count:POP1975": 7, "numnum:max:POP1975": 674, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1226, "numnum:count:POP1980": 7, "numnum:max:POP1980": 978, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1718, "numnum:count:POP1985": 7, "numnum:max:POP1985": 1160, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2167, "numnum:count:POP1990": 7, "numnum:max:POP1990": 1306, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2684, "numnum:count:POP1995": 7, "numnum:max:POP1995": 1616, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3215, "numnum:count:POP2000": 7, "numnum:max:POP2000": 1963, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3758, "numnum:count:POP2005": 7, "numnum:max:POP2005": 2994, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 5141, "numnum:count:POP2010": 7, "numnum:max:POP2010": 3277, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 5157, "numnum:count:POP2015": 7, "numnum:max:POP2015": 3768, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 6119, "numnum:count:POP2020": 7, "numnum:max:POP2020": 4730, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 7512, "numnum:count:POP2025": 7, "numnum:max:POP2025": 5836, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 9126, "numnum:count:POP2050": 7, "numnum:max:POP2050": 7175, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 11024, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 54.404297, 24.447150 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 16, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 850, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 45, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 38.560035, "numnum:min:LATITUDE": 2.066681, "numnum:sum:LATITUDE": 161.17341, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 69.18326, "numnum:min:LONGITUDE": 45.366678, "numnum:sum:LONGITUDE": 354.66702100000006, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 3277000, "numnum:min:POP_MAX": 603492, "numnum:sum:POP_MAX": 7529133, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 3043532, "numnum:min:POP_MIN": 560230, "numnum:sum:POP_MIN": 6323393, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 3475519, "numnum:min:POP_OTHER": 556048, "numnum:sum:POP_OTHER": 7109411, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 69, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 67, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 1221874, "numnum:min:GEONAMEID": 53654, "numnum:sum:GEONAMEID": 3156923, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 3720671, "numnum:min:MAX_POP10": 560230, "numnum:sum:MAX_POP10": 7407376, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 3720671, "numnum:min:MAX_POP20": 560230, "numnum:sum:MAX_POP20": 7418718, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 4803365, "numnum:min:MAX_POP50": 560230, "numnum:sum:MAX_POP50": 8501412, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 4793793, "numnum:min:MAX_POP300": 560230, "numnum:sum:MAX_POP300": 8491840, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 594, "numnum:min:MIN_AREAKM": 96, "numnum:sum:MIN_AREAKM": 1416, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 1471, "numnum:min:MAX_AREAKM": 96, "numnum:sum:MAX_AREAKM": 2313, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 229, "numnum:min:MIN_AREAMI": 37, "numnum:sum:MIN_AREAMI": 546, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 568, "numnum:min:MAX_AREAMI": 37, "numnum:sum:MAX_AREAMI": 892, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 411, "numnum:min:MIN_PERKM": 68, "numnum:sum:MIN_PERKM": 1205, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 1100, "numnum:min:MAX_PERKM": 68, "numnum:sum:MAX_PERKM": 1931, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 255, "numnum:min:MIN_PERMI": 43, "numnum:sum:MIN_PERMI": 749, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 683, "numnum:min:MAX_PERMI": 43, "numnum:sum:MAX_PERMI": 1200, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 68.866667, "numnum:min:MIN_BBXMIN": 45.25, "numnum:sum:MIN_BBXMIN": 353.608334, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 68.866667, "numnum:min:MAX_BBXMIN": 45.25, "numnum:sum:MAX_BBXMIN": 353.694704, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 69.308333, "numnum:min:MIN_BBXMAX": 45.416667, "numnum:sum:MIN_BBXMAX": 355.48333299999998, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 69.783333, "numnum:min:MAX_BBXMAX": 45.416667, "numnum:sum:MAX_BBXMAX": 355.9583329999999, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 38.416667, "numnum:min:MIN_BBYMIN": 2, "numnum:sum:MIN_BBYMIN": 160.66666700000003, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 38.416667, "numnum:min:MAX_BBYMIN": 2, "numnum:sum:MAX_BBYMIN": 160.66666700000003, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 38.675, "numnum:min:MIN_BBYMAX": 2.116667, "numnum:sum:MIN_BBYMAX": 161.74381400000002, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 38.675, "numnum:min:MAX_BBYMAX": 2.116667, "numnum:sum:MAX_BBYMAX": 162.141668, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 69.144173, "numnum:min:MEAN_BBXC": 45.331178, "numnum:sum:MEAN_BBXC": 354.59688600000006, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 38.542754, "numnum:min:MEAN_BBYC": 2.054239, "numnum:sum:MEAN_BBYC": 161.27533, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 13, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 23, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 3043532, "numnum:min:GN_POP": 543107, "numnum:sum:GN_POP": 8302014, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 1808, "numnum:min:GTOPO30": 14, "numnum:sum:GTOPO30": 2957, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 454, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 774, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 34.53, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 36.57, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 69.13, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 114.47, "numnum:count:POP1950": 6, "numnum:max:POP1950": 129, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 198, "numnum:count:POP1955": 6, "numnum:max:POP1955": 184, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 257, "numnum:count:POP1960": 6, "numnum:max:POP1960": 263, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 357, "numnum:count:POP1965": 6, "numnum:max:POP1965": 369, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 515, "numnum:count:POP1970": 6, "numnum:max:POP1970": 472, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 744, "numnum:count:POP1975": 6, "numnum:max:POP1975": 674, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1119, "numnum:count:POP1980": 6, "numnum:max:POP1980": 978, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1529, "numnum:count:POP1985": 6, "numnum:max:POP1985": 1160, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1907, "numnum:count:POP1990": 6, "numnum:max:POP1990": 1306, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2341, "numnum:count:POP1995": 6, "numnum:max:POP1995": 1616, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2763, "numnum:count:POP2000": 6, "numnum:max:POP2000": 1963, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3164, "numnum:count:POP2005": 6, "numnum:max:POP2005": 2994, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4409, "numnum:count:POP2010": 6, "numnum:max:POP2010": 3277, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4377, "numnum:count:POP2015": 6, "numnum:max:POP2015": 3768, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 5268, "numnum:count:POP2020": 6, "numnum:max:POP2020": 4730, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 6524, "numnum:count:POP2025": 6, "numnum:max:POP2025": 5836, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 7978, "numnum:count:POP2050": 6, "numnum:max:POP2050": 7175, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 9704, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 54.404297, 24.447150 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 8, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 14, "numnum:count:NATSCALE": 8, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 2240, "numnum:count:LABELRANK": 8, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 24, "numnum:count:DIFFASCII": 8, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 8, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 8, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 8, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 8, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 8, "numnum:max:LATITUDE": 28.600023, "numnum:min:LATITUDE": 4.166708, "numnum:sum:LATITUDE": 149.370329, "numnum:count:LONGITUDE": 8, "numnum:max:LONGITUDE": 89.639014, "numnum:min:LONGITUDE": 72.856989, "numnum:sum:LONGITUDE": 644.255009, "numnum:count:CHANGED": 8, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 11, "numnum:count:NAMEDIFF": 8, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 2, "numnum:count:POP_MAX": 8, "numnum:max:POP_MAX": 18978000, "numnum:min:POP_MAX": 98676, "numnum:sum:POP_MAX": 42193400, "numnum:count:POP_MIN": 8, "numnum:max:POP_MIN": 12691836, "numnum:min:POP_MIN": 79185, "numnum:sum:POP_MIN": 24039950, "numnum:count:POP_OTHER": 8, "numnum:max:POP_OTHER": 12426085, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 39963204, "numnum:count:RANK_MAX": 8, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 89, "numnum:count:RANK_MIN": 8, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 87, "numnum:count:GEONAMEID": 8, "numnum:max:GEONAMEID": 3465927, "numnum:min:GEONAMEID": 1252416, "numnum:sum:GEONAMEID": 14264926, "numnum:count:LS_MATCH": 8, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 8, "numnum:count:CHECKME": 8, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 8, "numnum:max:MAX_POP10": 12814908, "numnum:min:MAX_POP10": 112927, "numnum:sum:MAX_POP10": 42106318, "numnum:count:MAX_POP20": 8, "numnum:max:MAX_POP20": 20149761, "numnum:min:MAX_POP20": 112927, "numnum:sum:MAX_POP20": 65750393, "numnum:count:MAX_POP50": 8, "numnum:max:MAX_POP50": 48715672, "numnum:min:MAX_POP50": 112927, "numnum:sum:MAX_POP50": 115274640, "numnum:count:MAX_POP300": 8, "numnum:max:MAX_POP300": 87652060, "numnum:min:MAX_POP300": 112927, "numnum:sum:MAX_POP300": 161226305, "numnum:count:MAX_POP310": 8, "numnum:max:MAX_POP310": 224908923, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 245058684, "numnum:count:MAX_NATSCA": 8, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 1200, "numnum:count:MIN_AREAKM": 8, "numnum:max:MIN_AREAKM": 2490, "numnum:min:MIN_AREAKM": 3, "numnum:sum:MIN_AREAKM": 7566, "numnum:count:MAX_AREAKM": 8, "numnum:max:MAX_AREAKM": 186559, "numnum:min:MAX_AREAKM": 3, "numnum:sum:MAX_AREAKM": 251064, "numnum:count:MIN_AREAMI": 8, "numnum:max:MIN_AREAMI": 962, "numnum:min:MIN_AREAMI": 1, "numnum:sum:MIN_AREAMI": 2922, "numnum:count:MAX_AREAMI": 8, "numnum:max:MAX_AREAMI": 72030, "numnum:min:MAX_AREAMI": 1, "numnum:sum:MAX_AREAMI": 96935, "numnum:count:MIN_PERKM": 8, "numnum:max:MIN_PERKM": 1908, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 3543, "numnum:count:MAX_PERKM": 8, "numnum:max:MAX_PERKM": 130296, "numnum:min:MAX_PERKM": 7, "numnum:sum:MAX_PERKM": 175151, "numnum:count:MIN_PERMI": 8, "numnum:max:MIN_PERMI": 1186, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 2203, "numnum:count:MAX_PERMI": 8, "numnum:max:MAX_PERMI": 80962, "numnum:min:MAX_PERMI": 5, "numnum:sum:MAX_PERMI": 108834, "numnum:count:MIN_BBXMIN": 8, "numnum:max:MIN_BBXMIN": 89.591667, "numnum:min:MIN_BBXMIN": 71.033333, "numnum:sum:MIN_BBXMIN": 634.549999, "numnum:count:MAX_BBXMIN": 8, "numnum:max:MAX_BBXMIN": 89.591667, "numnum:min:MAX_BBXMIN": 72.775, "numnum:sum:MAX_BBXMIN": 642.707733, "numnum:count:MIN_BBXMAX": 8, "numnum:max:MIN_BBXMAX": 89.675, "numnum:min:MIN_BBXMAX": 72.983154, "numnum:sum:MIN_BBXMAX": 646.000943, "numnum:count:MAX_BBXMAX": 8, "numnum:max:MAX_BBXMAX": 89.683333, "numnum:min:MAX_BBXMAX": 73.266667, "numnum:sum:MAX_BBXMAX": 653.147093, "numnum:count:MIN_BBYMIN": 8, "numnum:max:MIN_BBYMIN": 27.541667, "numnum:min:MIN_BBYMIN": 4.166667, "numnum:sum:MIN_BBYMIN": 140.11666799999998, "numnum:count:MAX_BBYMIN": 8, "numnum:max:MAX_BBYMIN": 28.152007, "numnum:min:MAX_BBYMIN": 4.166667, "numnum:sum:MAX_BBYMIN": 147.52442599999999, "numnum:count:MIN_BBYMAX": 8, "numnum:max:MIN_BBYMAX": 28.738629, "numnum:min:MIN_BBYMAX": 4.183333, "numnum:sum:MIN_BBYMAX": 151.18078500000002, "numnum:count:MAX_BBYMAX": 8, "numnum:max:MAX_BBYMAX": 33.466667, "numnum:min:MAX_BBYMAX": 4.183333, "numnum:sum:MAX_BBYMAX": 158.94329400000005, "numnum:count:MEAN_BBXC": 8, "numnum:max:MEAN_BBXC": 89.637539, "numnum:min:MEAN_BBXC": 72.959776, "numnum:sum:MEAN_BBXC": 644.4749559999999, "numnum:count:MEAN_BBYC": 8, "numnum:max:MEAN_BBYC": 28.382537, "numnum:min:MEAN_BBYC": 4.175, "numnum:sum:MEAN_BBYC": 149.60341000000003, "numnum:count:COMPARE": 8, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 2, "numnum:count:ADMIN1_COD": 8, "numnum:max:ADMIN1_COD": 28, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 125, "numnum:count:GN_POP": 8, "numnum:max:GN_POP": 12691836, "numnum:min:GN_POP": 2138, "numnum:sum:GN_POP": 24505157, "numnum:count:ELEVATION": 8, "numnum:max:ELEVATION": 2320, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 4557, "numnum:count:GTOPO30": 8, "numnum:max:GTOPO30": 2737, "numnum:min:GTOPO30": 12, "numnum:sum:GTOPO30": 6787, "numnum:count:UN_FID": 8, "numnum:max:UN_FID": 378, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1095, "numnum:count:UN_LAT": 8, "numnum:max:UN_LAT": 27.71, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 82.28999999999999, "numnum:count:UN_LONG": 8, "numnum:max:UN_LONG": 88.33, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 324.03999999999999, "numnum:count:POP1950": 8, "numnum:max:POP1950": 4513, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 8220, "numnum:count:POP1955": 8, "numnum:max:POP1955": 5055, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 9536, "numnum:count:POP1960": 8, "numnum:max:POP1960": 5652, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 10997, "numnum:count:POP1965": 8, "numnum:max:POP1965": 6261, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 12624, "numnum:count:POP1970": 8, "numnum:max:POP1970": 6926, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 14499, "numnum:count:POP1975": 8, "numnum:max:POP1975": 7888, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 17261, "numnum:count:POP1980": 8, "numnum:max:POP1980": 9030, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 20725, "numnum:count:POP1985": 8, "numnum:max:POP1985": 10341, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 23979, "numnum:count:POP1990": 8, "numnum:max:POP1990": 12308, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 27632, "numnum:count:POP1995": 8, "numnum:max:POP1995": 14111, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 31288, "numnum:count:POP2000": 8, "numnum:max:POP2000": 16086, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 35355, "numnum:count:POP2005": 8, "numnum:max:POP2005": 18202, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 39764, "numnum:count:POP2010": 8, "numnum:max:POP2010": 18978, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 41447, "numnum:count:POP2015": 8, "numnum:max:POP2015": 20072, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 43907, "numnum:count:POP2020": 8, "numnum:max:POP2020": 21946, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 48236, "numnum:count:POP2025": 8, "numnum:max:POP2025": 24051, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 53131, "numnum:count:POP2050": 8, "numnum:max:POP2050": 26385, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 58571, "accum": 8, "numnum:count:accum2": 8, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 8, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ 77.167969, 28.613459 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356, "MAX_POP20": 742356, "MAX_POP50": 7482035, "MAX_POP300": 7482969, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 772, "MAX_AREAKM": 5463, "MIN_AREAMI": 298, "MAX_AREAMI": 2109, "MIN_PERKM": 545, "MAX_PERKM": 4154, "MIN_PERMI": 339, "MAX_PERMI": 2581, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 601600, "ELEVATION": 0, "GTOPO30": 497, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36, "POP1955": 41, "POP1960": 45, "POP1965": 56, "POP1970": 70, "POP1975": 107, "POP1980": 189, "POP1985": 260, "POP1990": 343, "POP1995": 452, "POP2000": 594, "POP2005": 732, "POP2010": 780, "POP2015": 851, "POP2020": 988, "POP2025": 1148, "POP2050": 1320, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 520, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 33.699996, "numnum:min:LATITUDE": 27.716692, "numnum:sum:LATITUDE": 90.016711, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 85.316642, "numnum:min:LONGITUDE": 73.166634, "numnum:sum:LONGITUDE": 235.683256, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 895000, "numnum:min:POP_MAX": 317797, "numnum:sum:POP_MAX": 1992797, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 895000, "numnum:min:POP_MIN": 317797, "numnum:sum:POP_MIN": 1814397, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 8060107, "numnum:min:POP_OTHER": 893673, "numnum:sum:POP_OTHER": 10053390, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 11, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 32, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 32, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1283240, "numnum:min:GEONAMEID": 1176615, "numnum:sum:GEONAMEID": 3721336, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 8761047, "numnum:min:MAX_POP10": 742356, "numnum:sum:MAX_POP10": 10657625, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 13414375, "numnum:min:MAX_POP20": 742356, "numnum:sum:MAX_POP20": 16454361, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 32426336, "numnum:min:MAX_POP50": 2297630, "numnum:sum:MAX_POP50": 42206001, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 32424761, "numnum:min:MAX_POP300": 2297630, "numnum:sum:MAX_POP300": 42205360, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 224908923, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 224908923, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 864, "numnum:min:MIN_AREAKM": 233, "numnum:sum:MIN_AREAKM": 1869, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 186559, "numnum:min:MAX_AREAKM": 580, "numnum:sum:MAX_AREAKM": 192602, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 334, "numnum:min:MIN_AREAMI": 90, "numnum:sum:MIN_AREAMI": 722, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 72030, "numnum:min:MAX_AREAMI": 224, "numnum:sum:MAX_AREAMI": 74363, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 545, "numnum:min:MIN_PERKM": 228, "numnum:sum:MIN_PERKM": 1017, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 130296, "numnum:min:MAX_PERKM": 511, "numnum:sum:MAX_PERKM": 134961, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 339, "numnum:min:MIN_PERMI": 142, "numnum:sum:MIN_PERMI": 633, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 80962, "numnum:min:MAX_PERMI": 318, "numnum:sum:MAX_PERMI": 83861, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 85.108333, "numnum:min:MIN_BBXMIN": 71.033333, "numnum:sum:MIN_BBXMIN": 228.42813, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 85.108333, "numnum:min:MAX_BBXMIN": 73.033333, "numnum:sum:MAX_BBXMIN": 235.08495499999999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 85.450066, "numnum:min:MIN_BBXMAX": 73.516667, "numnum:sum:MIN_BBXMAX": 236.39856300000003, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 85.675, "numnum:min:MAX_BBXMAX": 73.816667, "numnum:sum:MAX_BBXMAX": 242.058334, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 32.7, "numnum:min:MIN_BBYMIN": 24, "numnum:sum:MIN_BBYMIN": 84.241667, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 33.258333, "numnum:min:MAX_BBYMIN": 27.669456, "numnum:sum:MAX_BBYMIN": 89.079796, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 33.766667, "numnum:min:MIN_BBYMAX": 27.85, "numnum:sum:MIN_BBYMAX": 90.35529600000001, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 34.533333, "numnum:min:MAX_BBYMAX": 27.85, "numnum:sum:MAX_BBYMAX": 95.85, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 85.356097, "numnum:min:MEAN_BBXC": 73.182617, "numnum:sum:MEAN_BBXC": 235.811659, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 33.557939, "numnum:min:MEAN_BBYC": 27.697735, "numnum:sum:MEAN_BBYC": 89.638211, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 15, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1442271, "numnum:min:GN_POP": 317797, "numnum:sum:GN_POP": 2361668, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 1317, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 1317, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1304, "numnum:min:GTOPO30": 205, "numnum:sum:GTOPO30": 2006, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 401, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 779, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 33.71, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 61.42, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 85.31, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 158.37, "numnum:count:POP1950": 3, "numnum:max:POP1950": 104, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 140, "numnum:count:POP1955": 3, "numnum:max:POP1955": 110, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 151, "numnum:count:POP1960": 3, "numnum:max:POP1960": 119, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 164, "numnum:count:POP1965": 3, "numnum:max:POP1965": 132, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 188, "numnum:count:POP1970": 3, "numnum:max:POP1970": 147, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 217, "numnum:count:POP1975": 3, "numnum:max:POP1975": 180, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 287, "numnum:count:POP1980": 3, "numnum:max:POP1980": 225, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 414, "numnum:count:POP1985": 3, "numnum:max:POP1985": 297, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 557, "numnum:count:POP1990": 3, "numnum:max:POP1990": 398, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 741, "numnum:count:POP1995": 3, "numnum:max:POP1995": 509, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 961, "numnum:count:POP2000": 3, "numnum:max:POP2000": 644, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1238, "numnum:count:POP2005": 3, "numnum:max:POP2005": 815, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1547, "numnum:count:POP2010": 3, "numnum:max:POP2010": 895, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1675, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1029, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1880, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1284, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 2272, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1578, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2726, "numnum:count:POP2050": 3, "numnum:max:POP2050": 1907, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3227, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 73.212891, 33.724340 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 13, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 770, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 21, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 47.916673, "numnum:min:LATITUDE": 6.900004, "numnum:sum:LATITUDE": 128.976294, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 106.916616, "numnum:min:LONGITUDE": 79.949993, "numnum:sum:LONGITUDE": 477.46382600000006, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 18, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 12797394, "numnum:min:POP_MAX": 115826, "numnum:sum:POP_MAX": 18851220, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 7000940, "numnum:min:POP_MIN": 115826, "numnum:sum:POP_MIN": 12031639, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 14995538, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 29840118, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 57, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 54, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 6611854, "numnum:min:GEONAMEID": 1185241, "numnum:sum:GEONAMEID": 12879835, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 14548962, "numnum:min:MAX_POP10": 194824, "numnum:sum:MAX_POP10": 27657591, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 21394172, "numnum:min:MAX_POP20": 194824, "numnum:sum:MAX_POP20": 37157466, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 53845691, "numnum:min:MAX_POP50": 194824, "numnum:sum:MAX_POP50": 83874139, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 78549234, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 79513670, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 5912, "numnum:min:MIN_AREAKM": 89, "numnum:sum:MIN_AREAKM": 10937, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 49912, "numnum:min:MAX_AREAKM": 89, "numnum:sum:MAX_AREAKM": 77231, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 2283, "numnum:min:MIN_AREAMI": 34, "numnum:sum:MIN_AREAMI": 4222, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 19271, "numnum:min:MAX_AREAMI": 34, "numnum:sum:MAX_AREAMI": 29819, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 2296, "numnum:min:MIN_PERKM": 144, "numnum:sum:MIN_PERKM": 5176, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 19314, "numnum:min:MAX_PERKM": 144, "numnum:sum:MAX_PERKM": 33895, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 1427, "numnum:min:MIN_PERMI": 89, "numnum:sum:MIN_PERMI": 3216, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 12001, "numnum:min:MAX_PERMI": 89, "numnum:sum:MAX_PERMI": 21061, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 106.725, "numnum:min:MIN_BBXMIN": 79.866667, "numnum:sum:MIN_BBXMIN": 473.992125, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 106.725, "numnum:min:MAX_BBXMIN": 79.883827, "numnum:sum:MAX_BBXMIN": 476.033827, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 107.041667, "numnum:min:MIN_BBXMAX": 80.366283, "numnum:sum:MIN_BBXMAX": 478.93306000000009, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 107.041667, "numnum:min:MAX_BBXMAX": 80.733333, "numnum:sum:MAX_BBXMAX": 482.33333300000006, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 47.883333, "numnum:min:MIN_BBYMIN": 5.916667, "numnum:sum:MIN_BBYMIN": 125.03043399999999, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 47.883333, "numnum:min:MAX_BBYMIN": 6.708333, "numnum:sum:MAX_BBYMIN": 127.773391, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 48.016667, "numnum:min:MIN_BBYMAX": 7.34579, "numnum:sum:MIN_BBYMAX": 130.47653, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 48.016667, "numnum:min:MAX_BBYMAX": 7.34579, "numnum:sum:MAX_BBYMAX": 132.07079, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 106.883013, "numnum:min:MEAN_BBXC": 80.0976, "numnum:sum:MEAN_BBXC": 477.626367, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 47.932237, "numnum:min:MEAN_BBYC": 6.842005, "numnum:sum:MEAN_BBYC": 129.086398, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 81, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 177, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 10356500, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 15267581, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 1299, "numnum:min:GTOPO30": 4, "numnum:sum:GTOPO30": 1975, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 369, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 769, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 47.92, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 122.04, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 106.91, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 397.48, "numnum:count:POP1950": 5, "numnum:max:POP1950": 768, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1174, "numnum:count:POP1955": 5, "numnum:max:POP1955": 922, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1443, "numnum:count:POP1960": 5, "numnum:max:POP1960": 1106, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1793, "numnum:count:POP1965": 5, "numnum:max:POP1965": 1327, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2396, "numnum:count:POP1970": 5, "numnum:max:POP1970": 1592, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3264, "numnum:count:POP1975": 5, "numnum:max:POP1975": 2221, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4488, "numnum:count:POP1980": 5, "numnum:max:POP1980": 3266, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5982, "numnum:count:POP1985": 5, "numnum:max:POP1985": 4660, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 7791, "numnum:count:POP1990": 5, "numnum:max:POP1990": 6621, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 10148, "numnum:count:POP1995": 5, "numnum:max:POP1995": 8332, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 12396, "numnum:count:POP2000": 5, "numnum:max:POP2000": 10285, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 14967, "numnum:count:POP2005": 5, "numnum:max:POP2005": 12576, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 17554, "numnum:count:POP2010": 5, "numnum:max:POP2010": 13485, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 19423, "numnum:count:POP2015": 5, "numnum:max:POP2015": 14796, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 21005, "numnum:count:POP2020": 5, "numnum:max:POP2020": 17015, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 23804, "numnum:count:POP2025": 5, "numnum:max:POP2025": 19422, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 26801, "numnum:count:POP2050": 5, "numnum:max:POP2050": 22015, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 29908, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1830, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 17, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 27.472986, "numnum:min:LATITUDE": 4.166708, "numnum:sum:LATITUDE": 93.05361400000001, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 89.639014, "numnum:min:LONGITUDE": 72.856989, "numnum:sum:LONGITUDE": 481.738387, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 11, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 2, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 18978000, "numnum:min:POP_MAX": 98676, "numnum:sum:POP_MAX": 40980603, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 12691836, "numnum:min:POP_MIN": 79185, "numnum:sum:POP_MIN": 22827153, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 12426085, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 30803487, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 68, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 66, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 3465927, "numnum:min:GEONAMEID": 1252416, "numnum:sum:GEONAMEID": 11720205, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 12814908, "numnum:min:MAX_POP10": 112927, "numnum:sum:MAX_POP10": 32191049, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 20149761, "numnum:min:MAX_POP20": 112927, "numnum:sum:MAX_POP20": 50038388, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 48715672, "numnum:min:MAX_POP50": 112927, "numnum:sum:MAX_POP50": 80550674, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 87652060, "numnum:min:MAX_POP300": 112927, "numnum:sum:MAX_POP300": 126503914, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 20149761, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 20149761, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 800, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 2490, "numnum:min:MIN_AREAKM": 3, "numnum:sum:MIN_AREAKM": 6469, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 53331, "numnum:min:MAX_AREAKM": 3, "numnum:sum:MAX_AREAKM": 63925, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 962, "numnum:min:MIN_AREAMI": 1, "numnum:sum:MIN_AREAMI": 2498, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 20591, "numnum:min:MAX_AREAMI": 1, "numnum:sum:MAX_AREAMI": 24681, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 1908, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 3071, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 35493, "numnum:min:MAX_PERKM": 7, "numnum:sum:MAX_PERKM": 44344, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 1186, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 1909, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 22054, "numnum:min:MAX_PERMI": 5, "numnum:sum:MAX_PERMI": 27554, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 89.591667, "numnum:min:MIN_BBXMIN": 72.758333, "numnum:sum:MIN_BBXMIN": 478.408333, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 89.591667, "numnum:min:MAX_BBXMIN": 72.775, "numnum:sum:MAX_BBXMIN": 480.656111, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 89.675, "numnum:min:MIN_BBXMAX": 72.983154, "numnum:sum:MIN_BBXMAX": 483.11904699999999, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 89.683333, "numnum:min:MAX_BBXMAX": 73.266667, "numnum:sum:MAX_BBXMAX": 484.905426, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 27.408333, "numnum:min:MIN_BBYMIN": 4.166667, "numnum:sum:MIN_BBYMIN": 88.57500100000002, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 27.408333, "numnum:min:MAX_BBYMIN": 4.166667, "numnum:sum:MAX_BBYMIN": 91.70296300000001, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 27.558333, "numnum:min:MIN_BBYMAX": 4.183333, "numnum:sum:MIN_BBYMAX": 94.59215600000002, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 27.558333, "numnum:min:MAX_BBYMAX": 4.183333, "numnum:sum:MAX_BBYMAX": 97.626627, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 89.637539, "numnum:min:MEAN_BBXC": 72.959776, "numnum:sum:MEAN_BBXC": 481.845914, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 27.477943, "numnum:min:MEAN_BBYC": 4.175, "numnum:sum:MEAN_BBYC": 93.523138, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 2, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 28, "numnum:min:ADMIN1_COD": 16, "numnum:sum:ADMIN1_COD": 118, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 12691836, "numnum:min:GN_POP": 2138, "numnum:sum:GN_POP": 22745089, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 2320, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 3240, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 2737, "numnum:min:GTOPO30": 12, "numnum:sum:GTOPO30": 5278, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 253, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 717, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 22.54, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 54.58, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 88.33, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 238.72999999999997, "numnum:count:POP1950": 6, "numnum:max:POP1950": 4513, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 8116, "numnum:count:POP1955": 6, "numnum:max:POP1955": 5055, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 9426, "numnum:count:POP1960": 6, "numnum:max:POP1960": 5652, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 10878, "numnum:count:POP1965": 6, "numnum:max:POP1965": 6261, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 12492, "numnum:count:POP1970": 6, "numnum:max:POP1970": 6926, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 14352, "numnum:count:POP1975": 6, "numnum:max:POP1975": 7888, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 17081, "numnum:count:POP1980": 6, "numnum:max:POP1980": 9030, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 20500, "numnum:count:POP1985": 6, "numnum:max:POP1985": 10341, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 23682, "numnum:count:POP1990": 6, "numnum:max:POP1990": 12308, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 27234, "numnum:count:POP1995": 6, "numnum:max:POP1995": 14111, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 30779, "numnum:count:POP2000": 6, "numnum:max:POP2000": 16086, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 34711, "numnum:count:POP2005": 6, "numnum:max:POP2005": 18202, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 38949, "numnum:count:POP2010": 6, "numnum:max:POP2010": 18978, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 40552, "numnum:count:POP2015": 6, "numnum:max:POP2015": 20072, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 42878, "numnum:count:POP2020": 6, "numnum:max:POP2020": 21946, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 46952, "numnum:count:POP2025": 6, "numnum:max:POP2025": 24051, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 51553, "numnum:count:POP2050": 6, "numnum:max:POP2050": 26385, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 56664, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.449790 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "Former capital", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820, "MAX_POP20": 3301820, "MAX_POP50": 3301820, "MAX_POP300": 3301820, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 199, "MAX_PERKM": 199, "MIN_PERMI": 123, "MAX_PERMI": 123, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 4477638, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302, "POP1955": 1440, "POP1960": 1592, "POP1965": 1760, "POP1970": 1946, "POP1975": 2151, "POP1980": 2378, "POP1985": 2629, "POP1990": 2907, "POP1995": 3213, "POP2000": 3553, "POP2005": 3928, "POP2010": 4088, "POP2015": 4348, "POP2020": 4841, "POP2025": 5361, "POP2050": 5869, "CITYALT": "Rangoon", "accum2": 1, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 11, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 920, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 31, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 21.033327, "numnum:min:LATITUDE": 11.55003, "numnum:sum:LATITUDE": 81.083403, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 105.850014, "numnum:min:LONGITUDE": 96.166678, "numnum:sum:LONGITUDE": 510.04995099999999, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 6704000, "numnum:min:POP_MAX": 754000, "numnum:sum:POP_MAX": 17390000, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 5104476, "numnum:min:POP_MIN": 570348, "numnum:sum:POP_MIN": 11873914, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 5466347, "numnum:min:POP_OTHER": 469811, "numnum:sum:POP_OTHER": 15747092, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 60, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 60, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 1821306, "numnum:min:GEONAMEID": 1298824, "numnum:sum:GEONAMEID": 7962554, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 5620806, "numnum:min:MAX_POP10": 471927, "numnum:sum:MAX_POP10": 16270130, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 8823534, "numnum:min:MAX_POP20": 471927, "numnum:sum:MAX_POP20": 21495485, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 16406759, "numnum:min:MAX_POP50": 570348, "numnum:sum:MAX_POP50": 31041843, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 23700631, "numnum:min:MAX_POP300": 570348, "numnum:sum:MAX_POP300": 38331022, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 9206246, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9206246, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 2512, "numnum:min:MIN_AREAKM": 166, "numnum:sum:MIN_AREAKM": 4302, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 14049, "numnum:min:MAX_AREAKM": 243, "numnum:sum:MAX_AREAKM": 17451, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 970, "numnum:min:MIN_AREAMI": 64, "numnum:sum:MIN_AREAMI": 1661, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 5424, "numnum:min:MAX_AREAMI": 94, "numnum:sum:MAX_AREAMI": 6738, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 1175, "numnum:min:MIN_PERKM": 170, "numnum:sum:MIN_PERKM": 2527, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 10267, "numnum:min:MAX_PERKM": 199, "numnum:sum:MAX_PERKM": 12806, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 730, "numnum:min:MIN_PERMI": 106, "numnum:sum:MIN_PERMI": 1570, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 6380, "numnum:min:MAX_PERMI": 123, "numnum:sum:MAX_PERMI": 7957, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 104.975, "numnum:min:MIN_BBXMIN": 96.025, "numnum:sum:MIN_BBXMIN": 507.925001, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 105.616287, "numnum:min:MAX_BBXMIN": 96.025, "numnum:sum:MAX_BBXMIN": 508.791288, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 106.2294, "numnum:min:MIN_BBXMAX": 96.266667, "numnum:sum:MIN_BBXMAX": 511.06536, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 106.808333, "numnum:min:MAX_BBXMAX": 96.266667, "numnum:sum:MAX_BBXMAX": 511.908334, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 19.283333, "numnum:min:MIN_BBYMIN": 11.291667, "numnum:sum:MIN_BBYMIN": 78.591667, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 20.620237, "numnum:min:MAX_BBYMIN": 11.291667, "numnum:sum:MAX_BBYMIN": 80.020238, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 21.319209, "numnum:min:MIN_BBYMAX": 11.691667, "numnum:sum:MIN_BBYMAX": 81.99150399999999, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 21.783333, "numnum:min:MAX_BBYMAX": 11.691667, "numnum:sum:MAX_BBYMAX": 82.741666, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 105.892881, "numnum:min:MEAN_BBXC": 96.144646, "numnum:sum:MEAN_BBXC": 510.016398, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 20.873406, "numnum:min:MEAN_BBYC": 11.488418, "numnum:sum:MEAN_BBYC": 80.948605, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 44, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 128, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 5104476, "numnum:min:GN_POP": 196731, "numnum:sum:GN_POP": 12783659, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 174, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 231, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 496, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 955, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 21.03, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 63.21000000000001, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 105.82, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 407.36, "numnum:count:POP1950": 5, "numnum:max:POP1950": 1360, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 3306, "numnum:count:POP1955": 5, "numnum:max:POP1955": 1712, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3953, "numnum:count:POP1960": 5, "numnum:max:POP1960": 2151, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 4776, "numnum:count:POP1965": 5, "numnum:max:POP1965": 2584, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 5697, "numnum:count:POP1970": 5, "numnum:max:POP1970": 3110, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 7263, "numnum:count:POP1975": 5, "numnum:max:POP1975": 3842, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 7977, "numnum:count:POP1980": 5, "numnum:max:POP1980": 4723, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 9945, "numnum:count:POP1985": 5, "numnum:max:POP1985": 5279, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 11189, "numnum:count:POP1990": 5, "numnum:max:POP1990": 5888, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 12536, "numnum:count:POP1995": 5, "numnum:max:POP1995": 6106, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 13579, "numnum:count:POP2000": 5, "numnum:max:POP2000": 6332, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 14797, "numnum:count:POP2005": 5, "numnum:max:POP2005": 6582, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 16043, "numnum:count:POP2010": 5, "numnum:max:POP2010": 6704, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 16636, "numnum:count:POP2015": 5, "numnum:max:POP2015": 6918, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 17640, "numnum:count:POP2020": 5, "numnum:max:POP2020": 7332, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 19558, "numnum:count:POP2025": 5, "numnum:max:POP2025": 7807, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 21661, "numnum:count:POP2050": 5, "numnum:max:POP2050": 8332, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 23866, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 16.804541 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 660, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 47.916673, "numnum:min:LATITUDE": 6.900004, "numnum:sum:LATITUDE": 109.209737, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 106.916616, "numnum:min:LONGITUDE": 79.949993, "numnum:sum:LONGITUDE": 381.345207, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 14, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 12797394, "numnum:min:POP_MAX": 115826, "numnum:sum:POP_MAX": 17921220, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 7000940, "numnum:min:POP_MIN": 115826, "numnum:sum:POP_MIN": 11836815, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 14995538, "numnum:min:POP_OTHER": 765359, "numnum:sum:POP_OTHER": 29840118, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 46, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 45, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 2028462, "numnum:min:GEONAMEID": 1185241, "numnum:sum:GEONAMEID": 6267981, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 14548962, "numnum:min:MAX_POP10": 769612, "numnum:sum:MAX_POP10": 27462767, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 21394172, "numnum:min:MAX_POP20": 769612, "numnum:sum:MAX_POP20": 36962642, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 53845691, "numnum:min:MAX_POP50": 769612, "numnum:sum:MAX_POP50": 83679315, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 78549234, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 79318846, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 5912, "numnum:min:MIN_AREAKM": 143, "numnum:sum:MIN_AREAKM": 10848, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 49912, "numnum:min:MAX_AREAKM": 143, "numnum:sum:MAX_AREAKM": 77142, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 2283, "numnum:min:MIN_AREAMI": 55, "numnum:sum:MIN_AREAMI": 4188, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 19271, "numnum:min:MAX_AREAMI": 55, "numnum:sum:MAX_AREAMI": 29785, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 2296, "numnum:min:MIN_PERKM": 144, "numnum:sum:MIN_PERKM": 5027, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 19314, "numnum:min:MAX_PERKM": 144, "numnum:sum:MAX_PERKM": 33746, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 1427, "numnum:min:MIN_PERMI": 89, "numnum:sum:MIN_PERMI": 3123, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 12001, "numnum:min:MAX_PERMI": 89, "numnum:sum:MAX_PERMI": 20968, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 106.725, "numnum:min:MIN_BBXMIN": 79.866667, "numnum:sum:MIN_BBXMIN": 377.850458, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 106.725, "numnum:min:MAX_BBXMIN": 79.883827, "numnum:sum:MAX_BBXMIN": 379.89216, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 107.041667, "numnum:min:MIN_BBXMAX": 80.366283, "numnum:sum:MIN_BBXMAX": 382.65806000000006, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 107.041667, "numnum:min:MAX_BBXMAX": 80.733333, "numnum:sum:MAX_BBXMAX": 386.058333, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 47.883333, "numnum:min:MIN_BBYMIN": 5.916667, "numnum:sum:MIN_BBYMIN": 105.39710099999999, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 47.883333, "numnum:min:MAX_BBYMIN": 6.708333, "numnum:sum:MAX_BBYMIN": 108.140058, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 48.016667, "numnum:min:MIN_BBYMAX": 7.34579, "numnum:sum:MIN_BBYMAX": 110.693197, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 48.016667, "numnum:min:MAX_BBYMAX": 7.34579, "numnum:sum:MAX_BBYMAX": 112.287457, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 106.883013, "numnum:min:MEAN_BBXC": 80.0976, "numnum:sum:MEAN_BBXC": 381.42053400000006, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 47.932237, "numnum:min:MEAN_BBYC": 6.842005, "numnum:sum:MEAN_BBYC": 109.365792, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 81, "numnum:min:ADMIN1_COD": 20, "numnum:sum:ADMIN1_COD": 169, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 10356500, "numnum:min:GN_POP": 115826, "numnum:sum:GN_POP": 15267581, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 1299, "numnum:min:GTOPO30": 4, "numnum:sum:GTOPO30": 1867, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 369, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 767, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 47.92, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 102.29, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 106.91, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 301.38, "numnum:count:POP1950": 4, "numnum:max:POP1950": 768, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1174, "numnum:count:POP1955": 4, "numnum:max:POP1955": 922, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1443, "numnum:count:POP1960": 4, "numnum:max:POP1960": 1106, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1793, "numnum:count:POP1965": 4, "numnum:max:POP1965": 1327, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2396, "numnum:count:POP1970": 4, "numnum:max:POP1970": 1592, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3264, "numnum:count:POP1975": 4, "numnum:max:POP1975": 2221, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4488, "numnum:count:POP1980": 4, "numnum:max:POP1980": 3266, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5982, "numnum:count:POP1985": 4, "numnum:max:POP1985": 4660, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 7791, "numnum:count:POP1990": 4, "numnum:max:POP1990": 6621, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 10148, "numnum:count:POP1995": 4, "numnum:max:POP1995": 8332, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 12396, "numnum:count:POP2000": 4, "numnum:max:POP2000": 10285, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 14967, "numnum:count:POP2005": 4, "numnum:max:POP2005": 12576, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 17497, "numnum:count:POP2010": 4, "numnum:max:POP2010": 13485, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 18493, "numnum:count:POP2015": 4, "numnum:max:POP2015": 14796, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 19981, "numnum:count:POP2020": 4, "numnum:max:POP2020": 17015, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 22627, "numnum:count:POP2025": 4, "numnum:max:POP2025": 19422, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 25480, "numnum:count:POP2050": 4, "numnum:max:POP2050": 22015, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 28447, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 250, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 12, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 3.166666, "numnum:min:LATITUDE": 2.91402, "numnum:sum:LATITUDE": 6.080686, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 101.701947, "numnum:min:LONGITUDE": 101.699983, "numnum:sum:LONGITUDE": 203.40193, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1448000, "numnum:min:POP_MAX": 67964, "numnum:sum:POP_MAX": 1515964, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1448000, "numnum:min:POP_MIN": 50000, "numnum:sum:POP_MIN": 1498000, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2667990, "numnum:min:POP_OTHER": 956431, "numnum:sum:POP_OTHER": 3624421, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 20, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 6697380, "numnum:min:GEONAMEID": 1735161, "numnum:sum:GEONAMEID": 8432541, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2750755, "numnum:min:MAX_POP10": 955607, "numnum:sum:MAX_POP10": 3706362, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2750755, "numnum:min:MAX_POP20": 964830, "numnum:sum:MAX_POP20": 3715585, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3468789, "numnum:min:MAX_POP50": 1651113, "numnum:sum:MAX_POP50": 5119902, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 4983714, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 4983714, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 4983714, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 4983714, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 666, "numnum:min:MIN_AREAKM": 486, "numnum:sum:MIN_AREAKM": 1152, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1700, "numnum:min:MAX_AREAKM": 805, "numnum:sum:MAX_AREAKM": 2505, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 257, "numnum:min:MIN_AREAMI": 188, "numnum:sum:MIN_AREAMI": 445, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 657, "numnum:min:MAX_AREAMI": 311, "numnum:sum:MAX_AREAMI": 968, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 467, "numnum:min:MIN_PERKM": 350, "numnum:sum:MIN_PERKM": 817, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1111, "numnum:min:MAX_PERKM": 737, "numnum:sum:MAX_PERKM": 1848, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 290, "numnum:min:MIN_PERMI": 217, "numnum:sum:MIN_PERMI": 507, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 690, "numnum:min:MAX_PERMI": 458, "numnum:sum:MAX_PERMI": 1148, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 101.358333, "numnum:min:MIN_BBXMIN": 101.358333, "numnum:sum:MIN_BBXMIN": 202.716666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 101.575, "numnum:min:MAX_BBXMIN": 101.491667, "numnum:sum:MAX_BBXMIN": 203.066667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 101.891667, "numnum:min:MIN_BBXMAX": 101.841667, "numnum:sum:MIN_BBXMAX": 203.733334, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 101.891667, "numnum:min:MAX_BBXMAX": 101.891667, "numnum:sum:MAX_BBXMAX": 203.783334, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 2.7, "numnum:min:MIN_BBYMIN": 2.7, "numnum:sum:MIN_BBYMIN": 5.4, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 3.040173, "numnum:min:MAX_BBYMIN": 2.708333, "numnum:sum:MAX_BBYMIN": 5.748506, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 3.475, "numnum:min:MIN_BBYMAX": 3.041194, "numnum:sum:MIN_BBYMAX": 6.5161940000000009, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 3.475, "numnum:min:MAX_BBYMAX": 3.041194, "numnum:sum:MAX_BBYMAX": 6.5161940000000009, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 101.716617, "numnum:min:MEAN_BBXC": 101.644598, "numnum:sum:MEAN_BBXC": 203.36121500000002, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 3.131431, "numnum:min:MEAN_BBYC": 2.915909, "numnum:sum:MEAN_BBYC": 6.04734, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 17, "numnum:min:ADMIN1_COD": 14, "numnum:sum:ADMIN1_COD": 31, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1453975, "numnum:min:GN_POP": 50000, "numnum:sum:GN_POP": 1503975, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 62, "numnum:min:GTOPO30": 30, "numnum:sum:GTOPO30": 92, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 348, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 348, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 3.14, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 3.14, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 101.7, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 101.7, "numnum:count:POP1950": 2, "numnum:max:POP1950": 208, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 208, "numnum:count:POP1955": 2, "numnum:max:POP1955": 281, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 281, "numnum:count:POP1960": 2, "numnum:max:POP1960": 344, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 344, "numnum:count:POP1965": 2, "numnum:max:POP1965": 394, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 394, "numnum:count:POP1970": 2, "numnum:max:POP1970": 451, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 451, "numnum:count:POP1975": 2, "numnum:max:POP1975": 645, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 645, "numnum:count:POP1980": 2, "numnum:max:POP1980": 921, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 921, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1016, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1016, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1120, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1120, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1213, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1213, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1306, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1306, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1405, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1405, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1448, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1448, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1519, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1519, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1670, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1670, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1820, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1820, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1938, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1938, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 14, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1030, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 36, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 21.033327, "numnum:min:LATITUDE": 11.55003, "numnum:sum:LATITUDE": 100.84996000000001, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 105.850014, "numnum:min:LONGITUDE": 96.118619, "numnum:sum:LONGITUDE": 606.16857, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 14, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 6704000, "numnum:min:POP_MAX": 754000, "numnum:sum:POP_MAX": 18320000, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 5104476, "numnum:min:POP_MIN": 194824, "numnum:sum:POP_MIN": 12068738, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 5466347, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 15747092, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 71, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 69, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 6611854, "numnum:min:GEONAMEID": 1298824, "numnum:sum:GEONAMEID": 14574408, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 5620806, "numnum:min:MAX_POP10": 194824, "numnum:sum:MAX_POP10": 16464954, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 8823534, "numnum:min:MAX_POP20": 194824, "numnum:sum:MAX_POP20": 21690309, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 16406759, "numnum:min:MAX_POP50": 194824, "numnum:sum:MAX_POP50": 31236667, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 23700631, "numnum:min:MAX_POP300": 194824, "numnum:sum:MAX_POP300": 38525846, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 9206246, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9206246, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 800, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 2512, "numnum:min:MIN_AREAKM": 89, "numnum:sum:MIN_AREAKM": 4391, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 14049, "numnum:min:MAX_AREAKM": 89, "numnum:sum:MAX_AREAKM": 17540, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 970, "numnum:min:MIN_AREAMI": 34, "numnum:sum:MIN_AREAMI": 1695, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 5424, "numnum:min:MAX_AREAMI": 34, "numnum:sum:MAX_AREAMI": 6772, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 1175, "numnum:min:MIN_PERKM": 149, "numnum:sum:MIN_PERKM": 2676, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 10267, "numnum:min:MAX_PERKM": 149, "numnum:sum:MAX_PERKM": 12955, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 730, "numnum:min:MIN_PERMI": 93, "numnum:sum:MIN_PERMI": 1663, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 6380, "numnum:min:MAX_PERMI": 93, "numnum:sum:MAX_PERMI": 8050, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 104.975, "numnum:min:MIN_BBXMIN": 96.025, "numnum:sum:MIN_BBXMIN": 604.0666679999999, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 105.616287, "numnum:min:MAX_BBXMIN": 96.025, "numnum:sum:MAX_BBXMIN": 604.932955, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 106.2294, "numnum:min:MIN_BBXMAX": 96.266667, "numnum:sum:MIN_BBXMAX": 607.3403599999999, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 106.808333, "numnum:min:MAX_BBXMAX": 96.266667, "numnum:sum:MAX_BBXMAX": 608.1833340000001, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 19.633333, "numnum:min:MIN_BBYMIN": 11.291667, "numnum:sum:MIN_BBYMIN": 98.22500000000001, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 20.620237, "numnum:min:MAX_BBYMIN": 11.291667, "numnum:sum:MAX_BBYMIN": 99.65357100000002, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 21.319209, "numnum:min:MIN_BBYMAX": 11.691667, "numnum:sum:MIN_BBYMAX": 101.77483699999999, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 21.783333, "numnum:min:MAX_BBYMAX": 11.691667, "numnum:sum:MAX_BBYMAX": 102.524999, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 105.892881, "numnum:min:MEAN_BBXC": 96.144646, "numnum:sum:MEAN_BBXC": 606.222231, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 20.873406, "numnum:min:MEAN_BBYC": 11.488418, "numnum:sum:MEAN_BBYC": 100.669211, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 44, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 136, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 5104476, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 12783659, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 174, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 339, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 496, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 957, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 21.03, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 82.96000000000001, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 105.82, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 503.46000000000006, "numnum:count:POP1950": 6, "numnum:max:POP1950": 1360, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 3306, "numnum:count:POP1955": 6, "numnum:max:POP1955": 1712, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3953, "numnum:count:POP1960": 6, "numnum:max:POP1960": 2151, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 4776, "numnum:count:POP1965": 6, "numnum:max:POP1965": 2584, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 5697, "numnum:count:POP1970": 6, "numnum:max:POP1970": 3110, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 7263, "numnum:count:POP1975": 6, "numnum:max:POP1975": 3842, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 7977, "numnum:count:POP1980": 6, "numnum:max:POP1980": 4723, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 9945, "numnum:count:POP1985": 6, "numnum:max:POP1985": 5279, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 11189, "numnum:count:POP1990": 6, "numnum:max:POP1990": 5888, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 12536, "numnum:count:POP1995": 6, "numnum:max:POP1995": 6106, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 13579, "numnum:count:POP2000": 6, "numnum:max:POP2000": 6332, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 14797, "numnum:count:POP2005": 6, "numnum:max:POP2005": 6582, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 16100, "numnum:count:POP2010": 6, "numnum:max:POP2010": 6704, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 17566, "numnum:count:POP2015": 6, "numnum:max:POP2015": 6918, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 18664, "numnum:count:POP2020": 6, "numnum:max:POP2020": 7332, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 20735, "numnum:count:POP2025": 6, "numnum:max:POP2025": 7807, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 22982, "numnum:count:POP2050": 6, "numnum:max:POP2050": 8332, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 25327, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 19.725342 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104, "accum2": 1, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 1, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 2700, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 10, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 5, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 39.928892, "numnum:min:LATITUDE": 1.293033, "numnum:sum:LATITUDE": 119.779191, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 121.568333, "numnum:min:LONGITUDE": 103.855821, "numnum:sum:LONGITUDE": 577.433954, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 1, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 1, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 14987000, "numnum:min:POP_MAX": 5183700, "numnum:sum:POP_MAX": 45382973, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 14608512, "numnum:min:POP_MIN": 2618772, "numnum:sum:POP_MIN": 32548993, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 16803572, "numnum:min:POP_OTHER": 3314179, "numnum:sum:POP_OTHER": 39398249, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 13, "numnum:sum:RANK_MAX": 67, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 63, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 1880252, "numnum:min:GEONAMEID": 1668341, "numnum:sum:GEONAMEID": 8981228, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 16172884, "numnum:min:MAX_POP10": 3289529, "numnum:sum:MAX_POP10": 40125595, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 16172884, "numnum:min:MAX_POP20": 4207001, "numnum:sum:MAX_POP20": 55555630, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 26630672, "numnum:min:MAX_POP50": 4207001, "numnum:sum:MAX_POP50": 72714212, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 26631586, "numnum:min:MAX_POP300": 4207001, "numnum:sum:MAX_POP300": 80417205, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 137121250, "numnum:min:MAX_POP310": 4207001, "numnum:sum:MAX_POP310": 233711994, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 300, "numnum:sum:MAX_NATSCA": 1500, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 3792, "numnum:min:MIN_AREAKM": 202, "numnum:sum:MIN_AREAKM": 7347, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 118844, "numnum:min:MAX_AREAKM": 456, "numnum:sum:MAX_AREAKM": 148069, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 1464, "numnum:min:MIN_AREAMI": 78, "numnum:sum:MIN_AREAMI": 2837, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 45886, "numnum:min:MAX_AREAMI": 176, "numnum:sum:MAX_AREAMI": 57170, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 2219, "numnum:min:MIN_PERKM": 173, "numnum:sum:MIN_PERKM": 4736, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 93615, "numnum:min:MAX_PERKM": 288, "numnum:sum:MAX_PERKM": 114825, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 1379, "numnum:min:MIN_PERMI": 108, "numnum:sum:MIN_PERMI": 2943, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 58169, "numnum:min:MAX_PERMI": 179, "numnum:sum:MAX_PERMI": 71348, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 120.741667, "numnum:min:MIN_BBXMIN": 103.633333, "numnum:sum:MIN_BBXMIN": 567.366667, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 121.325, "numnum:min:MAX_BBXMIN": 103.658333, "numnum:sum:MAX_BBXMIN": 576.038756, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 121.9, "numnum:min:MIN_BBXMAX": 104, "numnum:sum:MIN_BBXMAX": 579.030817, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 121.9, "numnum:min:MAX_BBXMAX": 104, "numnum:sum:MAX_BBXMAX": 579.816667, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 31.883333, "numnum:min:MIN_BBYMIN": 1.25, "numnum:sum:MIN_BBYMIN": 109.716667, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 39.658333, "numnum:min:MAX_BBYMIN": 1.25, "numnum:sum:MAX_BBYMIN": 118.70833300000001, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 40.433333, "numnum:min:MIN_BBYMAX": 1.425, "numnum:sum:MIN_BBYMAX": 121.141666, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 40.466667, "numnum:min:MAX_BBYMAX": 1.475, "numnum:sum:MAX_BBYMAX": 123.516666, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 121.292375, "numnum:min:MEAN_BBXC": 103.821508, "numnum:sum:MEAN_BBXC": 576.1325, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 38.837783, "numnum:min:MEAN_BBYC": 1.352586, "numnum:sum:MEAN_BBYC": 119.08837899999999, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 23, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 48, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 14608512, "numnum:min:GN_POP": 3547809, "numnum:sum:GN_POP": 40521560, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 63, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9919, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 450, "numnum:min:UN_FID": 24, "numnum:sum:UN_FID": 893, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 39.9, "numnum:min:UN_LAT": 1.26, "numnum:sum:UN_LAT": 119.69999999999999, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 121.5, "numnum:min:UN_LONG": 103.83, "numnum:sum:UN_LONG": 577.35, "numnum:count:POP1950": 5, "numnum:max:POP1950": 6066, "numnum:min:POP1950": 604, "numnum:sum:POP1950": 13699, "numnum:count:POP1955": 5, "numnum:max:POP1955": 6299, "numnum:min:POP1955": 760, "numnum:sum:POP1955": 15114, "numnum:count:POP1960": 5, "numnum:max:POP1960": 6542, "numnum:min:POP1960": 955, "numnum:sum:POP1960": 16696, "numnum:count:POP1965": 5, "numnum:max:POP1965": 6793, "numnum:min:POP1965": 1230, "numnum:sum:POP1965": 18378, "numnum:count:POP1970": 5, "numnum:max:POP1970": 7055, "numnum:min:POP1970": 1741, "numnum:sum:POP1970": 19975, "numnum:count:POP1975": 5, "numnum:max:POP1975": 7326, "numnum:min:POP1975": 2023, "numnum:sum:POP1975": 21589, "numnum:count:POP1980": 5, "numnum:max:POP1980": 7608, "numnum:min:POP1980": 2217, "numnum:sum:POP1980": 23297, "numnum:count:POP1985": 5, "numnum:max:POP1985": 7901, "numnum:min:POP1985": 2446, "numnum:sum:POP1985": 25016, "numnum:count:POP1990": 5, "numnum:max:POP1990": 8205, "numnum:min:POP1990": 2711, "numnum:sum:POP1990": 26971, "numnum:count:POP1995": 5, "numnum:max:POP1995": 10423, "numnum:min:POP1995": 2676, "numnum:sum:POP1995": 31269, "numnum:count:POP2000": 5, "numnum:max:POP2000": 13243, "numnum:min:POP2000": 2640, "numnum:sum:POP2000": 36344, "numnum:count:POP2005": 5, "numnum:max:POP2005": 14503, "numnum:min:POP2005": 2606, "numnum:sum:POP2005": 39210, "numnum:count:POP2010": 5, "numnum:max:POP2010": 14987, "numnum:min:POP2010": 2603, "numnum:sum:POP2010": 40338, "numnum:count:POP2015": 5, "numnum:max:POP2015": 15789, "numnum:min:POP2015": 2651, "numnum:sum:POP2015": 42192, "numnum:count:POP2020": 5, "numnum:max:POP2020": 17214, "numnum:min:POP2020": 2862, "numnum:sum:POP2020": 45471, "numnum:count:POP2025": 5, "numnum:max:POP2025": 18466, "numnum:min:POP2025": 3104, "numnum:sum:POP2025": 48382, "numnum:count:POP2050": 5, "numnum:max:POP2050": 19412, "numnum:min:POP2050": 3305, "numnum:sum:POP2050": 50671, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ 103.886719, 1.318243 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 850, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 12, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 3.166666, "numnum:min:LATITUDE": 1.293033, "numnum:sum:LATITUDE": 7.373719, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 103.855821, "numnum:min:LONGITUDE": 101.699983, "numnum:sum:LONGITUDE": 307.257751, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 5183700, "numnum:min:POP_MAX": 67964, "numnum:sum:POP_MAX": 6699664, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 3289529, "numnum:min:POP_MIN": 50000, "numnum:sum:POP_MIN": 4787529, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3314179, "numnum:min:POP_OTHER": 956431, "numnum:sum:POP_OTHER": 6938600, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 33, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 31, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 6697380, "numnum:min:GEONAMEID": 1735161, "numnum:sum:GEONAMEID": 10312793, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3289529, "numnum:min:MAX_POP10": 955607, "numnum:sum:MAX_POP10": 6995891, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 4207001, "numnum:min:MAX_POP20": 964830, "numnum:sum:MAX_POP20": 7922586, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 4207001, "numnum:min:MAX_POP50": 1651113, "numnum:sum:MAX_POP50": 9326903, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 4983714, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 9190715, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 4983714, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9190715, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 650, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 666, "numnum:min:MIN_AREAKM": 305, "numnum:sum:MIN_AREAKM": 1457, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1700, "numnum:min:MAX_AREAKM": 456, "numnum:sum:MAX_AREAKM": 2961, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 257, "numnum:min:MIN_AREAMI": 118, "numnum:sum:MIN_AREAMI": 563, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 657, "numnum:min:MAX_AREAMI": 176, "numnum:sum:MAX_AREAMI": 1144, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 467, "numnum:min:MIN_PERKM": 173, "numnum:sum:MIN_PERKM": 990, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 1111, "numnum:min:MAX_PERKM": 288, "numnum:sum:MAX_PERKM": 2136, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 290, "numnum:min:MIN_PERMI": 108, "numnum:sum:MIN_PERMI": 615, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 690, "numnum:min:MAX_PERMI": 179, "numnum:sum:MAX_PERMI": 1327, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 103.633333, "numnum:min:MIN_BBXMIN": 101.358333, "numnum:sum:MIN_BBXMIN": 306.349999, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 103.658333, "numnum:min:MAX_BBXMIN": 101.491667, "numnum:sum:MAX_BBXMIN": 306.725, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 104, "numnum:min:MIN_BBXMAX": 101.841667, "numnum:sum:MIN_BBXMAX": 307.733334, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 104, "numnum:min:MAX_BBXMAX": 101.891667, "numnum:sum:MAX_BBXMAX": 307.78333399999999, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 2.7, "numnum:min:MIN_BBYMIN": 1.25, "numnum:sum:MIN_BBYMIN": 6.65, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 3.040173, "numnum:min:MAX_BBYMIN": 1.25, "numnum:sum:MAX_BBYMIN": 6.998506, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 3.475, "numnum:min:MIN_BBYMAX": 1.425, "numnum:sum:MIN_BBYMAX": 7.941194, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 3.475, "numnum:min:MAX_BBYMAX": 1.475, "numnum:sum:MAX_BBYMAX": 7.991194, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 103.821508, "numnum:min:MEAN_BBXC": 101.644598, "numnum:sum:MEAN_BBXC": 307.182723, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 3.131431, "numnum:min:MEAN_BBYC": 1.352586, "numnum:sum:MEAN_BBYC": 7.399926000000001, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 17, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 31, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 3547809, "numnum:min:GN_POP": 50000, "numnum:sum:GN_POP": 5051784, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 62, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 93, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 450, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 798, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 3.14, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 4.4, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 103.83, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 205.53, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1016, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1224, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1306, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1587, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1634, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1978, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1880, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2274, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2075, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2526, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2263, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2908, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2415, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3336, "numnum:count:POP1985": 3, "numnum:max:POP1985": 2709, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3725, "numnum:count:POP1990": 3, "numnum:max:POP1990": 3016, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 4136, "numnum:count:POP1995": 3, "numnum:max:POP1995": 3478, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 4691, "numnum:count:POP2000": 3, "numnum:max:POP2000": 4017, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 5323, "numnum:count:POP2005": 3, "numnum:max:POP2005": 4327, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 5732, "numnum:count:POP2010": 3, "numnum:max:POP2010": 4436, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 5884, "numnum:count:POP2015": 3, "numnum:max:POP2015": 4592, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 6111, "numnum:count:POP2020": 3, "numnum:max:POP2020": 4809, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 6479, "numnum:count:POP2025": 3, "numnum:max:POP2025": 4965, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 6785, "numnum:count:POP2050": 3, "numnum:max:POP2050": 5104, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 7042, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797, "MAX_POP20": 2498797, "MAX_POP50": 2498797, "MAX_POP300": 2498797, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 446, "MAX_AREAKM": 447, "MIN_AREAMI": 172, "MAX_AREAMI": 173, "MIN_PERKM": 510, "MAX_PERKM": 511, "MIN_PERMI": 317, "MAX_PERMI": 318, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 3222000, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516, "POP1955": 577, "POP1960": 646, "POP1965": 769, "POP1970": 987, "POP1975": 1348, "POP1980": 1842, "POP1985": 2195, "POP1990": 2526, "POP1995": 2838, "POP2000": 3117, "POP2005": 3265, "POP2010": 3300, "POP2015": 3346, "POP2020": 3434, "POP2025": 3537, "POP2050": 3630, "accum2": 1, "numnum:count:SCALERANK": 13, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 43, "numnum:count:NATSCALE": 13, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 2140, "numnum:count:LABELRANK": 13, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 40, "numnum:count:DIFFASCII": 13, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 13, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 10, "numnum:count:CAPALT": 13, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 13, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 4, "numnum:count:MEGACITY": 13, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 7, "numnum:count:LATITUDE": 13, "numnum:max:LATITUDE": 39.019439, "numnum:min:LATITUDE": -4.259186, "numnum:sum:LATITUDE": 236.554359, "numnum:count:LONGITUDE": 13, "numnum:max:LONGITUDE": 173.017571, "numnum:min:LONGITUDE": 15.284689, "numnum:sum:LONGITUDE": 1672.6601979999999, "numnum:count:CHANGED": 13, "numnum:max:CHANGED": 40, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 65, "numnum:count:NAMEDIFF": 13, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 13, "numnum:max:POP_MAX": 35676000, "numnum:min:POP_MAX": 4645, "numnum:sum:POP_MAX": 75136197, "numnum:count:POP_MIN": 13, "numnum:max:POP_MIN": 9796000, "numnum:min:POP_MIN": 4645, "numnum:sum:POP_MIN": 29392333, "numnum:count:POP_OTHER": 13, "numnum:max:POP_OTHER": 12945252, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 42848124, "numnum:count:RANK_MAX": 13, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 4, "numnum:sum:RANK_MAX": 134, "numnum:count:RANK_MIN": 13, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 128, "numnum:count:GEONAMEID": 13, "numnum:max:GEONAMEID": 2260535, "numnum:min:GEONAMEID": 1559804, "numnum:sum:GEONAMEID": 24647360, "numnum:count:LS_MATCH": 13, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 13, "numnum:count:CHECKME": 13, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 25, "numnum:count:MAX_POP10": 13, "numnum:max:MAX_POP10": 13762740, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 45634160, "numnum:count:MAX_POP20": 13, "numnum:max:MAX_POP20": 24218878, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 57575551, "numnum:count:MAX_POP50": 13, "numnum:max:MAX_POP50": 31303497, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 75937515, "numnum:count:MAX_POP300": 13, "numnum:max:MAX_POP300": 31303497, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 96669840, "numnum:count:MAX_POP310": 13, "numnum:max:MAX_POP310": 31303497, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 95690107, "numnum:count:MAX_NATSCA": 13, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 2050, "numnum:count:MIN_AREAKM": 13, "numnum:max:MIN_AREAKM": 2130, "numnum:min:MIN_AREAKM": 1, "numnum:sum:MIN_AREAKM": 5919, "numnum:count:MAX_AREAKM": 13, "numnum:max:MAX_AREAKM": 8820, "numnum:min:MAX_AREAKM": 1, "numnum:sum:MAX_AREAKM": 21486, "numnum:count:MIN_AREAMI": 13, "numnum:max:MIN_AREAMI": 823, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 2285, "numnum:count:MAX_AREAMI": 13, "numnum:max:MAX_AREAMI": 3405, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 8295, "numnum:count:MIN_PERKM": 13, "numnum:max:MIN_PERKM": 838, "numnum:min:MIN_PERKM": 4, "numnum:sum:MIN_PERKM": 3008, "numnum:count:MAX_PERKM": 13, "numnum:max:MAX_PERKM": 5298, "numnum:min:MAX_PERKM": 4, "numnum:sum:MAX_PERKM": 11806, "numnum:count:MIN_PERMI": 13, "numnum:max:MIN_PERMI": 521, "numnum:min:MIN_PERMI": 2, "numnum:sum:MIN_PERMI": 1869, "numnum:count:MAX_PERMI": 13, "numnum:max:MAX_PERMI": 3292, "numnum:min:MAX_PERMI": 2, "numnum:sum:MAX_PERMI": 7334, "numnum:count:MIN_BBXMIN": 13, "numnum:max:MIN_BBXMIN": 172.966667, "numnum:min:MIN_BBXMIN": 15.15, "numnum:sum:MIN_BBXMIN": 1669.0615300000002, "numnum:count:MAX_BBXMIN": 13, "numnum:max:MAX_BBXMIN": 172.966667, "numnum:min:MAX_BBXMIN": 15.15, "numnum:sum:MAX_BBXMIN": 1671.2281110000002, "numnum:count:MIN_BBXMAX": 13, "numnum:max:MIN_BBXMAX": 173.058333, "numnum:min:MIN_BBXMAX": 15.308333, "numnum:sum:MIN_BBXMAX": 1674.3723179999998, "numnum:count:MAX_BBXMAX": 13, "numnum:max:MAX_BBXMAX": 173.058333, "numnum:min:MAX_BBXMAX": 15.308333, "numnum:sum:MAX_BBXMAX": 1674.774999, "numnum:count:MIN_BBYMIN": 13, "numnum:max:MIN_BBYMIN": 38.825, "numnum:min:MIN_BBYMIN": -4.333333, "numnum:sum:MIN_BBYMIN": 233.228394, "numnum:count:MAX_BBYMIN": 13, "numnum:max:MAX_BBYMIN": 38.825, "numnum:min:MAX_BBYMIN": -4.333333, "numnum:sum:MAX_BBYMIN": 234.97841599999999, "numnum:count:MIN_BBYMAX": 13, "numnum:max:MIN_BBYMAX": 39.191667, "numnum:min:MIN_BBYMAX": -4.15, "numnum:sum:MIN_BBYMAX": 237.83620999999997, "numnum:count:MAX_BBYMAX": 13, "numnum:max:MAX_BBYMAX": 39.191667, "numnum:min:MAX_BBYMAX": -4.15, "numnum:sum:MAX_BBYMAX": 240.00833399999997, "numnum:count:MEAN_BBXC": 13, "numnum:max:MEAN_BBXC": 173.015476, "numnum:min:MEAN_BBXC": 15.24454, "numnum:sum:MEAN_BBXC": 1672.3808999999997, "numnum:count:MEAN_BBYC": 13, "numnum:max:MEAN_BBYC": 38.996997, "numnum:min:MEAN_BBYC": -4.251293, "numnum:sum:MEAN_BBYC": 236.414654, "numnum:count:COMPARE": 13, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 13, "numnum:max:ADMIN1_COD": 40, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 131, "numnum:count:GN_POP": 13, "numnum:max:GN_POP": 10444527, "numnum:min:GN_POP": 217, "numnum:sum:GN_POP": 38080387, "numnum:count:ELEVATION": 13, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 13, "numnum:max:GTOPO30": 1448, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 1960, "numnum:count:UN_FID": 13, "numnum:max:UN_FID": 414, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 2189, "numnum:count:UN_LAT": 13, "numnum:max:UN_LAT": 39.02, "numnum:min:UN_LAT": -4.28, "numnum:sum:UN_LAT": 192.20000000000003, "numnum:count:UN_LONG": 13, "numnum:max:UN_LONG": 139.8, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 799.98, "numnum:count:POP1950": 13, "numnum:max:POP1950": 11275, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 19588, "numnum:count:POP1955": 13, "numnum:max:POP1955": 13713, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 24018, "numnum:count:POP1960": 13, "numnum:max:POP1960": 16679, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 29476, "numnum:count:POP1965": 13, "numnum:max:POP1965": 20284, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 36389, "numnum:count:POP1970": 13, "numnum:max:POP1970": 23298, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 44075, "numnum:count:POP1975": 13, "numnum:max:POP1975": 26615, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 51565, "numnum:count:POP1980": 13, "numnum:max:POP1980": 28549, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 56741, "numnum:count:POP1985": 13, "numnum:max:POP1985": 30304, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 61594, "numnum:count:POP1990": 13, "numnum:max:POP1990": 32530, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 67072, "numnum:count:POP1995": 13, "numnum:max:POP1995": 33587, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 69768, "numnum:count:POP2000": 13, "numnum:max:POP2000": 34450, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 71399, "numnum:count:POP2005": 13, "numnum:max:POP2005": 35327, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 73457, "numnum:count:POP2010": 13, "numnum:max:POP2010": 35676, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 74326, "numnum:count:POP2015": 13, "numnum:max:POP2015": 36094, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 75510, "numnum:count:POP2020": 13, "numnum:max:POP2020": 36371, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 77229, "numnum:count:POP2025": 13, "numnum:max:POP2025": 36399, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 78676, "numnum:count:POP2050": 13, "numnum:max:POP2050": 36400, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 79898, "accum": 13, "numnum:count:accum2": 13, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 13, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 125.771484, 39.027719 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861, "MAX_POP20": 11120470, "MAX_POP50": 16510327, "MAX_POP300": 23647944, "MAX_POP310": 137121250, "MAX_NATSCA": 300, "MIN_AREAKM": 2512, "MAX_AREAKM": 118844, "MIN_AREAMI": 970, "MAX_AREAMI": 45886, "MIN_PERKM": 1837, "MAX_PERKM": 93615, "MIN_PERMI": 1141, "MAX_PERMI": 58169, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22, "GN_POP": 7480601, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331, "POP1955": 4628, "POP1960": 4945, "POP1965": 5284, "POP1970": 5646, "POP1975": 6034, "POP1980": 6448, "POP1985": 6890, "POP1990": 7362, "POP1995": 8486, "POP2000": 9782, "POP2005": 10717, "POP2010": 11106, "POP2015": 11741, "POP2020": 12842, "POP2025": 13807, "POP2050": 14545, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 0, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 0, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 600, "numnum:sum:NATSCALE": 1800, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 1, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 2, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 39.928892, "numnum:min:LATITUDE": 22.304981, "numnum:sum:LATITUDE": 93.450325, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 121.436505, "numnum:min:LONGITUDE": 114.185009, "numnum:sum:LONGITUDE": 352.0098, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 14987000, "numnum:min:POP_MAX": 7206000, "numnum:sum:POP_MAX": 33299000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 14608512, "numnum:min:POP_MIN": 4551579, "numnum:sum:POP_MIN": 26640692, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 16803572, "numnum:min:POP_OTHER": 4549026, "numnum:sum:POP_OTHER": 30385829, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 13, "numnum:sum:RANK_MAX": 41, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 39, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1819729, "numnum:min:GEONAMEID": 1796236, "numnum:sum:GEONAMEID": 5432635, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 16172884, "numnum:min:MAX_POP10": 4551579, "numnum:sum:MAX_POP10": 30915324, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 16172884, "numnum:min:MAX_POP20": 11120470, "numnum:sum:MAX_POP20": 43072933, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 26630672, "numnum:min:MAX_POP50": 16510327, "numnum:sum:MAX_POP50": 59859428, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 26631586, "numnum:min:MAX_POP300": 16718429, "numnum:sum:MAX_POP300": 66997959, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 137121250, "numnum:min:MAX_POP310": 40576904, "numnum:sum:MAX_POP310": 220292748, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 300, "numnum:sum:MAX_NATSCA": 900, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 3792, "numnum:min:MIN_AREAKM": 202, "numnum:sum:MIN_AREAKM": 6506, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 118844, "numnum:min:MAX_AREAKM": 10661, "numnum:sum:MAX_AREAKM": 145905, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 1464, "numnum:min:MIN_AREAMI": 78, "numnum:sum:MIN_AREAMI": 2512, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 45886, "numnum:min:MAX_AREAMI": 4116, "numnum:sum:MAX_AREAMI": 56334, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 2219, "numnum:min:MIN_PERKM": 219, "numnum:sum:MIN_PERKM": 4275, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 93615, "numnum:min:MAX_PERKM": 7493, "numnum:sum:MAX_PERKM": 113450, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 1379, "numnum:min:MIN_PERMI": 136, "numnum:sum:MIN_PERMI": 2656, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 58169, "numnum:min:MAX_PERMI": 4656, "numnum:sum:MAX_PERMI": 70494, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 119.016667, "numnum:min:MIN_BBXMIN": 111.441667, "numnum:sum:MIN_BBXMIN": 342.991667, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 121.013757, "numnum:min:MAX_BBXMIN": 113.983333, "numnum:sum:MAX_BBXMIN": 351.055423, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 121.9, "numnum:min:MIN_BBXMAX": 114.3, "numnum:sum:MIN_BBXMAX": 353.40833299999999, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 121.9, "numnum:min:MAX_BBXMAX": 114.775, "numnum:sum:MAX_BBXMAX": 354, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 31.883333, "numnum:min:MIN_BBYMIN": 21.925, "numnum:sum:MIN_BBYMIN": 84, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 39.658333, "numnum:min:MAX_BBYMIN": 22.2, "numnum:sum:MAX_BBYMIN": 92.558333, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 40.433333, "numnum:min:MIN_BBYMAX": 22.4, "numnum:sum:MIN_BBYMAX": 94.48333299999999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 40.466667, "numnum:min:MAX_BBYMAX": 24.033333, "numnum:sum:MAX_BBYMAX": 96.808333, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 121.053901, "numnum:min:MEAN_BBXC": 114.035195, "numnum:sum:MEAN_BBXC": 351.018617, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 38.837783, "numnum:min:MEAN_BBYC": 22.679605, "numnum:sum:MEAN_BBYC": 92.77067699999999, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 23, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 45, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 14608512, "numnum:min:GN_POP": 7012738, "numnum:sum:GN_POP": 29101851, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 63, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9930, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 210, "numnum:min:UN_FID": 24, "numnum:sum:UN_FID": 332, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 39.9, "numnum:min:UN_LAT": 22.27, "numnum:sum:UN_LAT": 93.41, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 121.47, "numnum:min:UN_LONG": 114.17, "numnum:sum:UN_LONG": 352.02, "numnum:count:POP1950": 3, "numnum:max:POP1950": 6066, "numnum:min:POP1950": 1682, "numnum:sum:POP1950": 12079, "numnum:count:POP1955": 3, "numnum:max:POP1955": 6299, "numnum:min:POP1955": 2121, "numnum:sum:POP1955": 13048, "numnum:count:POP1960": 3, "numnum:max:POP1960": 6542, "numnum:min:POP1960": 2620, "numnum:sum:POP1960": 14107, "numnum:count:POP1965": 3, "numnum:max:POP1965": 6793, "numnum:min:POP1965": 3191, "numnum:sum:POP1965": 15268, "numnum:count:POP1970": 3, "numnum:max:POP1970": 7055, "numnum:min:POP1970": 3458, "numnum:sum:POP1970": 16159, "numnum:count:POP1975": 3, "numnum:max:POP1975": 7326, "numnum:min:POP1975": 3943, "numnum:sum:POP1975": 17303, "numnum:count:POP1980": 3, "numnum:max:POP1980": 7608, "numnum:min:POP1980": 4609, "numnum:sum:POP1980": 18665, "numnum:count:POP1985": 3, "numnum:max:POP1985": 7901, "numnum:min:POP1985": 5070, "numnum:sum:POP1985": 19861, "numnum:count:POP1990": 3, "numnum:max:POP1990": 8205, "numnum:min:POP1990": 5677, "numnum:sum:POP1990": 21244, "numnum:count:POP1995": 3, "numnum:max:POP1995": 10423, "numnum:min:POP1995": 6206, "numnum:sum:POP1995": 25115, "numnum:count:POP2000": 3, "numnum:max:POP2000": 13243, "numnum:min:POP2000": 6662, "numnum:sum:POP2000": 29687, "numnum:count:POP2005": 3, "numnum:max:POP2005": 14503, "numnum:min:POP2005": 7057, "numnum:sum:POP2005": 32277, "numnum:count:POP2010": 3, "numnum:max:POP2010": 14987, "numnum:min:POP2010": 7206, "numnum:sum:POP2010": 33299, "numnum:count:POP2015": 3, "numnum:max:POP2015": 15789, "numnum:min:POP2015": 7419, "numnum:sum:POP2015": 34949, "numnum:count:POP2020": 3, "numnum:max:POP2020": 17214, "numnum:min:POP2020": 7744, "numnum:sum:POP2020": 37800, "numnum:count:POP2025": 3, "numnum:max:POP2025": 18466, "numnum:min:POP2025": 8040, "numnum:sum:POP2025": 40313, "numnum:count:POP2050": 3, "numnum:max:POP2050": 19412, "numnum:min:POP2050": 8305, "numnum:sum:POP2050": 42262, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ 116.367188, 39.909736 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 500, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -4.329724, "numnum:min:LATITUDE": -8.838286, "numnum:sum:LATITUDE": -13.168009999999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 15.314972, "numnum:min:LONGITUDE": 13.234427, "numnum:sum:LONGITUDE": 28.549399, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 5, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 7843000, "numnum:min:POP_MAX": 5172900, "numnum:sum:POP_MAX": 13015900, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 5565703, "numnum:min:POP_MIN": 1951272, "numnum:sum:POP_MIN": 7516975, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 4738154, "numnum:min:POP_OTHER": 1951272, "numnum:sum:POP_OTHER": 6689426, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 13, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 25, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2314302, "numnum:min:GEONAMEID": 2240449, "numnum:sum:GEONAMEID": 4554751, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 5565703, "numnum:min:MAX_POP10": 1951272, "numnum:sum:MAX_POP10": 7516975, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 5567255, "numnum:min:MAX_POP20": 1951272, "numnum:sum:MAX_POP20": 7518527, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 5567255, "numnum:min:MAX_POP50": 1951272, "numnum:sum:MAX_POP50": 7518527, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 5567255, "numnum:min:MAX_POP300": 1951272, "numnum:sum:MAX_POP300": 7518527, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 346, "numnum:min:MIN_AREAKM": 237, "numnum:sum:MIN_AREAKM": 583, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 357, "numnum:min:MAX_AREAKM": 237, "numnum:sum:MAX_AREAKM": 594, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 134, "numnum:min:MIN_AREAMI": 91, "numnum:sum:MIN_AREAMI": 225, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 138, "numnum:min:MAX_AREAMI": 91, "numnum:sum:MAX_AREAMI": 229, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 201, "numnum:min:MIN_PERKM": 149, "numnum:sum:MIN_PERKM": 350, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 219, "numnum:min:MAX_PERKM": 149, "numnum:sum:MAX_PERKM": 368, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 125, "numnum:min:MIN_PERMI": 93, "numnum:sum:MIN_PERMI": 218, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 136, "numnum:min:MAX_PERMI": 93, "numnum:sum:MAX_PERMI": 229, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 15.183333, "numnum:min:MIN_BBXMIN": 13.166667, "numnum:sum:MIN_BBXMIN": 28.35, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 15.183333, "numnum:min:MAX_BBXMIN": 13.166667, "numnum:sum:MAX_BBXMIN": 28.35, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 15.533333, "numnum:min:MIN_BBXMAX": 13.4, "numnum:sum:MIN_BBXMAX": 28.933333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 15.533333, "numnum:min:MAX_BBXMAX": 13.4, "numnum:sum:MAX_BBXMAX": 28.933333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -4.5, "numnum:min:MIN_BBYMIN": -8.933333, "numnum:sum:MIN_BBYMIN": -13.433333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -4.478678, "numnum:min:MAX_BBYMIN": -8.933333, "numnum:sum:MAX_BBYMIN": -13.412011, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -4.291667, "numnum:min:MIN_BBYMAX": -8.766667, "numnum:sum:MIN_BBYMAX": -13.058334, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -4.291667, "numnum:min:MAX_BBYMAX": -8.766667, "numnum:sum:MAX_BBYMAX": -13.058334, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 15.334415, "numnum:min:MEAN_BBXC": 13.28253, "numnum:sum:MEAN_BBXC": 28.616945, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -4.384467, "numnum:min:MEAN_BBYC": -8.851964, "numnum:sum:MEAN_BBYC": -13.236431, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 10, "numnum:min:ADMIN1_COD": 6, "numnum:sum:ADMIN1_COD": 16, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7785965, "numnum:min:GN_POP": 2776168, "numnum:sum:GN_POP": 10562133, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 224, "numnum:min:GTOPO30": 6, "numnum:sum:GTOPO30": 230, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 182, "numnum:min:UN_FID": 168, "numnum:sum:UN_FID": 350, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": -4.32, "numnum:min:UN_LAT": -8.81, "numnum:sum:UN_LAT": -13.13, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 15.29, "numnum:min:UN_LONG": 13.23, "numnum:sum:UN_LONG": 28.52, "numnum:count:POP1950": 2, "numnum:max:POP1950": 202, "numnum:min:POP1950": 138, "numnum:sum:POP1950": 340, "numnum:count:POP1955": 2, "numnum:max:POP1955": 292, "numnum:min:POP1955": 174, "numnum:sum:POP1955": 466, "numnum:count:POP1960": 2, "numnum:max:POP1960": 443, "numnum:min:POP1960": 219, "numnum:sum:POP1960": 662, "numnum:count:POP1965": 2, "numnum:max:POP1965": 717, "numnum:min:POP1965": 315, "numnum:sum:POP1965": 1032, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1070, "numnum:min:POP1970": 459, "numnum:sum:POP1970": 1529, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1482, "numnum:min:POP1975": 665, "numnum:sum:POP1975": 2147, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2053, "numnum:min:POP1980": 962, "numnum:sum:POP1980": 3015, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2793, "numnum:min:POP1985": 1295, "numnum:sum:POP1985": 4088, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3448, "numnum:min:POP1990": 1568, "numnum:sum:POP1990": 5016, "numnum:count:POP1995": 2, "numnum:max:POP1995": 4447, "numnum:min:POP1995": 1953, "numnum:sum:POP1995": 6400, "numnum:count:POP2000": 2, "numnum:max:POP2000": 5485, "numnum:min:POP2000": 2591, "numnum:sum:POP2000": 8076, "numnum:count:POP2005": 2, "numnum:max:POP2005": 7108, "numnum:min:POP2005": 3533, "numnum:sum:POP2005": 10641, "numnum:count:POP2010": 2, "numnum:max:POP2010": 7843, "numnum:min:POP2010": 4000, "numnum:sum:POP2010": 11843, "numnum:count:POP2015": 2, "numnum:max:POP2015": 9052, "numnum:min:POP2015": 4775, "numnum:sum:POP2015": 13827, "numnum:count:POP2020": 2, "numnum:max:POP2020": 11313, "numnum:min:POP2020": 6036, "numnum:sum:POP2020": 17349, "numnum:count:POP2025": 2, "numnum:max:POP2025": 13875, "numnum:min:POP2025": 7153, "numnum:sum:POP2025": 21028, "numnum:count:POP2050": 2, "numnum:max:POP2050": 16762, "numnum:min:POP2050": 8236, "numnum:sum:POP2050": 24998, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305, "accum2": 1, "numnum:count:SCALERANK": 10, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 23, "numnum:count:NATSCALE": 10, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 2240, "numnum:count:LABELRANK": 10, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 41, "numnum:count:DIFFASCII": 10, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 10, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 7, "numnum:count:CAPALT": 10, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 10, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 5, "numnum:count:MEGACITY": 10, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 7, "numnum:count:LATITUDE": 10, "numnum:max:LATITUDE": 39.019439, "numnum:min:LATITUDE": 4.883331, "numnum:sum:LATITUDE": 250.49154199999999, "numnum:count:LONGITUDE": 10, "numnum:max:LONGITUDE": 139.751407, "numnum:min:LONGITUDE": 114.933284, "numnum:sum:LONGITUDE": 1276.396297, "numnum:count:CHANGED": 10, "numnum:max:CHANGED": 40, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 54, "numnum:count:NAMEDIFF": 10, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 10, "numnum:max:POP_MAX": 35676000, "numnum:min:POP_MAX": 7026, "numnum:sum:POP_MAX": 80622623, "numnum:count:POP_MIN": 10, "numnum:max:POP_MIN": 9796000, "numnum:min:POP_MIN": 7026, "numnum:sum:POP_MIN": 30799536, "numnum:count:POP_OTHER": 10, "numnum:max:POP_OTHER": 12945252, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 47371587, "numnum:count:RANK_MAX": 10, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 5, "numnum:sum:RANK_MAX": 117, "numnum:count:RANK_MIN": 10, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 110, "numnum:count:GEONAMEID": 10, "numnum:max:GEONAMEID": 1871859, "numnum:min:GEONAMEID": 1559804, "numnum:sum:GEONAMEID": 17749322, "numnum:count:LS_MATCH": 10, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 10, "numnum:count:CHECKME": 10, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 10, "numnum:max:MAX_POP10": 13762740, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 50365982, "numnum:count:MAX_POP20": 10, "numnum:max:MAX_POP20": 24218878, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 64662327, "numnum:count:MAX_POP50": 10, "numnum:max:MAX_POP50": 31303497, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 83396378, "numnum:count:MAX_POP300": 10, "numnum:max:MAX_POP300": 31303497, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 104693165, "numnum:count:MAX_POP310": 10, "numnum:max:MAX_POP310": 31303497, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 104902352, "numnum:count:MAX_NATSCA": 10, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 1950, "numnum:count:MIN_AREAKM": 10, "numnum:max:MIN_AREAKM": 2130, "numnum:min:MIN_AREAKM": 6, "numnum:sum:MIN_AREAKM": 6291, "numnum:count:MAX_AREAKM": 10, "numnum:max:MAX_AREAKM": 8820, "numnum:min:MAX_AREAKM": 6, "numnum:sum:MAX_AREAKM": 23030, "numnum:count:MIN_AREAMI": 10, "numnum:max:MIN_AREAMI": 823, "numnum:min:MIN_AREAMI": 2, "numnum:sum:MIN_AREAMI": 2429, "numnum:count:MAX_AREAMI": 10, "numnum:max:MAX_AREAMI": 3405, "numnum:min:MAX_AREAMI": 2, "numnum:sum:MAX_AREAMI": 8892, "numnum:count:MIN_PERKM": 10, "numnum:max:MIN_PERKM": 838, "numnum:min:MIN_PERKM": 15, "numnum:sum:MIN_PERKM": 3152, "numnum:count:MAX_PERKM": 10, "numnum:max:MAX_PERKM": 5298, "numnum:min:MAX_PERKM": 15, "numnum:sum:MAX_PERKM": 12749, "numnum:count:MIN_PERMI": 10, "numnum:max:MIN_PERMI": 521, "numnum:min:MIN_PERMI": 9, "numnum:sum:MIN_PERMI": 1959, "numnum:count:MAX_PERMI": 10, "numnum:max:MAX_PERMI": 3292, "numnum:min:MAX_PERMI": 9, "numnum:sum:MAX_PERMI": 7920, "numnum:count:MIN_BBXMIN": 10, "numnum:max:MIN_BBXMIN": 139.166667, "numnum:min:MIN_BBXMIN": 114.825, "numnum:sum:MIN_BBXMIN": 1272.16153, "numnum:count:MAX_BBXMIN": 10, "numnum:max:MAX_BBXMIN": 139.536465, "numnum:min:MAX_BBXMIN": 114.825, "numnum:sum:MAX_BBXMIN": 1274.911444, "numnum:count:MIN_BBXMAX": 10, "numnum:max:MIN_BBXMAX": 140.433333, "numnum:min:MIN_BBXMAX": 114.991667, "numnum:sum:MIN_BBXMAX": 1278.086469, "numnum:count:MAX_BBXMAX": 10, "numnum:max:MAX_BBXMAX": 140.433333, "numnum:min:MAX_BBXMAX": 114.991667, "numnum:sum:MAX_BBXMAX": 1278.683333, "numnum:count:MIN_BBYMIN": 10, "numnum:max:MIN_BBYMIN": 38.825, "numnum:min:MIN_BBYMIN": 4.816667, "numnum:sum:MIN_BBYMIN": 246.703394, "numnum:count:MAX_BBYMIN": 10, "numnum:max:MAX_BBYMIN": 38.825, "numnum:min:MAX_BBYMIN": 4.816667, "numnum:sum:MAX_BBYMIN": 248.88674899999999, "numnum:count:MIN_BBYMAX": 10, "numnum:max:MIN_BBYMAX": 39.191667, "numnum:min:MIN_BBYMAX": 5.008333, "numnum:sum:MIN_BBYMAX": 251.82787599999996, "numnum:count:MAX_BBYMAX": 10, "numnum:max:MAX_BBYMAX": 39.191667, "numnum:min:MAX_BBYMAX": 5.008333, "numnum:sum:MAX_BBYMAX": 253.99999999999998, "numnum:count:MEAN_BBXC": 10, "numnum:max:MEAN_BBXC": 139.75102, "numnum:min:MEAN_BBXC": 114.908824, "numnum:sum:MEAN_BBXC": 1275.8799259999999, "numnum:count:MEAN_BBYC": 10, "numnum:max:MEAN_BBYC": 38.996997, "numnum:min:MEAN_BBYC": 4.910245, "numnum:sum:MEAN_BBYC": 250.27570599999999, "numnum:count:COMPARE": 10, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 10, "numnum:max:ADMIN1_COD": 40, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 120, "numnum:count:GN_POP": 10, "numnum:max:GN_POP": 10444527, "numnum:min:GN_POP": 217, "numnum:sum:GN_POP": 44613731, "numnum:count:ELEVATION": 10, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 10, "numnum:max:GTOPO30": 1448, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 1653, "numnum:count:UN_FID": 10, "numnum:max:UN_FID": 414, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 2134, "numnum:count:UN_LAT": 10, "numnum:max:UN_LAT": 39.02, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 221.51000000000003, "numnum:count:UN_LONG": 10, "numnum:max:UN_LONG": 139.8, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 906.2, "numnum:count:POP1950": 10, "numnum:max:POP1950": 11275, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 20109, "numnum:count:POP1955": 10, "numnum:max:POP1955": 13713, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 24686, "numnum:count:POP1960": 10, "numnum:max:POP1960": 16679, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 30307, "numnum:count:POP1965": 10, "numnum:max:POP1965": 20284, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 37447, "numnum:count:POP1970": 10, "numnum:max:POP1970": 23298, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 45578, "numnum:count:POP1975": 10, "numnum:max:POP1975": 26615, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 53259, "numnum:count:POP1980": 10, "numnum:max:POP1980": 28549, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 58512, "numnum:count:POP1985": 10, "numnum:max:POP1985": 30304, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 63444, "numnum:count:POP1990": 10, "numnum:max:POP1990": 32530, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 69079, "numnum:count:POP1995": 10, "numnum:max:POP1995": 33587, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 71614, "numnum:count:POP2000": 10, "numnum:max:POP2000": 34450, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 73053, "numnum:count:POP2005": 10, "numnum:max:POP2005": 35327, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 74847, "numnum:count:POP2010": 10, "numnum:max:POP2010": 35676, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 75574, "numnum:count:POP2015": 10, "numnum:max:POP2015": 36094, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 76656, "numnum:count:POP2020": 10, "numnum:max:POP2020": 36371, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 78362, "numnum:count:POP2025": 10, "numnum:max:POP2025": 36399, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 79842, "numnum:count:POP2050": 10, "numnum:max:POP2050": 36400, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 81053, "accum": 10, "numnum:count:accum2": 10, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 10, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.005973 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 760, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -1.95359, "numnum:min:LATITUDE": -33.920011, "numnum:sum:LATITUDE": -58.443607, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 30.060532, "numnum:min:LONGITUDE": 17.083546, "numnum:sum:LONGITUDE": 65.579066, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3215000, "numnum:min:POP_MAX": 268132, "numnum:sum:POP_MAX": 4343132, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 2432858, "numnum:min:POP_MIN": 262796, "numnum:sum:POP_MIN": 3440915, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2401318, "numnum:min:POP_OTHER": 262796, "numnum:sum:POP_OTHER": 3817018, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 33, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3369157, "numnum:min:GEONAMEID": 202061, "numnum:sum:GEONAMEID": 6923354, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2432858, "numnum:min:MAX_POP10": 262796, "numnum:sum:MAX_POP10": 3742441, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2443605, "numnum:min:MAX_POP20": 262796, "numnum:sum:MAX_POP20": 4970300, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 5065653, "numnum:min:MAX_POP50": 262796, "numnum:sum:MAX_POP50": 7772054, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 7102391, "numnum:min:MAX_POP300": 262796, "numnum:sum:MAX_POP300": 9808792, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 601, "numnum:min:MIN_AREAKM": 89, "numnum:sum:MIN_AREAKM": 1224, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 8753, "numnum:min:MAX_AREAKM": 89, "numnum:sum:MAX_AREAKM": 9384, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 232, "numnum:min:MIN_AREAMI": 35, "numnum:sum:MIN_AREAMI": 473, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 3380, "numnum:min:MAX_AREAMI": 35, "numnum:sum:MAX_AREAMI": 3624, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 735, "numnum:min:MIN_PERKM": 60, "numnum:sum:MIN_PERKM": 1090, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 9184, "numnum:min:MAX_PERKM": 60, "numnum:sum:MAX_PERKM": 9544, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 457, "numnum:min:MIN_PERMI": 37, "numnum:sum:MIN_PERMI": 677, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 5707, "numnum:min:MAX_PERMI": 37, "numnum:sum:MAX_PERMI": 5931, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 29.166667, "numnum:min:MIN_BBXMIN": 17.008333, "numnum:sum:MIN_BBXMIN": 64.55, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 29.833333, "numnum:min:MAX_BBXMIN": 17.008333, "numnum:sum:MAX_BBXMIN": 65.216666, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 30.233333, "numnum:min:MIN_BBXMAX": 17.116667, "numnum:sum:MIN_BBXMAX": 66.074745, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 30.475, "numnum:min:MAX_BBXMAX": 17.116667, "numnum:sum:MAX_BBXMAX": 66.33333400000001, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -2.991667, "numnum:min:MIN_BBYMIN": -34.108333, "numnum:sum:MIN_BBYMIN": -59.725, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -2.075, "numnum:min:MAX_BBYMIN": -34.108333, "numnum:sum:MAX_BBYMIN": -58.808333000000008, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -1.76663, "numnum:min:MIN_BBYMAX": -33.808333, "numnum:sum:MIN_BBYMAX": -58.066629999999999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -1.075, "numnum:min:MAX_BBYMAX": -33.808333, "numnum:sum:MAX_BBYMAX": -57.375, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 29.913775, "numnum:min:MEAN_BBXC": 17.064196, "numnum:sum:MEAN_BBXC": 65.535179, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -2.034427, "numnum:min:MEAN_BBYC": -33.954979, "numnum:sum:MEAN_BBYC": -58.540549000000009, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 21, "numnum:min:ADMIN1_COD": 9, "numnum:sum:ADMIN1_COD": 41, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 3433441, "numnum:min:GN_POP": 268132, "numnum:sum:GN_POP": 4446834, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1722, "numnum:min:GTOPO30": 7, "numnum:sum:GTOPO30": 3297, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 455, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 894, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -33.97, "numnum:sum:UN_LAT": -35.92, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 30.05, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 48.53, "numnum:count:POP1950": 3, "numnum:max:POP1950": 618, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 636, "numnum:count:POP1955": 3, "numnum:max:POP1955": 705, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 730, "numnum:count:POP1960": 3, "numnum:max:POP1960": 803, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 837, "numnum:count:POP1965": 3, "numnum:max:POP1965": 945, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 990, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1114, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1173, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1339, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1429, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1609, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1737, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1925, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2093, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2155, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2374, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2394, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2683, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2715, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3212, "numnum:count:POP2005": 3, "numnum:max:POP2005": 3087, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3862, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3215, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4075, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3357, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4304, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3504, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4656, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3627, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5040, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3744, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5459, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 17.050781, -22.593726 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 9, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 31, "numnum:count:NATSCALE": 9, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 1460, "numnum:count:LABELRANK": 9, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 25, "numnum:count:DIFFASCII": 9, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 9, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 9, "numnum:count:CAPALT": 9, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 9, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 9, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 9, "numnum:max:LATITUDE": 7.103004, "numnum:min:LATITUDE": -33.920011, "numnum:sum:LATITUDE": -60.512966999999999, "numnum:count:LONGITUDE": 9, "numnum:max:LONGITUDE": 173.017571, "numnum:min:LONGITUDE": 13.234427, "numnum:sum:LONGITUDE": 611.9606989999999, "numnum:count:CHANGED": 9, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 30, "numnum:count:NAMEDIFF": 9, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 9, "numnum:max:POP_MAX": 7843000, "numnum:min:POP_MAX": 4645, "numnum:sum:POP_MAX": 18772879, "numnum:count:POP_MIN": 9, "numnum:max:POP_MIN": 5565703, "numnum:min:POP_MIN": 4645, "numnum:sum:POP_MIN": 12169459, "numnum:count:POP_OTHER": 9, "numnum:max:POP_OTHER": 4738154, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 11681222, "numnum:count:RANK_MAX": 9, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 4, "numnum:sum:RANK_MAX": 89, "numnum:count:RANK_MIN": 9, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 88, "numnum:count:GEONAMEID": 9, "numnum:max:GEONAMEID": 3369157, "numnum:min:GEONAMEID": 202061, "numnum:sum:GEONAMEID": 20044484, "numnum:count:LS_MATCH": 9, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 9, "numnum:count:CHECKME": 9, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 9, "numnum:max:MAX_POP10": 5565703, "numnum:min:MAX_POP10": 412, "numnum:sum:MAX_POP10": 12448336, "numnum:count:MAX_POP20": 9, "numnum:max:MAX_POP20": 5567255, "numnum:min:MAX_POP20": 412, "numnum:sum:MAX_POP20": 13677747, "numnum:count:MAX_POP50": 9, "numnum:max:MAX_POP50": 5567255, "numnum:min:MAX_POP50": 412, "numnum:sum:MAX_POP50": 16479501, "numnum:count:MAX_POP300": 9, "numnum:max:MAX_POP300": 7102391, "numnum:min:MAX_POP300": 412, "numnum:sum:MAX_POP300": 18516239, "numnum:count:MAX_POP310": 9, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 9, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 900, "numnum:count:MIN_AREAKM": 9, "numnum:max:MIN_AREAKM": 601, "numnum:min:MIN_AREAKM": 1, "numnum:sum:MIN_AREAKM": 1971, "numnum:count:MAX_AREAKM": 9, "numnum:max:MAX_AREAKM": 8753, "numnum:min:MAX_AREAKM": 1, "numnum:sum:MAX_AREAKM": 10142, "numnum:count:MIN_AREAMI": 9, "numnum:max:MIN_AREAMI": 232, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 761, "numnum:count:MAX_AREAMI": 9, "numnum:max:MAX_AREAMI": 3380, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 3916, "numnum:count:MIN_PERKM": 9, "numnum:max:MIN_PERKM": 735, "numnum:min:MIN_PERKM": 4, "numnum:sum:MIN_PERKM": 1584, "numnum:count:MAX_PERKM": 9, "numnum:max:MAX_PERKM": 9184, "numnum:min:MAX_PERKM": 4, "numnum:sum:MAX_PERKM": 10056, "numnum:count:MIN_PERMI": 9, "numnum:max:MIN_PERMI": 457, "numnum:min:MIN_PERMI": 2, "numnum:sum:MIN_PERMI": 984, "numnum:count:MAX_PERMI": 9, "numnum:max:MAX_PERMI": 5707, "numnum:min:MAX_PERMI": 2, "numnum:sum:MAX_PERMI": 6249, "numnum:count:MIN_BBXMIN": 9, "numnum:max:MIN_BBXMIN": 172.966667, "numnum:min:MIN_BBXMIN": 13.166667, "numnum:sum:MIN_BBXMIN": 610.5416669999999, "numnum:count:MAX_BBXMIN": 9, "numnum:max:MAX_BBXMIN": 172.966667, "numnum:min:MAX_BBXMIN": 13.166667, "numnum:sum:MAX_BBXMIN": 611.2083329999999, "numnum:count:MIN_BBXMAX": 9, "numnum:max:MIN_BBXMAX": 173.058333, "numnum:min:MIN_BBXMAX": 13.4, "numnum:sum:MIN_BBXMAX": 612.9164109999999, "numnum:count:MAX_BBXMAX": 9, "numnum:max:MAX_BBXMAX": 173.058333, "numnum:min:MAX_BBXMAX": 13.4, "numnum:sum:MAX_BBXMAX": 613.175, "numnum:count:MIN_BBYMIN": 9, "numnum:max:MIN_BBYMIN": 7.091667, "numnum:min:MIN_BBYMIN": -34.108333, "numnum:sum:MIN_BBYMIN": -62.166666, "numnum:count:MAX_BBYMIN": 9, "numnum:max:MAX_BBYMIN": 7.091667, "numnum:min:MAX_BBYMIN": -34.108333, "numnum:sum:MAX_BBYMIN": -61.228677000000008, "numnum:count:MIN_BBYMAX": 9, "numnum:max:MIN_BBYMAX": 7.116667, "numnum:min:MIN_BBYMAX": -33.808333, "numnum:sum:MIN_BBYMAX": -59.883297, "numnum:count:MAX_BBYMAX": 9, "numnum:max:MAX_BBYMAX": 7.116667, "numnum:min:MAX_BBYMAX": -33.808333, "numnum:sum:MAX_BBYMAX": -59.191667, "numnum:count:MEAN_BBXC": 9, "numnum:max:MEAN_BBXC": 173.015476, "numnum:min:MEAN_BBXC": 13.28253, "numnum:sum:MEAN_BBXC": 611.945473, "numnum:count:MEAN_BBYC": 9, "numnum:max:MEAN_BBYC": 7.104167, "numnum:min:MEAN_BBYC": -33.954979, "numnum:sum:MEAN_BBYC": -60.67291600000001, "numnum:count:COMPARE": 9, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 9, "numnum:max:ADMIN1_COD": 21, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 71, "numnum:count:GN_POP": 9, "numnum:max:GN_POP": 7785965, "numnum:min:GN_POP": 4645, "numnum:sum:GN_POP": 16347523, "numnum:count:ELEVATION": 9, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 9, "numnum:max:GTOPO30": 1722, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 3844, "numnum:count:UN_FID": 9, "numnum:max:UN_FID": 455, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1410, "numnum:count:UN_LAT": 9, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -33.97, "numnum:sum:UN_LAT": -53.330000000000008, "numnum:count:UN_LONG": 9, "numnum:max:UN_LONG": 30.05, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 92.33, "numnum:count:POP1950": 9, "numnum:max:POP1950": 618, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1059, "numnum:count:POP1955": 9, "numnum:max:POP1955": 705, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1288, "numnum:count:POP1960": 9, "numnum:max:POP1960": 803, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1623, "numnum:count:POP1965": 9, "numnum:max:POP1965": 945, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2194, "numnum:count:POP1970": 9, "numnum:max:POP1970": 1114, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2940, "numnum:count:POP1975": 9, "numnum:max:POP1975": 1482, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3905, "numnum:count:POP1980": 9, "numnum:max:POP1980": 2053, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5198, "numnum:count:POP1985": 9, "numnum:max:POP1985": 2793, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 6777, "numnum:count:POP1990": 9, "numnum:max:POP1990": 3448, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 8094, "numnum:count:POP1995": 9, "numnum:max:POP1995": 4447, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9913, "numnum:count:POP2000": 9, "numnum:max:POP2000": 5485, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 12274, "numnum:count:POP2005": 9, "numnum:max:POP2005": 7108, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 15719, "numnum:count:POP2010": 9, "numnum:max:POP2010": 7843, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 17273, "numnum:count:POP2015": 9, "numnum:max:POP2015": 9052, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 19636, "numnum:count:POP2020": 9, "numnum:max:POP2020": 11313, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 23734, "numnum:count:POP2025": 9, "numnum:max:POP2025": 13875, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 28006, "numnum:count:POP2050": 9, "numnum:max:POP2050": 16762, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 32607, "accum": 9, "numnum:count:accum2": 9, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 9, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 158.115234, 6.926427 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 19, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1230, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 43, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": -1.283347, "numnum:min:LATITUDE": -17.81779, "numnum:sum:LATITUDE": -64.860482, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 39.268342, "numnum:min:LONGITUDE": 28.283328, "numnum:sum:LONGITUDE": 234.30634799999997, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 17, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 3010000, "numnum:min:POP_MAX": 218269, "numnum:sum:POP_MAX": 10036719, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 2750547, "numnum:min:POP_MIN": 180541, "numnum:sum:POP_MIN": 9418443, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 3400962, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 11500981, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 79, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 78, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 927967, "numnum:min:GEONAMEID": 160196, "numnum:sum:GEONAMEID": 3657985, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 3401842, "numnum:min:MAX_POP10": 218269, "numnum:sum:MAX_POP10": 11589520, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 3401842, "numnum:min:MAX_POP20": 218269, "numnum:sum:MAX_POP20": 12553640, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 3536914, "numnum:min:MAX_POP50": 218269, "numnum:sum:MAX_POP50": 14043697, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 3539151, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 13833689, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 650, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 1100, "numnum:min:MIN_AREAKM": 55, "numnum:sum:MIN_AREAKM": 3650, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 5563, "numnum:min:MAX_AREAKM": 55, "numnum:sum:MAX_AREAKM": 8430, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 425, "numnum:min:MIN_AREAMI": 21, "numnum:sum:MIN_AREAMI": 1409, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 2148, "numnum:min:MAX_AREAMI": 21, "numnum:sum:MAX_AREAMI": 3254, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 1360, "numnum:min:MIN_PERKM": 61, "numnum:sum:MIN_PERKM": 3616, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 5081, "numnum:min:MAX_PERKM": 61, "numnum:sum:MAX_PERKM": 7856, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 845, "numnum:min:MIN_PERMI": 38, "numnum:sum:MIN_PERMI": 2246, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 3157, "numnum:min:MAX_PERMI": 38, "numnum:sum:MAX_PERMI": 4881, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 39.15, "numnum:min:MIN_BBXMIN": 28.225, "numnum:sum:MIN_BBXMIN": 233.346002, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 39.15, "numnum:min:MAX_BBXMIN": 28.225, "numnum:sum:MAX_BBXMIN": 233.349999, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 39.325, "numnum:min:MIN_BBXMAX": 28.416667, "numnum:sum:MIN_BBXMAX": 235.62005200000002, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 39.325, "numnum:min:MAX_BBXMAX": 28.416667, "numnum:sum:MAX_BBXMAX": 236.68909000000003, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": -1.433333, "numnum:min:MIN_BBYMIN": -17.925, "numnum:sum:MIN_BBYMIN": -66.258332, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": -1.433333, "numnum:min:MAX_BBYMIN": -17.925, "numnum:sum:MAX_BBYMIN": -66.066665, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": -1.083333, "numnum:min:MIN_BBYMAX": -17.725, "numnum:sum:MIN_BBYMAX": -63.62500000000001, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": -1.083333, "numnum:min:MAX_BBYMAX": -17.725, "numnum:sum:MAX_BBYMAX": -63.169862, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 39.23918, "numnum:min:MEAN_BBXC": 28.308596, "numnum:sum:MEAN_BBXC": 234.68341, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": -1.249679, "numnum:min:MEAN_BBYC": -17.832399, "numnum:sum:MEAN_BBYC": -64.73770999999999, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 23, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 63, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 2750547, "numnum:min:GN_POP": 180541, "numnum:sum:GN_POP": 9418443, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 1724, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -2568, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 589, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1898, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -17.82, "numnum:sum:UN_LAT": -41.31, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 39.25, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 135.24, "numnum:count:POP1950": 7, "numnum:max:POP1950": 143, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 378, "numnum:count:POP1955": 7, "numnum:max:POP1955": 201, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 556, "numnum:count:POP1960": 7, "numnum:max:POP1960": 293, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 794, "numnum:count:POP1965": 7, "numnum:max:POP1965": 404, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1116, "numnum:count:POP1970": 7, "numnum:max:POP1970": 531, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1583, "numnum:count:POP1975": 7, "numnum:max:POP1975": 677, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2166, "numnum:count:POP1980": 7, "numnum:max:POP1980": 862, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2847, "numnum:count:POP1985": 7, "numnum:max:POP1985": 1090, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3550, "numnum:count:POP1990": 7, "numnum:max:POP1990": 1380, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 4500, "numnum:count:POP1995": 7, "numnum:max:POP1995": 1755, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5580, "numnum:count:POP2000": 7, "numnum:max:POP2000": 2233, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6801, "numnum:count:POP2005": 7, "numnum:max:POP2005": 2787, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 8242, "numnum:count:POP2010": 7, "numnum:max:POP2010": 3010, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 8840, "numnum:count:POP2015": 7, "numnum:max:POP2015": 3363, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9766, "numnum:count:POP2020": 7, "numnum:max:POP2020": 4052, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 11498, "numnum:count:POP2025": 7, "numnum:max:POP2025": 4881, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 13519, "numnum:count:POP2050": 7, "numnum:max:POP2050": 5871, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 15853, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.337954 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 16, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1120, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 35, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": -1.283347, "numnum:min:LATITUDE": -17.81779, "numnum:sum:LATITUDE": -50.877187, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 39.268342, "numnum:min:LONGITUDE": 28.283328, "numnum:sum:LONGITUDE": 200.52304599999997, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 17, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 3010000, "numnum:min:POP_MAX": 218269, "numnum:sum:POP_MAX": 9389969, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 2750547, "numnum:min:POP_MIN": 180541, "numnum:sum:POP_MIN": 8771693, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 3400962, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 10439593, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 68, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 67, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 909137, "numnum:min:GEONAMEID": 160196, "numnum:sum:GEONAMEID": 2730018, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 3401842, "numnum:min:MAX_POP10": 218269, "numnum:sum:MAX_POP10": 10624356, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 3401842, "numnum:min:MAX_POP20": 218269, "numnum:sum:MAX_POP20": 11641119, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 3536914, "numnum:min:MAX_POP50": 218269, "numnum:sum:MAX_POP50": 13054227, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 3539151, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 12844219, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 550, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 1093, "numnum:min:MIN_AREAKM": 55, "numnum:sum:MIN_AREAKM": 2550, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 5563, "numnum:min:MAX_AREAKM": 55, "numnum:sum:MAX_AREAKM": 7057, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 422, "numnum:min:MIN_AREAMI": 21, "numnum:sum:MIN_AREAMI": 984, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 2148, "numnum:min:MAX_AREAMI": 21, "numnum:sum:MAX_AREAMI": 2724, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 1180, "numnum:min:MIN_PERKM": 61, "numnum:sum:MIN_PERKM": 2256, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 5081, "numnum:min:MAX_PERKM": 61, "numnum:sum:MAX_PERKM": 6198, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 733, "numnum:min:MIN_PERMI": 38, "numnum:sum:MIN_PERMI": 1401, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 3157, "numnum:min:MAX_PERMI": 38, "numnum:sum:MAX_PERMI": 3851, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 39.15, "numnum:min:MIN_BBXMIN": 28.225, "numnum:sum:MIN_BBXMIN": 199.837669, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 39.15, "numnum:min:MAX_BBXMIN": 28.225, "numnum:sum:MAX_BBXMIN": 199.841666, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 39.325, "numnum:min:MIN_BBXMAX": 28.416667, "numnum:sum:MIN_BBXMAX": 201.432297, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 39.325, "numnum:min:MAX_BBXMAX": 28.416667, "numnum:sum:MAX_BBXMAX": 202.080757, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": -1.433333, "numnum:min:MIN_BBYMIN": -17.925, "numnum:sum:MIN_BBYMIN": -51.824999, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": -1.433333, "numnum:min:MAX_BBYMIN": -17.925, "numnum:sum:MAX_BBYMIN": -51.658331999999997, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": -1.083333, "numnum:min:MIN_BBYMAX": -17.725, "numnum:sum:MIN_BBYMAX": -49.933333000000008, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": -1.083333, "numnum:min:MAX_BBYMAX": -17.725, "numnum:sum:MAX_BBYMAX": -49.528195000000007, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 39.23918, "numnum:min:MEAN_BBXC": 28.308596, "numnum:sum:MEAN_BBXC": 200.794711, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": -1.249679, "numnum:min:MEAN_BBYC": -17.832399, "numnum:sum:MEAN_BBYC": -50.709543999999997, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 23, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 52, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 2750547, "numnum:min:GN_POP": 180541, "numnum:sum:GN_POP": 8771693, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 1724, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -3593, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 589, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1898, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -17.82, "numnum:sum:UN_LAT": -41.31, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 39.25, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 135.24, "numnum:count:POP1950": 6, "numnum:max:POP1950": 143, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 378, "numnum:count:POP1955": 6, "numnum:max:POP1955": 201, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 556, "numnum:count:POP1960": 6, "numnum:max:POP1960": 293, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 794, "numnum:count:POP1965": 6, "numnum:max:POP1965": 404, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1116, "numnum:count:POP1970": 6, "numnum:max:POP1970": 531, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1583, "numnum:count:POP1975": 6, "numnum:max:POP1975": 677, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2166, "numnum:count:POP1980": 6, "numnum:max:POP1980": 862, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2847, "numnum:count:POP1985": 6, "numnum:max:POP1985": 1090, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3550, "numnum:count:POP1990": 6, "numnum:max:POP1990": 1380, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 4500, "numnum:count:POP1995": 6, "numnum:max:POP1995": 1755, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5580, "numnum:count:POP2000": 6, "numnum:max:POP2000": 2233, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6801, "numnum:count:POP2005": 6, "numnum:max:POP2005": 2787, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 8242, "numnum:count:POP2010": 6, "numnum:max:POP2010": 3010, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 8840, "numnum:count:POP2015": 6, "numnum:max:POP2015": 3363, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9766, "numnum:count:POP2020": 6, "numnum:max:POP2020": 4052, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 11498, "numnum:count:POP2025": 6, "numnum:max:POP2025": 4881, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 13519, "numnum:count:POP2050": 6, "numnum:max:POP2050": 5871, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 15853, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.337954 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 8, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 29, "numnum:count:NATSCALE": 8, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 850, "numnum:count:LABELRANK": 8, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 40, "numnum:count:DIFFASCII": 8, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 8, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 8, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 8, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 8, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 8, "numnum:max:LATITUDE": -11.704158, "numnum:min:LATITUDE": -29.316674, "numnum:sum:LATITUDE": -199.44742300000002, "numnum:count:LONGITUDE": 8, "numnum:max:LONGITUDE": 43.240244, "numnum:min:LONGITUDE": 25.911948, "numnum:sum:LONGITUDE": 241.458149, "numnum:count:CHANGED": 8, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 20, "numnum:count:NAMEDIFF": 8, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 8, "numnum:max:POP_MAX": 3435000, "numnum:min:POP_MAX": 9782, "numnum:sum:POP_MAX": 6034417, "numnum:count:POP_MIN": 8, "numnum:max:POP_MIN": 2026469, "numnum:min:POP_MIN": 4557, "numnum:sum:POP_MIN": 4222383, "numnum:count:POP_OTHER": 8, "numnum:max:POP_OTHER": 3852246, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 6356943, "numnum:count:RANK_MAX": 8, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 5, "numnum:sum:RANK_MAX": 76, "numnum:count:RANK_MIN": 8, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 71, "numnum:count:GEONAMEID": 8, "numnum:max:GEONAMEID": 1018725, "numnum:min:GEONAMEID": 921772, "numnum:sum:GEONAMEID": 7634745, "numnum:count:LS_MATCH": 8, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 8, "numnum:count:CHECKME": 8, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 8, "numnum:max:MAX_POP10": 3887168, "numnum:min:MAX_POP10": 9782, "numnum:sum:MAX_POP10": 6537971, "numnum:count:MAX_POP20": 8, "numnum:max:MAX_POP20": 5413549, "numnum:min:MAX_POP20": 9782, "numnum:sum:MAX_POP20": 8064352, "numnum:count:MAX_POP50": 8, "numnum:max:MAX_POP50": 5413549, "numnum:min:MAX_POP50": 9782, "numnum:sum:MAX_POP50": 8064352, "numnum:count:MAX_POP300": 8, "numnum:max:MAX_POP300": 5413549, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 7597901, "numnum:count:MAX_POP310": 8, "numnum:max:MAX_POP310": 5451385, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 5451385, "numnum:count:MAX_NATSCA": 8, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 900, "numnum:count:MIN_AREAKM": 8, "numnum:max:MIN_AREAKM": 1124, "numnum:min:MIN_AREAKM": 18, "numnum:sum:MIN_AREAKM": 2050, "numnum:count:MAX_AREAKM": 8, "numnum:max:MAX_AREAKM": 1614, "numnum:min:MAX_AREAKM": 18, "numnum:sum:MAX_AREAKM": 2540, "numnum:count:MIN_AREAMI": 8, "numnum:max:MIN_AREAMI": 434, "numnum:min:MIN_AREAMI": 7, "numnum:sum:MIN_AREAMI": 791, "numnum:count:MAX_AREAMI": 8, "numnum:max:MAX_AREAMI": 623, "numnum:min:MAX_AREAMI": 7, "numnum:sum:MAX_AREAMI": 980, "numnum:count:MIN_PERKM": 8, "numnum:max:MIN_PERKM": 497, "numnum:min:MIN_PERKM": 32, "numnum:sum:MIN_PERKM": 1234, "numnum:count:MAX_PERKM": 8, "numnum:max:MAX_PERKM": 828, "numnum:min:MAX_PERKM": 32, "numnum:sum:MAX_PERKM": 1565, "numnum:count:MIN_PERMI": 8, "numnum:max:MIN_PERMI": 309, "numnum:min:MIN_PERMI": 20, "numnum:sum:MIN_PERMI": 767, "numnum:count:MAX_PERMI": 8, "numnum:max:MAX_PERMI": 514, "numnum:min:MAX_PERMI": 20, "numnum:sum:MAX_PERMI": 972, "numnum:count:MIN_BBXMIN": 8, "numnum:max:MIN_BBXMIN": 43.225, "numnum:min:MIN_BBXMIN": 25.858333, "numnum:sum:MIN_BBXMIN": 240.766666, "numnum:count:MAX_BBXMIN": 8, "numnum:max:MAX_BBXMIN": 43.225, "numnum:min:MAX_BBXMIN": 25.858333, "numnum:sum:MAX_BBXMIN": 240.766666, "numnum:count:MIN_BBXMAX": 8, "numnum:max:MIN_BBXMAX": 43.291667, "numnum:min:MIN_BBXMAX": 25.991667, "numnum:sum:MIN_BBXMAX": 242.18535999999998, "numnum:count:MAX_BBXMAX": 8, "numnum:max:MAX_BBXMAX": 43.291667, "numnum:min:MAX_BBXMAX": 25.991667, "numnum:sum:MAX_BBXMAX": 242.48333399999999, "numnum:count:MIN_BBYMIN": 8, "numnum:max:MIN_BBYMIN": -11.758333, "numnum:min:MIN_BBYMIN": -29.525, "numnum:sum:MIN_BBYMIN": -200.283333, "numnum:count:MAX_BBYMIN": 8, "numnum:max:MAX_BBYMIN": -11.758333, "numnum:min:MAX_BBYMIN": -29.525, "numnum:sum:MAX_BBYMIN": -200.283333, "numnum:count:MIN_BBYMAX": 8, "numnum:max:MIN_BBYMAX": -11.475, "numnum:min:MIN_BBYMAX": -29.241667, "numnum:sum:MIN_BBYMAX": -198.68333400000004, "numnum:count:MAX_BBYMAX": 8, "numnum:max:MAX_BBYMAX": -11.475, "numnum:min:MAX_BBYMAX": -29.241667, "numnum:sum:MAX_BBYMAX": -198.63333400000003, "numnum:count:MEAN_BBXC": 8, "numnum:max:MEAN_BBXC": 43.264352, "numnum:min:MEAN_BBXC": 25.925091, "numnum:sum:MEAN_BBXC": 241.56208199999998, "numnum:count:MEAN_BBYC": 8, "numnum:max:MEAN_BBYC": -11.639931, "numnum:min:MEAN_BBYC": -29.350222, "numnum:sum:MEAN_BBYC": -199.46375799999999, "numnum:count:COMPARE": 8, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 8, "numnum:max:ADMIN1_COD": 14, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 41, "numnum:count:GN_POP": 8, "numnum:max:GN_POP": 2026469, "numnum:min:GN_POP": 4557, "numnum:sum:GN_POP": 4559384, "numnum:count:ELEVATION": 8, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 8, "numnum:max:GTOPO30": 1775, "numnum:min:GTOPO30": 35, "numnum:sum:GTOPO30": 8785, "numnum:count:UN_FID": 8, "numnum:max:UN_FID": 460, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 918, "numnum:count:UN_LAT": 8, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -26.17, "numnum:sum:UN_LAT": -51.900000000000009, "numnum:count:UN_LONG": 8, "numnum:max:UN_LONG": 28.21, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 56.21, "numnum:count:POP1950": 8, "numnum:max:POP1950": 900, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1175, "numnum:count:POP1955": 8, "numnum:max:POP1955": 1016, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1356, "numnum:count:POP1960": 8, "numnum:max:POP1960": 1147, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1566, "numnum:count:POP1965": 8, "numnum:max:POP1965": 1288, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1776, "numnum:count:POP1970": 8, "numnum:max:POP1970": 1444, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2009, "numnum:count:POP1975": 8, "numnum:max:POP1975": 1547, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2171, "numnum:count:POP1980": 8, "numnum:max:POP1980": 1656, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2344, "numnum:count:POP1985": 8, "numnum:max:POP1985": 1773, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2536, "numnum:count:POP1990": 8, "numnum:max:POP1990": 1898, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2809, "numnum:count:POP1995": 8, "numnum:max:POP1995": 2265, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3216, "numnum:count:POP2000": 8, "numnum:max:POP2000": 2732, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3816, "numnum:count:POP2005": 8, "numnum:max:POP2005": 3258, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4531, "numnum:count:POP2010": 8, "numnum:max:POP2010": 3435, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4773, "numnum:count:POP2015": 8, "numnum:max:POP2015": 3618, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 5027, "numnum:count:POP2020": 8, "numnum:max:POP2020": 3785, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5267, "numnum:count:POP2025": 8, "numnum:max:POP2025": 3916, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5460, "numnum:count:POP2050": 8, "numnum:max:POP2050": 4041, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5645, "accum": 8, "numnum:count:accum2": 8, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 8, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 22, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 880, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 32, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": -11.704158, "numnum:min:LATITUDE": -29.316674, "numnum:sum:LATITUDE": -160.6474, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 43.240244, "numnum:min:LONGITUDE": 25.911948, "numnum:sum:LONGITUDE": 212.908119, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 3435000, "numnum:min:POP_MAX": 128698, "numnum:sum:POP_MAX": 6581247, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 2026469, "numnum:min:POP_MIN": 42872, "numnum:sum:POP_MIN": 4788358, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 3852246, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 7328352, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 74, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 70, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 1018725, "numnum:min:GEONAMEID": 921772, "numnum:sum:GEONAMEID": 6692679, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 3887168, "numnum:min:MAX_POP10": 128698, "numnum:sum:MAX_POP10": 7403215, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 5413549, "numnum:min:MAX_POP20": 128698, "numnum:sum:MAX_POP20": 8876953, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 5413549, "numnum:min:MAX_POP50": 128698, "numnum:sum:MAX_POP50": 8953902, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 5413549, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 8497233, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 5451385, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 5451385, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 850, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 1124, "numnum:min:MIN_AREAKM": 60, "numnum:sum:MIN_AREAKM": 3104, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 1614, "numnum:min:MAX_AREAKM": 60, "numnum:sum:MAX_AREAKM": 3867, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 434, "numnum:min:MIN_AREAMI": 23, "numnum:sum:MIN_AREAMI": 1198, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 623, "numnum:min:MAX_AREAMI": 23, "numnum:sum:MAX_AREAMI": 1492, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 1360, "numnum:min:MIN_PERKM": 59, "numnum:sum:MIN_PERKM": 2525, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 1658, "numnum:min:MAX_PERKM": 59, "numnum:sum:MAX_PERKM": 3154, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 845, "numnum:min:MIN_PERMI": 37, "numnum:sum:MIN_PERMI": 1569, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 1030, "numnum:min:MAX_PERMI": 37, "numnum:sum:MAX_PERMI": 1959, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 43.225, "numnum:min:MIN_BBXMIN": 25.858333, "numnum:sum:MIN_BBXMIN": 211.99166599999999, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 43.225, "numnum:min:MAX_BBXMIN": 25.858333, "numnum:sum:MAX_BBXMIN": 211.99166599999999, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 43.291667, "numnum:min:MIN_BBXMAX": 25.991667, "numnum:sum:MIN_BBXMAX": 213.98144900000004, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 43.291667, "numnum:min:MAX_BBXMAX": 25.991667, "numnum:sum:MAX_BBXMAX": 214.70000100000005, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": -11.758333, "numnum:min:MIN_BBYMIN": -29.525, "numnum:sum:MIN_BBYMIN": -161.908333, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": -11.758333, "numnum:min:MAX_BBYMIN": -29.525, "numnum:sum:MAX_BBYMIN": -161.883333, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": -11.475, "numnum:min:MIN_BBYMAX": -29.241667, "numnum:sum:MIN_BBYMAX": -159.70000100000002, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": -11.475, "numnum:min:MAX_BBYMAX": -29.241667, "numnum:sum:MAX_BBYMAX": -159.60000100000003, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 43.264352, "numnum:min:MEAN_BBXC": 25.925091, "numnum:sum:MEAN_BBXC": 213.118946, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": -11.639931, "numnum:min:MEAN_BBYC": -29.350222, "numnum:sum:MEAN_BBYC": -160.74624200000003, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 14, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 51, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 2026469, "numnum:min:GN_POP": 42872, "numnum:sum:GN_POP": 5125359, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 1775, "numnum:min:GTOPO30": 35, "numnum:sum:GTOPO30": 8003, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 460, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 918, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -26.17, "numnum:sum:UN_LAT": -51.900000000000009, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 28.21, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 56.21, "numnum:count:POP1950": 7, "numnum:max:POP1950": 900, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1175, "numnum:count:POP1955": 7, "numnum:max:POP1955": 1016, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1356, "numnum:count:POP1960": 7, "numnum:max:POP1960": 1147, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1566, "numnum:count:POP1965": 7, "numnum:max:POP1965": 1288, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1776, "numnum:count:POP1970": 7, "numnum:max:POP1970": 1444, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2009, "numnum:count:POP1975": 7, "numnum:max:POP1975": 1547, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2171, "numnum:count:POP1980": 7, "numnum:max:POP1980": 1656, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2344, "numnum:count:POP1985": 7, "numnum:max:POP1985": 1773, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2536, "numnum:count:POP1990": 7, "numnum:max:POP1990": 1898, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2809, "numnum:count:POP1995": 7, "numnum:max:POP1995": 2265, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3216, "numnum:count:POP2000": 7, "numnum:max:POP2000": 2732, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3816, "numnum:count:POP2005": 7, "numnum:max:POP2005": 3258, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4531, "numnum:count:POP2010": 7, "numnum:max:POP2010": 3435, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4773, "numnum:count:POP2015": 7, "numnum:max:POP2015": 3618, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 5027, "numnum:count:POP2020": 7, "numnum:max:POP2020": 3785, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5267, "numnum:count:POP2025": 7, "numnum:max:POP2025": 3916, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5460, "numnum:count:POP2050": 7, "numnum:max:POP2050": 4041, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5645, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 33.750000, -14.008696 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560, "accum2": 1, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 13, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 980, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": -4.616632, "numnum:min:LATITUDE": -25.955277, "numnum:sum:LATITUDE": -75.829603, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 106.829438, "numnum:min:LONGITUDE": 32.589163, "numnum:sum:LONGITUDE": 299.885209, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 9125000, "numnum:min:POP_MAX": 33576, "numnum:sum:POP_MAX": 12897067, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 8540121, "numnum:min:POP_MIN": 22881, "numnum:sum:POP_MIN": 11294464, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 9129613, "numnum:min:POP_OTHER": 33737, "numnum:sum:POP_OTHER": 12678075, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 55, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 53, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 1642911, "numnum:min:GEONAMEID": 241131, "numnum:sum:GEONAMEID": 4929788, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 9664972, "numnum:min:MAX_POP10": 33576, "numnum:sum:MAX_POP10": 13087552, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 15074060, "numnum:min:MAX_POP20": 33576, "numnum:sum:MAX_POP20": 19254510, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 22017580, "numnum:min:MAX_POP50": 33576, "numnum:sum:MAX_POP50": 26196788, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 22031364, "numnum:min:MAX_POP300": 33576, "numnum:sum:MAX_POP300": 26211814, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 44354170, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 44354170, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 1303, "numnum:min:MIN_AREAKM": 15, "numnum:sum:MIN_AREAKM": 2275, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 19435, "numnum:min:MAX_AREAKM": 15, "numnum:sum:MAX_AREAKM": 20615, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 503, "numnum:min:MIN_AREAMI": 6, "numnum:sum:MIN_AREAMI": 878, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 7504, "numnum:min:MAX_AREAMI": 6, "numnum:sum:MAX_AREAMI": 7960, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 699, "numnum:min:MIN_PERKM": 26, "numnum:sum:MIN_PERKM": 1288, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 10224, "numnum:min:MAX_PERKM": 26, "numnum:sum:MAX_PERKM": 11337, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 434, "numnum:min:MIN_PERMI": 16, "numnum:sum:MIN_PERMI": 800, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 6353, "numnum:min:MAX_PERMI": 16, "numnum:sum:MAX_PERMI": 7044, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 105.891667, "numnum:min:MIN_BBXMIN": 32.425, "numnum:sum:MIN_BBXMIN": 298.391667, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 106.473854, "numnum:min:MAX_BBXMIN": 32.506986, "numnum:sum:MAX_BBXMIN": 299.05584000000007, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 106.932506, "numnum:min:MIN_BBXMAX": 32.65, "numnum:sum:MIN_BBXMAX": 300.224173, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 109.808333, "numnum:min:MAX_BBXMAX": 32.65, "numnum:sum:MAX_BBXMAX": 303.133333, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": -4.65, "numnum:min:MIN_BBYMIN": -25.991667, "numnum:sum:MIN_BBYMIN": -77.858334, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": -4.65, "numnum:min:MAX_BBYMIN": -25.983333, "numnum:sum:MAX_BBYMIN": -76.4312, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": -4.6, "numnum:min:MIN_BBYMAX": -25.75, "numnum:sum:MIN_BBYMAX": -75.1, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": -4.6, "numnum:min:MAX_BBYMAX": -25.75, "numnum:sum:MAX_BBYMAX": -74.958333, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 106.989399, "numnum:min:MEAN_BBXC": 32.543778, "numnum:sum:MEAN_BBXC": 299.951495, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": -4.626389, "numnum:min:MEAN_BBYC": -25.880831, "numnum:sum:MEAN_BBYC": -75.91835, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 18, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 38, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 8540121, "numnum:min:GN_POP": 22881, "numnum:sum:GN_POP": 11301274, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 1289, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8528, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 376, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1001, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -25.96, "numnum:sum:UN_LAT": -51.019999999999999, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 106.8, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 186.89, "numnum:count:POP1950": 5, "numnum:max:POP1950": 1452, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1721, "numnum:count:POP1955": 5, "numnum:max:POP1955": 1972, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2290, "numnum:count:POP1960": 5, "numnum:max:POP1960": 2679, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 3112, "numnum:count:POP1965": 5, "numnum:max:POP1965": 3297, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3854, "numnum:count:POP1970": 5, "numnum:max:POP1970": 3915, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 4649, "numnum:count:POP1975": 5, "numnum:max:POP1975": 4813, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5723, "numnum:count:POP1980": 5, "numnum:max:POP1980": 5984, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 7114, "numnum:count:POP1985": 5, "numnum:max:POP1985": 7009, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 8404, "numnum:count:POP1990": 5, "numnum:max:POP1990": 8175, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 9899, "numnum:count:POP1995": 5, "numnum:max:POP1995": 8322, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 10412, "numnum:count:POP2000": 5, "numnum:max:POP2000": 8390, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 10847, "numnum:count:POP2005": 5, "numnum:max:POP2005": 8843, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 11767, "numnum:count:POP2010": 5, "numnum:max:POP2010": 9125, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 12268, "numnum:count:POP2015": 5, "numnum:max:POP2015": 9703, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 13201, "numnum:count:POP2020": 5, "numnum:max:POP2020": 10792, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 14942, "numnum:count:POP2025": 5, "numnum:max:POP2025": 11689, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 16566, "numnum:count:POP2050": 5, "numnum:max:POP2050": 12363, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 18041, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 4, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 50, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 80, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -26.316651, "numnum:min:LATITUDE": -26.466667, "numnum:sum:LATITUDE": -52.783318, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 31.199997, "numnum:min:LONGITUDE": 31.133335, "numnum:sum:LONGITUDE": 62.333332, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 90138, "numnum:min:POP_MAX": 9782, "numnum:sum:POP_MAX": 99920, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 76218, "numnum:min:POP_MIN": 4557, "numnum:sum:POP_MIN": 80775, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 89979, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 89979, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 8, "numnum:min:RANK_MAX": 5, "numnum:sum:RANK_MAX": 13, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 8, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 12, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 935048, "numnum:min:GEONAMEID": 934985, "numnum:sum:GEONAMEID": 1870033, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 90138, "numnum:min:MAX_POP10": 9782, "numnum:sum:MAX_POP10": 99920, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 90138, "numnum:min:MAX_POP20": 9782, "numnum:sum:MAX_POP20": 99920, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 90138, "numnum:min:MAX_POP50": 9782, "numnum:sum:MAX_POP50": 99920, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 90138, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 90138, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 150, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 28, "numnum:min:MIN_AREAKM": 18, "numnum:sum:MIN_AREAKM": 46, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 28, "numnum:min:MAX_AREAKM": 18, "numnum:sum:MAX_AREAKM": 46, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 11, "numnum:min:MIN_AREAMI": 7, "numnum:sum:MIN_AREAMI": 18, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 11, "numnum:min:MAX_AREAMI": 7, "numnum:sum:MAX_AREAMI": 18, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 37, "numnum:min:MIN_PERKM": 32, "numnum:sum:MIN_PERKM": 69, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 37, "numnum:min:MAX_PERKM": 32, "numnum:sum:MAX_PERKM": 69, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 23, "numnum:min:MIN_PERMI": 20, "numnum:sum:MIN_PERMI": 43, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 23, "numnum:min:MAX_PERMI": 20, "numnum:sum:MAX_PERMI": 43, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 31.183333, "numnum:min:MIN_BBXMIN": 31.1, "numnum:sum:MIN_BBXMIN": 62.283333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 31.183333, "numnum:min:MAX_BBXMIN": 31.1, "numnum:sum:MAX_BBXMIN": 62.283333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 31.233333, "numnum:min:MIN_BBXMAX": 31.158333, "numnum:sum:MIN_BBXMAX": 62.391666, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 31.233333, "numnum:min:MAX_BBXMAX": 31.158333, "numnum:sum:MAX_BBXMAX": 62.391666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -26.35, "numnum:min:MIN_BBYMIN": -26.458333, "numnum:sum:MIN_BBYMIN": -52.808333000000008, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -26.35, "numnum:min:MAX_BBYMIN": -26.458333, "numnum:sum:MAX_BBYMIN": -52.808333000000008, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -26.283333, "numnum:min:MIN_BBYMAX": -26.391667, "numnum:sum:MIN_BBYMAX": -52.675, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -26.283333, "numnum:min:MAX_BBYMAX": -26.391667, "numnum:sum:MAX_BBYMAX": -52.675, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 31.201993, "numnum:min:MEAN_BBXC": 31.129842, "numnum:sum:MEAN_BBXC": 62.331835, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -26.315428, "numnum:min:MEAN_BBYC": -26.430254, "numnum:sum:MEAN_BBYC": -52.745682, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 1, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 1, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 76218, "numnum:min:GN_POP": 4557, "numnum:sum:GN_POP": 80775, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1156, "numnum:min:GTOPO30": 651, "numnum:sum:GTOPO30": 1807, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.352498 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1230, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 25, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": -8.559388, "numnum:min:LATITUDE": -37.820031, "numnum:sum:LATITUDE": -125.047167, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 151.18518, "numnum:min:LONGITUDE": 125.579456, "numnum:sum:LONGITUDE": 718.0611820000002, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 4630000, "numnum:min:POP_MAX": 234331, "numnum:sum:POP_MAX": 9645764, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 3641422, "numnum:min:POP_MIN": 93625, "numnum:sum:POP_MIN": 4413778, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 2669348, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 4781159, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 54, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 49, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 2172517, "numnum:min:GEONAMEID": 1645457, "numnum:sum:GEONAMEID": 10211987, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 2731457, "numnum:min:MAX_POP10": 55154, "numnum:sum:MAX_POP10": 5176156, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 2731457, "numnum:min:MAX_POP20": 55154, "numnum:sum:MAX_POP20": 5827678, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 3164008, "numnum:min:MAX_POP50": 55154, "numnum:sum:MAX_POP50": 6279382, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 3164008, "numnum:min:MAX_POP300": 55154, "numnum:sum:MAX_POP300": 6279382, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 3164008, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3164008, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 1078, "numnum:min:MIN_AREAKM": 27, "numnum:sum:MIN_AREAKM": 2430, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 1554, "numnum:min:MAX_AREAKM": 27, "numnum:sum:MAX_AREAKM": 3330, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 416, "numnum:min:MIN_AREAMI": 10, "numnum:sum:MIN_AREAMI": 938, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 600, "numnum:min:MAX_AREAMI": 10, "numnum:sum:MAX_AREAMI": 1286, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 468, "numnum:min:MIN_PERKM": 31, "numnum:sum:MIN_PERKM": 1126, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 843, "numnum:min:MAX_PERKM": 31, "numnum:sum:MAX_PERKM": 1885, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 291, "numnum:min:MIN_PERMI": 19, "numnum:sum:MIN_PERMI": 700, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 524, "numnum:min:MAX_PERMI": 19, "numnum:sum:MAX_PERMI": 1171, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 150.533333, "numnum:min:MIN_BBXMIN": 125.516667, "numnum:sum:MIN_BBXMIN": 716.8, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 150.831963, "numnum:min:MAX_BBXMIN": 125.516667, "numnum:sum:MAX_BBXMIN": 717.218934, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 151.308333, "numnum:min:MIN_BBXMAX": 125.608333, "numnum:sum:MIN_BBXMAX": 718.685765, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 151.341667, "numnum:min:MAX_BBXMAX": 125.608333, "numnum:sum:MAX_BBXMAX": 718.791667, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": -8.583333, "numnum:min:MIN_BBYMIN": -38.208333, "numnum:sum:MIN_BBYMIN": -125.874999, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": -8.583333, "numnum:min:MAX_BBYMIN": -38.0105, "numnum:sum:MAX_BBYMIN": -125.649597, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": -8.541667, "numnum:min:MIN_BBYMAX": -37.589905, "numnum:sum:MIN_BBYMAX": -124.31490500000001, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": -8.541667, "numnum:min:MAX_BBYMAX": -37.566667, "numnum:sum:MAX_BBYMAX": -124.25, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 151.051024, "numnum:min:MEAN_BBXC": 125.565104, "numnum:sum:MEAN_BBXC": 717.949433, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": -8.559115, "numnum:min:MEAN_BBYC": -37.835257, "numnum:sum:MEAN_BBYC": -124.98421400000001, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 20, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 21, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 4394576, "numnum:min:GN_POP": 150000, "numnum:sum:GN_POP": 8886215, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 609, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 668, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 276, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 550, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -37.85, "numnum:sum:UN_LAT": -71.73, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 151.02, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 296.09000000000006, "numnum:count:POP1950": 5, "numnum:max:POP1950": 1690, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 3022, "numnum:count:POP1955": 5, "numnum:max:POP1955": 1906, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3480, "numnum:count:POP1960": 5, "numnum:max:POP1960": 2135, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 3986, "numnum:count:POP1965": 5, "numnum:max:POP1965": 2390, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 4458, "numnum:count:POP1970": 5, "numnum:max:POP1970": 2667, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 5001, "numnum:count:POP1975": 5, "numnum:max:POP1975": 2960, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5521, "numnum:count:POP1980": 5, "numnum:max:POP1980": 3227, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5992, "numnum:count:POP1985": 5, "numnum:max:POP1985": 3432, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 6367, "numnum:count:POP1990": 5, "numnum:max:POP1990": 3632, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 6749, "numnum:count:POP1995": 5, "numnum:max:POP1995": 3839, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 7096, "numnum:count:POP2000": 5, "numnum:max:POP2000": 4078, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 7511, "numnum:count:POP2005": 5, "numnum:max:POP2005": 4260, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 7901, "numnum:count:POP2010": 5, "numnum:max:POP2010": 4327, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 8055, "numnum:count:POP2015": 5, "numnum:max:POP2015": 4427, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 8278, "numnum:count:POP2020": 5, "numnum:max:POP2020": 4582, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 8595, "numnum:count:POP2025": 5, "numnum:max:POP2025": 4716, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 8853, "numnum:count:POP2050": 5, "numnum:max:POP2050": 4826, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 9064, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560, "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 19, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1200, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 29, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 7, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": -4.616632, "numnum:min:LATITUDE": -25.955277, "numnum:sum:LATITUDE": -93.853699, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 147.192504, "numnum:min:LONGITUDE": 32.589163, "numnum:sum:LONGITUDE": 572.657169, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 9125000, "numnum:min:POP_MAX": 33576, "numnum:sum:POP_MAX": 13415131, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 8540121, "numnum:min:POP_MIN": 22881, "numnum:sum:POP_MIN": 11739163, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 9129613, "numnum:min:POP_OTHER": 33737, "numnum:sum:POP_OTHER": 12984533, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 75, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 72, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 2088122, "numnum:min:GEONAMEID": 241131, "numnum:sum:GEONAMEID": 8663367, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 9664972, "numnum:min:MAX_POP10": 33576, "numnum:sum:MAX_POP10": 13393842, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 15074060, "numnum:min:MAX_POP20": 33576, "numnum:sum:MAX_POP20": 19560800, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 22017580, "numnum:min:MAX_POP50": 33576, "numnum:sum:MAX_POP50": 26503078, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 22031364, "numnum:min:MAX_POP300": 33576, "numnum:sum:MAX_POP300": 26518104, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 44354170, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 44354170, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 900, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 1303, "numnum:min:MIN_AREAKM": 15, "numnum:sum:MIN_AREAKM": 2391, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 19435, "numnum:min:MAX_AREAKM": 15, "numnum:sum:MAX_AREAKM": 20731, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 503, "numnum:min:MIN_AREAMI": 6, "numnum:sum:MIN_AREAMI": 923, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 7504, "numnum:min:MAX_AREAMI": 6, "numnum:sum:MAX_AREAMI": 8005, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 699, "numnum:min:MIN_PERKM": 26, "numnum:sum:MIN_PERKM": 1411, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 10224, "numnum:min:MAX_PERKM": 26, "numnum:sum:MAX_PERKM": 11460, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 434, "numnum:min:MIN_PERMI": 16, "numnum:sum:MIN_PERMI": 876, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 6353, "numnum:min:MAX_PERMI": 16, "numnum:sum:MAX_PERMI": 7120, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 147.141667, "numnum:min:MIN_BBXMIN": 32.425, "numnum:sum:MIN_BBXMIN": 571.050001, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 147.141667, "numnum:min:MAX_BBXMIN": 32.506986, "numnum:sum:MAX_BBXMIN": 571.7141740000001, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 147.241667, "numnum:min:MIN_BBXMAX": 32.65, "numnum:sum:MIN_BBXMAX": 573.074173, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 147.241667, "numnum:min:MAX_BBXMAX": 32.65, "numnum:sum:MAX_BBXMAX": 575.983333, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": -4.65, "numnum:min:MIN_BBYMIN": -25.991667, "numnum:sum:MIN_BBYMIN": -95.94999999999999, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": -4.65, "numnum:min:MAX_BBYMIN": -25.983333, "numnum:sum:MAX_BBYMIN": -94.522866, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": -4.6, "numnum:min:MIN_BBYMAX": -25.75, "numnum:sum:MIN_BBYMAX": -93, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": -4.6, "numnum:min:MAX_BBYMAX": -25.75, "numnum:sum:MAX_BBYMAX": -92.858333, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 147.185377, "numnum:min:MEAN_BBXC": 32.543778, "numnum:sum:MEAN_BBXC": 572.7019760000001, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": -4.626389, "numnum:min:MEAN_BBYC": -25.880831, "numnum:sum:MEAN_BBYC": -93.91095600000002, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 20, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 58, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 8540121, "numnum:min:GN_POP": 22881, "numnum:sum:GN_POP": 11735007, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 1289, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8469, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 376, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1001, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -25.96, "numnum:sum:UN_LAT": -51.019999999999999, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 106.8, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 186.89, "numnum:count:POP1950": 7, "numnum:max:POP1950": 1452, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1721, "numnum:count:POP1955": 7, "numnum:max:POP1955": 1972, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2290, "numnum:count:POP1960": 7, "numnum:max:POP1960": 2679, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 3112, "numnum:count:POP1965": 7, "numnum:max:POP1965": 3297, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3854, "numnum:count:POP1970": 7, "numnum:max:POP1970": 3915, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 4649, "numnum:count:POP1975": 7, "numnum:max:POP1975": 4813, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5723, "numnum:count:POP1980": 7, "numnum:max:POP1980": 5984, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 7114, "numnum:count:POP1985": 7, "numnum:max:POP1985": 7009, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 8404, "numnum:count:POP1990": 7, "numnum:max:POP1990": 8175, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 9899, "numnum:count:POP1995": 7, "numnum:max:POP1995": 8322, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 10412, "numnum:count:POP2000": 7, "numnum:max:POP2000": 8390, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 10847, "numnum:count:POP2005": 7, "numnum:max:POP2005": 8843, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 11767, "numnum:count:POP2010": 7, "numnum:max:POP2010": 9125, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 12268, "numnum:count:POP2015": 7, "numnum:max:POP2015": 9703, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 13201, "numnum:count:POP2020": 7, "numnum:max:POP2020": 10792, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 14942, "numnum:count:POP2025": 7, "numnum:max:POP2025": 11689, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 16566, "numnum:count:POP2050": 7, "numnum:max:POP2050": 12363, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 18041, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 19, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 770, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 40, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": -8.516652, "numnum:min:LATITUDE": -41.299974, "numnum:sum:LATITUDE": -131.97099899999999, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 179.216647, "numnum:min:LONGITUDE": 159.949766, "numnum:sum:LONGITUDE": 1035.473016, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 1245000, "numnum:min:POP_MAX": 4749, "numnum:sum:POP_MAX": 1938916, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 274020, "numnum:min:POP_MIN": 4749, "numnum:sum:POP_MIN": 658439, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 243794, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 468418, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 4, "numnum:sum:RANK_MAX": 50, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 46, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 2198148, "numnum:min:GEONAMEID": 2108502, "numnum:sum:GEONAMEID": 12890116, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 0, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 274020, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 645444, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 354233, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 725657, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 350364, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 721788, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 638000, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 1009424, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 0, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 169, "numnum:min:MIN_AREAKM": 0, "numnum:sum:MIN_AREAKM": 324, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 399, "numnum:min:MAX_AREAKM": 0, "numnum:sum:MAX_AREAKM": 554, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 65, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 125, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 154, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 214, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 105, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 289, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 266, "numnum:min:MAX_PERKM": 0, "numnum:sum:MAX_PERKM": 450, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 65, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 180, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 166, "numnum:min:MAX_PERMI": 0, "numnum:sum:MAX_PERMI": 281, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 178.425, "numnum:min:MIN_BBXMIN": 0, "numnum:sum:MIN_BBXMIN": 855.95, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 178.425, "numnum:min:MAX_BBXMIN": 0, "numnum:sum:MAX_BBXMIN": 856.0241500000001, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 178.533333, "numnum:min:MIN_BBXMAX": 0, "numnum:sum:MIN_BBXMAX": 856.6, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 178.533333, "numnum:min:MAX_BBXMAX": 0, "numnum:sum:MAX_BBXMAX": 856.7, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 0, "numnum:min:MIN_BBYMIN": -41.35, "numnum:sum:MIN_BBYMIN": -123.808334, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 0, "numnum:min:MAX_BBYMIN": -41.35, "numnum:sum:MAX_BBYMIN": -123.681625, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 0, "numnum:min:MIN_BBYMAX": -41.2, "numnum:sum:MIN_BBYMAX": -123.166666, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 0, "numnum:min:MAX_BBYMAX": -41.2, "numnum:sum:MAX_BBYMAX": -123.141666, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 178.472885, "numnum:min:MEAN_BBXC": 0, "numnum:sum:MEAN_BBXC": 856.295215, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 0, "numnum:min:MEAN_BBYC": -41.285539, "numnum:sum:MEAN_BBYC": -123.44717299999999, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 417910, "numnum:min:GN_POP": 4749, "numnum:sum:GN_POP": 597652, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 304, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -19649, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 381, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 381, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -36.9, "numnum:sum:UN_LAT": -36.9, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 174.76, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 174.76, "numnum:count:POP1950": 6, "numnum:max:POP1950": 319, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 319, "numnum:count:POP1955": 6, "numnum:max:POP1955": 387, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 387, "numnum:count:POP1960": 6, "numnum:max:POP1960": 440, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 440, "numnum:count:POP1965": 6, "numnum:max:POP1965": 532, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 532, "numnum:count:POP1970": 6, "numnum:max:POP1970": 635, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 635, "numnum:count:POP1975": 6, "numnum:max:POP1975": 729, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 729, "numnum:count:POP1980": 6, "numnum:max:POP1980": 774, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 774, "numnum:count:POP1985": 6, "numnum:max:POP1985": 812, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 812, "numnum:count:POP1990": 6, "numnum:max:POP1990": 870, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 870, "numnum:count:POP1995": 6, "numnum:max:POP1995": 976, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 976, "numnum:count:POP2000": 6, "numnum:max:POP2000": 1063, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1063, "numnum:count:POP2005": 6, "numnum:max:POP2005": 1189, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1189, "numnum:count:POP2010": 6, "numnum:max:POP2010": 1245, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1245, "numnum:count:POP2015": 6, "numnum:max:POP2015": 1321, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1321, "numnum:count:POP2020": 6, "numnum:max:POP2020": 1398, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1398, "numnum:count:POP2025": 6, "numnum:max:POP2025": 1441, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1441, "numnum:count:POP2050": 6, "numnum:max:POP2050": 1475, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1475, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1010, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 3, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -33.920011, "numnum:min:LATITUDE": -37.820031, "numnum:sum:LATITUDE": -107.023071, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 151.18518, "numnum:min:LONGITUDE": 144.975016, "numnum:sum:LONGITUDE": 445.28922200000008, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 4630000, "numnum:min:POP_MAX": 327700, "numnum:sum:POP_MAX": 9127700, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 3641422, "numnum:min:POP_MIN": 93625, "numnum:sum:POP_MIN": 3969079, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2669348, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 4474701, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 30, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2172517, "numnum:min:GEONAMEID": 2147714, "numnum:sum:GEONAMEID": 6478408, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2731457, "numnum:min:MAX_POP10": 234032, "numnum:sum:MAX_POP10": 4869866, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2731457, "numnum:min:MAX_POP20": 244896, "numnum:sum:MAX_POP20": 5521388, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3164008, "numnum:min:MAX_POP50": 244896, "numnum:sum:MAX_POP50": 5973092, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3164008, "numnum:min:MAX_POP300": 244896, "numnum:sum:MAX_POP300": 5973092, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 3164008, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3164008, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1078, "numnum:min:MIN_AREAKM": 226, "numnum:sum:MIN_AREAKM": 2314, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1554, "numnum:min:MAX_AREAKM": 251, "numnum:sum:MAX_AREAKM": 3214, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 416, "numnum:min:MIN_AREAMI": 87, "numnum:sum:MIN_AREAMI": 893, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 600, "numnum:min:MAX_AREAMI": 97, "numnum:sum:MAX_AREAMI": 1241, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 468, "numnum:min:MIN_PERKM": 175, "numnum:sum:MIN_PERKM": 1003, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 843, "numnum:min:MAX_PERKM": 202, "numnum:sum:MAX_PERKM": 1762, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 291, "numnum:min:MIN_PERMI": 109, "numnum:sum:MIN_PERMI": 624, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 524, "numnum:min:MAX_PERMI": 126, "numnum:sum:MAX_PERMI": 1095, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 150.533333, "numnum:min:MIN_BBXMIN": 144.608333, "numnum:sum:MIN_BBXMIN": 444.141666, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 150.831963, "numnum:min:MAX_BBXMIN": 144.728637, "numnum:sum:MAX_BBXMIN": 444.5606, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 151.308333, "numnum:min:MIN_BBXMAX": 145.327432, "numnum:sum:MIN_BBXMAX": 445.835765, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 151.341667, "numnum:min:MAX_BBXMAX": 145.4, "numnum:sum:MAX_BBXMAX": 445.941667, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -34.091667, "numnum:min:MIN_BBYMIN": -38.208333, "numnum:sum:MIN_BBYMIN": -107.78333300000002, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -34.091667, "numnum:min:MAX_BBYMIN": -38.0105, "numnum:sum:MAX_BBYMIN": -107.55793100000001, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -33.641667, "numnum:min:MIN_BBYMAX": -37.589905, "numnum:sum:MIN_BBYMAX": -106.414905, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -33.6, "numnum:min:MAX_BBYMAX": -37.566667, "numnum:sum:MAX_BBYMAX": -106.35, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 151.051024, "numnum:min:MEAN_BBXC": 145.053821, "numnum:sum:MEAN_BBXC": 445.198952, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -33.846724, "numnum:min:MEAN_BBYC": -37.835257, "numnum:sum:MEAN_BBYC": -106.99160800000002, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 1, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 1, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 4394576, "numnum:min:GN_POP": 327700, "numnum:sum:GN_POP": 8452482, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 609, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 609, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 276, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 550, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -37.85, "numnum:sum:UN_LAT": -71.73, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 151.02, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 296.09000000000006, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1690, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 3022, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1906, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3480, "numnum:count:POP1960": 3, "numnum:max:POP1960": 2135, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 3986, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2390, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 4458, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2667, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 5001, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2960, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5521, "numnum:count:POP1980": 3, "numnum:max:POP1980": 3227, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5992, "numnum:count:POP1985": 3, "numnum:max:POP1985": 3432, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 6367, "numnum:count:POP1990": 3, "numnum:max:POP1990": 3632, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 6749, "numnum:count:POP1995": 3, "numnum:max:POP1995": 3839, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 7096, "numnum:count:POP2000": 3, "numnum:max:POP2000": 4078, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 7511, "numnum:count:POP2005": 3, "numnum:max:POP2005": 4260, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 7901, "numnum:count:POP2010": 3, "numnum:max:POP2010": 4327, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 8055, "numnum:count:POP2015": 3, "numnum:max:POP2015": 4427, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 8278, "numnum:count:POP2020": 3, "numnum:max:POP2020": 4582, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 8595, "numnum:count:POP2025": 3, "numnum:max:POP2025": 4716, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 8853, "numnum:count:POP2050": 3, "numnum:max:POP2050": 4826, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 9064, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ 145.019531, -37.788081 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 19, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 770, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 40, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": -8.516652, "numnum:min:LATITUDE": -41.299974, "numnum:sum:LATITUDE": -131.97099899999999, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 179.216647, "numnum:min:LONGITUDE": 159.949766, "numnum:sum:LONGITUDE": 1035.473016, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 1245000, "numnum:min:POP_MAX": 4749, "numnum:sum:POP_MAX": 1938916, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 274020, "numnum:min:POP_MIN": 4749, "numnum:sum:POP_MIN": 658439, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 243794, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 468418, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 4, "numnum:sum:RANK_MAX": 50, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 46, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 2198148, "numnum:min:GEONAMEID": 2108502, "numnum:sum:GEONAMEID": 12890116, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 0, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 274020, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 645444, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 354233, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 725657, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 350364, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 721788, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 638000, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 1009424, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 0, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 169, "numnum:min:MIN_AREAKM": 0, "numnum:sum:MIN_AREAKM": 324, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 399, "numnum:min:MAX_AREAKM": 0, "numnum:sum:MAX_AREAKM": 554, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 65, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 125, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 154, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 214, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 105, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 289, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 266, "numnum:min:MAX_PERKM": 0, "numnum:sum:MAX_PERKM": 450, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 65, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 180, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 166, "numnum:min:MAX_PERMI": 0, "numnum:sum:MAX_PERMI": 281, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 178.425, "numnum:min:MIN_BBXMIN": 0, "numnum:sum:MIN_BBXMIN": 855.95, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 178.425, "numnum:min:MAX_BBXMIN": 0, "numnum:sum:MAX_BBXMIN": 856.0241500000001, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 178.533333, "numnum:min:MIN_BBXMAX": 0, "numnum:sum:MIN_BBXMAX": 856.6, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 178.533333, "numnum:min:MAX_BBXMAX": 0, "numnum:sum:MAX_BBXMAX": 856.7, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 0, "numnum:min:MIN_BBYMIN": -41.35, "numnum:sum:MIN_BBYMIN": -123.808334, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 0, "numnum:min:MAX_BBYMIN": -41.35, "numnum:sum:MAX_BBYMIN": -123.681625, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 0, "numnum:min:MIN_BBYMAX": -41.2, "numnum:sum:MIN_BBYMAX": -123.166666, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 0, "numnum:min:MAX_BBYMAX": -41.2, "numnum:sum:MAX_BBYMAX": -123.141666, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 178.472885, "numnum:min:MEAN_BBXC": 0, "numnum:sum:MEAN_BBXC": 856.295215, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 0, "numnum:min:MEAN_BBYC": -41.285539, "numnum:sum:MEAN_BBYC": -123.44717299999999, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 417910, "numnum:min:GN_POP": 4749, "numnum:sum:GN_POP": 597652, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 304, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -19649, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 381, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 381, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -36.9, "numnum:sum:UN_LAT": -36.9, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 174.76, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 174.76, "numnum:count:POP1950": 6, "numnum:max:POP1950": 319, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 319, "numnum:count:POP1955": 6, "numnum:max:POP1955": 387, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 387, "numnum:count:POP1960": 6, "numnum:max:POP1960": 440, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 440, "numnum:count:POP1965": 6, "numnum:max:POP1965": 532, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 532, "numnum:count:POP1970": 6, "numnum:max:POP1970": 635, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 635, "numnum:count:POP1975": 6, "numnum:max:POP1975": 729, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 729, "numnum:count:POP1980": 6, "numnum:max:POP1980": 774, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 774, "numnum:count:POP1985": 6, "numnum:max:POP1985": 812, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 812, "numnum:count:POP1990": 6, "numnum:max:POP1990": 870, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 870, "numnum:count:POP1995": 6, "numnum:max:POP1995": 976, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 976, "numnum:count:POP2000": 6, "numnum:max:POP2000": 1063, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1063, "numnum:count:POP2005": 6, "numnum:max:POP2005": 1189, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1189, "numnum:count:POP2010": 6, "numnum:max:POP2010": 1245, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1245, "numnum:count:POP2015": 6, "numnum:max:POP2015": 1321, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1321, "numnum:count:POP2020": 6, "numnum:max:POP2020": 1398, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1398, "numnum:count:POP2025": 6, "numnum:max:POP2025": 1441, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1441, "numnum:count:POP2050": 6, "numnum:max:POP2050": 1475, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1475, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 0, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 0, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -13.841545, "numnum:min:LATITUDE": -21.138512, "numnum:sum:LATITUDE": -34.980057, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -171.738642, "numnum:min:LONGITUDE": -175.220564, "numnum:sum:LONGITUDE": -346.959206, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 61916, "numnum:min:POP_MAX": 42620, "numnum:sum:POP_MAX": 104536, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 37708, "numnum:min:POP_MIN": 23658, "numnum:sum:POP_MIN": 61366, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 42620, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 42620, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 8, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 15, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 7, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 14, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 4032402, "numnum:min:GEONAMEID": 3689793, "numnum:sum:GEONAMEID": 7722195, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 61916, "numnum:min:MAX_POP10": 42620, "numnum:sum:MAX_POP10": 104536, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 61916, "numnum:min:MAX_POP20": 42620, "numnum:sum:MAX_POP20": 104536, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 61916, "numnum:min:MAX_POP50": 42620, "numnum:sum:MAX_POP50": 104536, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 61916, "numnum:min:MAX_POP300": 42620, "numnum:sum:MAX_POP300": 104536, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 39, "numnum:min:MIN_AREAKM": 15, "numnum:sum:MIN_AREAKM": 54, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 39, "numnum:min:MAX_AREAKM": 15, "numnum:sum:MAX_AREAKM": 54, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 15, "numnum:min:MIN_AREAMI": 6, "numnum:sum:MIN_AREAMI": 21, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 15, "numnum:min:MAX_AREAMI": 6, "numnum:sum:MAX_AREAMI": 21, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 51, "numnum:min:MIN_PERKM": 27, "numnum:sum:MIN_PERKM": 78, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 51, "numnum:min:MAX_PERKM": 27, "numnum:sum:MAX_PERKM": 78, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 32, "numnum:min:MIN_PERMI": 17, "numnum:sum:MIN_PERMI": 49, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 32, "numnum:min:MAX_PERMI": 17, "numnum:sum:MAX_PERMI": 49, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -171.825, "numnum:min:MIN_BBXMIN": -175.233333, "numnum:sum:MIN_BBXMIN": -347.05833299999997, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -171.825, "numnum:min:MAX_BBXMIN": -175.233333, "numnum:sum:MAX_BBXMIN": -347.05833299999997, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -171.716667, "numnum:min:MIN_BBXMAX": -175.166667, "numnum:sum:MIN_BBXMAX": -346.883334, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -171.716667, "numnum:min:MAX_BBXMAX": -175.166667, "numnum:sum:MAX_BBXMAX": -346.883334, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -13.866667, "numnum:min:MIN_BBYMIN": -21.166667, "numnum:sum:MIN_BBYMIN": -35.033333999999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -13.866667, "numnum:min:MAX_BBYMIN": -21.166667, "numnum:sum:MAX_BBYMIN": -35.033333999999999, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -13.8, "numnum:min:MIN_BBYMAX": -21.125, "numnum:sum:MIN_BBYMAX": -34.925, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -13.8, "numnum:min:MAX_BBYMAX": -21.125, "numnum:sum:MAX_BBYMAX": -34.925, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -171.781117, "numnum:min:MEAN_BBXC": -175.206798, "numnum:sum:MEAN_BBXC": -346.987915, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -13.837855, "numnum:min:MEAN_BBYC": -21.142325, "numnum:sum:MEAN_BBYC": -34.98018, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 24, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 26, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 22400, "numnum:min:GN_POP": 6940, "numnum:sum:GN_POP": 29340, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1561, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8438, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.125498 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 0, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 0, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -13.841545, "numnum:min:LATITUDE": -21.138512, "numnum:sum:LATITUDE": -34.980057, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -171.738642, "numnum:min:LONGITUDE": -175.220564, "numnum:sum:LONGITUDE": -346.959206, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 61916, "numnum:min:POP_MAX": 42620, "numnum:sum:POP_MAX": 104536, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 37708, "numnum:min:POP_MIN": 23658, "numnum:sum:POP_MIN": 61366, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 42620, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 42620, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 8, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 15, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 7, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 14, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 4032402, "numnum:min:GEONAMEID": 3689793, "numnum:sum:GEONAMEID": 7722195, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 61916, "numnum:min:MAX_POP10": 42620, "numnum:sum:MAX_POP10": 104536, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 61916, "numnum:min:MAX_POP20": 42620, "numnum:sum:MAX_POP20": 104536, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 61916, "numnum:min:MAX_POP50": 42620, "numnum:sum:MAX_POP50": 104536, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 61916, "numnum:min:MAX_POP300": 42620, "numnum:sum:MAX_POP300": 104536, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 39, "numnum:min:MIN_AREAKM": 15, "numnum:sum:MIN_AREAKM": 54, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 39, "numnum:min:MAX_AREAKM": 15, "numnum:sum:MAX_AREAKM": 54, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 15, "numnum:min:MIN_AREAMI": 6, "numnum:sum:MIN_AREAMI": 21, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 15, "numnum:min:MAX_AREAMI": 6, "numnum:sum:MAX_AREAMI": 21, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 51, "numnum:min:MIN_PERKM": 27, "numnum:sum:MIN_PERKM": 78, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 51, "numnum:min:MAX_PERKM": 27, "numnum:sum:MAX_PERKM": 78, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 32, "numnum:min:MIN_PERMI": 17, "numnum:sum:MIN_PERMI": 49, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 32, "numnum:min:MAX_PERMI": 17, "numnum:sum:MAX_PERMI": 49, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -171.825, "numnum:min:MIN_BBXMIN": -175.233333, "numnum:sum:MIN_BBXMIN": -347.05833299999997, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -171.825, "numnum:min:MAX_BBXMIN": -175.233333, "numnum:sum:MAX_BBXMIN": -347.05833299999997, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -171.716667, "numnum:min:MIN_BBXMAX": -175.166667, "numnum:sum:MIN_BBXMAX": -346.883334, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -171.716667, "numnum:min:MAX_BBXMAX": -175.166667, "numnum:sum:MAX_BBXMAX": -346.883334, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -13.866667, "numnum:min:MIN_BBYMIN": -21.166667, "numnum:sum:MIN_BBYMIN": -35.033333999999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -13.866667, "numnum:min:MAX_BBYMIN": -21.166667, "numnum:sum:MAX_BBYMIN": -35.033333999999999, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -13.8, "numnum:min:MIN_BBYMAX": -21.125, "numnum:sum:MIN_BBYMAX": -34.925, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -13.8, "numnum:min:MAX_BBYMAX": -21.125, "numnum:sum:MAX_BBYMAX": -34.925, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -171.781117, "numnum:min:MEAN_BBXC": -175.206798, "numnum:sum:MEAN_BBXC": -346.987915, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -13.837855, "numnum:min:MEAN_BBYC": -21.142325, "numnum:sum:MEAN_BBYC": -34.98018, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 24, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 26, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 22400, "numnum:min:GN_POP": 6940, "numnum:sum:GN_POP": 29340, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1561, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8438, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.125498 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Lima", "DIFFASCII": 0, "NAMEASCII": "Lima", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Peru", "SOV_A3": "PER", "ADM0NAME": "Peru", "ADM0_A3": "PER", "ADM1NAME": "Lima", "ISO_A2": "PE", "LATITUDE": -12.048013, "LONGITUDE": -77.050062, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 8012000, "POP_MIN": 6758234, "POP_OTHER": 6068380, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3936456, "MEGANAME": "Lima", "LS_NAME": "Lima2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6758234, "MAX_POP20": 7092933, "MAX_POP50": 7115614, "MAX_POP300": 7115806, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 724, "MAX_AREAKM": 790, "MIN_AREAMI": 279, "MAX_AREAMI": 305, "MIN_PERKM": 315, "MAX_PERKM": 384, "MIN_PERMI": 196, "MAX_PERMI": 239, "MIN_BBXMIN": -77.166667, "MAX_BBXMIN": -77.153161, "MIN_BBXMAX": -76.85, "MAX_BBXMAX": -76.833333, "MIN_BBYMIN": -12.316667, "MAX_BBYMIN": -12.281801, "MIN_BBYMAX": -11.808333, "MAX_BBYMAX": -11.808333, "MEAN_BBXC": -77.010199, "MEAN_BBYC": -12.041474, "COMPARE": 0, "GN_ASCII": "Lima", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 15, "GN_POP": 7737002, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "America/Lima", "GEONAMESNO": "GeoNames match general.", "UN_FID": 411, "UN_ADM0": "Peru", "UN_LAT": -12.08, "UN_LONG": -77.04, "POP1950": 1066, "POP1955": 1368, "POP1960": 1756, "POP1965": 2284, "POP1970": 2980, "POP1975": 3696, "POP1980": 4438, "POP1985": 5116, "POP1990": 5837, "POP1995": 6537, "POP2000": 7116, "POP2005": 7747, "POP2010": 8012, "POP2015": 8375, "POP2020": 8857, "POP2025": 9251, "POP2050": 9600, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -77.036133, -12.039321 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Lima", "DIFFASCII": 0, "NAMEASCII": "Lima", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Peru", "SOV_A3": "PER", "ADM0NAME": "Peru", "ADM0_A3": "PER", "ADM1NAME": "Lima", "ISO_A2": "PE", "LATITUDE": -12.048013, "LONGITUDE": -77.050062, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 8012000, "POP_MIN": 6758234, "POP_OTHER": 6068380, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3936456, "MEGANAME": "Lima", "LS_NAME": "Lima2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6758234, "MAX_POP20": 7092933, "MAX_POP50": 7115614, "MAX_POP300": 7115806, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 724, "MAX_AREAKM": 790, "MIN_AREAMI": 279, "MAX_AREAMI": 305, "MIN_PERKM": 315, "MAX_PERKM": 384, "MIN_PERMI": 196, "MAX_PERMI": 239, "MIN_BBXMIN": -77.166667, "MAX_BBXMIN": -77.153161, "MIN_BBXMAX": -76.85, "MAX_BBXMAX": -76.833333, "MIN_BBYMIN": -12.316667, "MAX_BBYMIN": -12.281801, "MIN_BBYMAX": -11.808333, "MAX_BBYMAX": -11.808333, "MEAN_BBXC": -77.010199, "MEAN_BBYC": -12.041474, "COMPARE": 0, "GN_ASCII": "Lima", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 15, "GN_POP": 7737002, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "America/Lima", "GEONAMESNO": "GeoNames match general.", "UN_FID": 411, "UN_ADM0": "Peru", "UN_LAT": -12.08, "UN_LONG": -77.04, "POP1950": 1066, "POP1955": 1368, "POP1960": 1756, "POP1965": 2284, "POP1970": 2980, "POP1975": 3696, "POP1980": 4438, "POP1985": 5116, "POP1990": 5837, "POP1995": 6537, "POP2000": 7116, "POP2005": 7747, "POP2010": 8012, "POP2015": 8375, "POP2020": 8857, "POP2025": 9251, "POP2050": 9600, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 11, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -12.048013, "numnum:min:LATITUDE": -16.497974, "numnum:sum:LATITUDE": -28.545986999999998, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -68.149985, "numnum:min:LONGITUDE": -77.050062, "numnum:sum:LONGITUDE": -145.20004699999999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 8012000, "numnum:min:POP_MAX": 1590000, "numnum:sum:POP_MAX": 9602000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 6758234, "numnum:min:POP_MIN": 812799, "numnum:sum:POP_MIN": 7571033, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 6068380, "numnum:min:POP_OTHER": 4400, "numnum:sum:POP_OTHER": 6072780, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3936456, "numnum:min:GEONAMEID": 3911925, "numnum:sum:GEONAMEID": 7848381, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 6758234, "numnum:min:MAX_POP10": 1590482, "numnum:sum:MAX_POP10": 8348716, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 7092933, "numnum:min:MAX_POP20": 1590482, "numnum:sum:MAX_POP20": 8683415, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 7115614, "numnum:min:MAX_POP50": 1590482, "numnum:sum:MAX_POP50": 8706096, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 7115806, "numnum:min:MAX_POP300": 1590482, "numnum:sum:MAX_POP300": 8706288, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 724, "numnum:min:MIN_AREAKM": 181, "numnum:sum:MIN_AREAKM": 905, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 790, "numnum:min:MAX_AREAKM": 181, "numnum:sum:MAX_AREAKM": 971, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 279, "numnum:min:MIN_AREAMI": 70, "numnum:sum:MIN_AREAMI": 349, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 305, "numnum:min:MAX_AREAMI": 70, "numnum:sum:MAX_AREAMI": 375, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 315, "numnum:min:MIN_PERKM": 121, "numnum:sum:MIN_PERKM": 436, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 384, "numnum:min:MAX_PERKM": 121, "numnum:sum:MAX_PERKM": 505, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 196, "numnum:min:MIN_PERMI": 75, "numnum:sum:MIN_PERMI": 271, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 239, "numnum:min:MAX_PERMI": 75, "numnum:sum:MAX_PERMI": 314, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -68.258333, "numnum:min:MIN_BBXMIN": -77.166667, "numnum:sum:MIN_BBXMIN": -145.425, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -68.258333, "numnum:min:MAX_BBXMIN": -77.153161, "numnum:sum:MAX_BBXMIN": -145.411494, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -68.05, "numnum:min:MIN_BBXMAX": -76.85, "numnum:sum:MIN_BBXMAX": -144.89999999999999, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -68.05, "numnum:min:MAX_BBXMAX": -76.833333, "numnum:sum:MAX_BBXMAX": -144.883333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -12.316667, "numnum:min:MIN_BBYMIN": -16.575, "numnum:sum:MIN_BBYMIN": -28.891666999999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -12.281801, "numnum:min:MAX_BBYMIN": -16.575, "numnum:sum:MAX_BBYMIN": -28.856800999999999, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -11.808333, "numnum:min:MIN_BBYMAX": -16.433333, "numnum:sum:MIN_BBYMAX": -28.241666000000003, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -11.808333, "numnum:min:MAX_BBYMAX": -16.433333, "numnum:sum:MAX_BBYMAX": -28.241666000000003, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -68.157765, "numnum:min:MEAN_BBXC": -77.010199, "numnum:sum:MEAN_BBXC": -145.16796399999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -12.041474, "numnum:min:MEAN_BBYC": -16.506439, "numnum:sum:MEAN_BBYC": -28.547913, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 15, "numnum:min:ADMIN1_COD": 4, "numnum:sum:ADMIN1_COD": 19, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7737002, "numnum:min:GN_POP": 812799, "numnum:sum:GN_POP": 8549801, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 3829, "numnum:min:GTOPO30": 108, "numnum:sum:GTOPO30": 3937, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 440, "numnum:min:UN_FID": 411, "numnum:sum:UN_FID": 851, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 24.15, "numnum:min:UN_LAT": -12.08, "numnum:sum:UN_LAT": 12.069999999999999, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -77.04, "numnum:min:UN_LONG": -110.3, "numnum:sum:UN_LONG": -187.34, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1066, "numnum:min:POP1950": 319, "numnum:sum:POP1950": 1385, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1368, "numnum:min:POP1955": 374, "numnum:sum:POP1955": 1742, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1756, "numnum:min:POP1960": 438, "numnum:sum:POP1960": 2194, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2284, "numnum:min:POP1965": 512, "numnum:sum:POP1965": 2796, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2980, "numnum:min:POP1970": 600, "numnum:sum:POP1970": 3580, "numnum:count:POP1975": 2, "numnum:max:POP1975": 3696, "numnum:min:POP1975": 703, "numnum:sum:POP1975": 4399, "numnum:count:POP1980": 2, "numnum:max:POP1980": 4438, "numnum:min:POP1980": 809, "numnum:sum:POP1980": 5247, "numnum:count:POP1985": 2, "numnum:max:POP1985": 5116, "numnum:min:POP1985": 927, "numnum:sum:POP1985": 6043, "numnum:count:POP1990": 2, "numnum:max:POP1990": 5837, "numnum:min:POP1990": 1062, "numnum:sum:POP1990": 6899, "numnum:count:POP1995": 2, "numnum:max:POP1995": 6537, "numnum:min:POP1995": 1267, "numnum:sum:POP1995": 7804, "numnum:count:POP2000": 2, "numnum:max:POP2000": 7116, "numnum:min:POP2000": 1390, "numnum:sum:POP2000": 8506, "numnum:count:POP2005": 2, "numnum:max:POP2005": 7747, "numnum:min:POP2005": 1527, "numnum:sum:POP2005": 9274, "numnum:count:POP2010": 2, "numnum:max:POP2010": 8012, "numnum:min:POP2010": 1590, "numnum:sum:POP2010": 9602, "numnum:count:POP2015": 2, "numnum:max:POP2015": 8375, "numnum:min:POP2015": 1692, "numnum:sum:POP2015": 10067, "numnum:count:POP2020": 2, "numnum:max:POP2020": 8857, "numnum:min:POP2020": 1864, "numnum:sum:POP2020": 10721, "numnum:count:POP2025": 2, "numnum:max:POP2025": 9251, "numnum:min:POP2025": 2027, "numnum:sum:POP2025": 11278, "numnum:count:POP2050": 2, "numnum:max:POP2050": 9600, "numnum:min:POP2050": 2178, "numnum:sum:POP2050": 11778, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -77.036133, -12.039321 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "La Paz", "DIFFASCII": 0, "NAMEASCII": "La Paz", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "La Paz", "ISO_A2": "BO", "LATITUDE": -16.497974, "LONGITUDE": -68.149985, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1590000, "POP_MIN": 812799, "POP_OTHER": 4400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3911925, "MEGANAME": "La Paz", "LS_NAME": "La Paz3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590482, "MAX_POP20": 1590482, "MAX_POP50": 1590482, "MAX_POP300": 1590482, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 181, "MAX_AREAKM": 181, "MIN_AREAMI": 70, "MAX_AREAMI": 70, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": -68.258333, "MAX_BBXMIN": -68.258333, "MIN_BBXMAX": -68.05, "MAX_BBXMAX": -68.05, "MIN_BBYMIN": -16.575, "MAX_BBYMIN": -16.575, "MIN_BBYMAX": -16.433333, "MAX_BBYMAX": -16.433333, "MEAN_BBXC": -68.157765, "MEAN_BBYC": -16.506439, "COMPARE": 0, "GN_ASCII": "La Paz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 812799, "ELEVATION": 0, "GTOPO30": 3829, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 440, "UN_ADM0": "Bolivia", "UN_LAT": 24.15, "UN_LONG": -110.3, "POP1950": 319, "POP1955": 374, "POP1960": 438, "POP1965": 512, "POP1970": 600, "POP1975": 703, "POP1980": 809, "POP1985": 927, "POP1990": 1062, "POP1995": 1267, "POP2000": 1390, "POP2005": 1527, "POP2010": 1590, "POP2015": 1692, "POP2020": 1864, "POP2025": 2027, "POP2050": 2178, "accum2": 1, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 11, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1130, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 19, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": -15.78334, "numnum:min:LATITUDE": -33.450014, "numnum:sum:LATITUDE": -117.820063, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": -47.916052, "numnum:min:LONGITUDE": -71.621014, "numnum:sum:LONGITUDE": -323.613608, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 13, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 5720000, "numnum:min:POP_MAX": 224838, "numnum:sum:POP_MAX": 12105834, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 2562963, "numnum:min:POP_MIN": 15938, "numnum:sum:POP_MIN": 3660047, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 3066651, "numnum:min:POP_OTHER": 4400, "numnum:sum:POP_OTHER": 5196281, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 58, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 46, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 3911925, "numnum:min:GEONAMEID": 3445575, "numnum:sum:GEONAMEID": 18180286, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 3540014, "numnum:min:MAX_POP10": 144390, "numnum:sum:MAX_POP10": 7335344, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 5157058, "numnum:min:MAX_POP20": 221736, "numnum:sum:MAX_POP20": 9443526, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 5157058, "numnum:min:MAX_POP50": 221736, "numnum:sum:MAX_POP50": 9445858, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 5157058, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 8807998, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 450, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 570, "numnum:min:MIN_AREAKM": 34, "numnum:sum:MIN_AREAKM": 1255, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 903, "numnum:min:MAX_AREAKM": 34, "numnum:sum:MAX_AREAKM": 1741, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 220, "numnum:min:MIN_AREAMI": 13, "numnum:sum:MIN_AREAMI": 484, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 349, "numnum:min:MAX_AREAMI": 13, "numnum:sum:MAX_AREAMI": 672, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 311, "numnum:min:MIN_PERKM": 32, "numnum:sum:MIN_PERKM": 807, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 558, "numnum:min:MAX_PERKM": 32, "numnum:sum:MAX_PERKM": 1180, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 193, "numnum:min:MIN_PERMI": 20, "numnum:sum:MIN_PERMI": 502, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 347, "numnum:min:MAX_PERMI": 20, "numnum:sum:MAX_PERMI": 733, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": -48.158333, "numnum:min:MIN_BBXMIN": -71.658333, "numnum:sum:MIN_BBXMIN": -324.33333200000006, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": -48.158333, "numnum:min:MAX_BBXMIN": -71.658333, "numnum:sum:MAX_BBXMIN": -324.17499899999998, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": -47.783333, "numnum:min:MIN_BBXMAX": -71.57441, "numnum:sum:MIN_BBXMAX": -323.09107599999995, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": -47.783333, "numnum:min:MAX_BBXMAX": -71.325, "numnum:sum:MAX_BBXMAX": -322.8416659999999, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": -15.941667, "numnum:min:MIN_BBYMIN": -33.7, "numnum:sum:MIN_BBYMIN": -118.358334, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": -15.941667, "numnum:min:MAX_BBYMIN": -33.556142, "numnum:sum:MAX_BBYMIN": -118.21447599999999, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": -15.7, "numnum:min:MIN_BBYMAX": -33.175, "numnum:sum:MIN_BBYMAX": -117.31666700000001, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": -15.7, "numnum:min:MAX_BBYMAX": -33.175, "numnum:sum:MAX_BBYMAX": -117.21666699999999, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": -47.9714, "numnum:min:MEAN_BBXC": -71.541251, "numnum:sum:MEAN_BBXC": -323.59200300000006, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": -15.824583, "numnum:min:MEAN_BBYC": -33.461735, "numnum:sum:MEAN_BBYC": -117.857961, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 27, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 62, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 2207718, "numnum:min:GN_POP": 15938, "numnum:sum:GN_POP": 3307904, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 3829, "numnum:min:GTOPO30": 405, "numnum:sum:GTOPO30": 8526, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 472, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 947, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 24.15, "numnum:min:UN_LAT": -33.02, "numnum:sum:UN_LAT": -16.560000000000004, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -110.3, "numnum:sum:UN_LONG": -310.7, "numnum:count:POP1950": 5, "numnum:max:POP1950": 1322, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2005, "numnum:count:POP1955": 5, "numnum:max:POP1955": 1618, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2439, "numnum:count:POP1960": 5, "numnum:max:POP1960": 1980, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2988, "numnum:count:POP1965": 5, "numnum:max:POP1965": 2294, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3555, "numnum:count:POP1970": 5, "numnum:max:POP1970": 2647, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 4304, "numnum:count:POP1975": 5, "numnum:max:POP1975": 3138, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5249, "numnum:count:POP1980": 5, "numnum:max:POP1980": 3721, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 6458, "numnum:count:POP1985": 5, "numnum:max:POP1985": 4201, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 7372, "numnum:count:POP1990": 5, "numnum:max:POP1990": 4616, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 8274, "numnum:count:POP1995": 5, "numnum:max:POP1995": 4964, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9259, "numnum:count:POP2000": 5, "numnum:max:POP2000": 5275, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 10214, "numnum:count:POP2005": 5, "numnum:max:POP2005": 5599, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 11305, "numnum:count:POP2010": 5, "numnum:max:POP2010": 5720, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 11763, "numnum:count:POP2015": 5, "numnum:max:POP2015": 5879, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 12389, "numnum:count:POP2020": 5, "numnum:max:POP2020": 6084, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 13154, "numnum:count:POP2025": 5, "numnum:max:POP2025": 6224, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 13670, "numnum:count:POP2050": 5, "numnum:max:POP2050": 6310, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 14048, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -68.159180, -16.509833 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEALT": "Valparaíso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valparaíso", "ISO_A2": "CL", "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575, "MEGANAME": "Valparaíso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390, "MAX_POP20": 637860, "MAX_POP50": 637860, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 34, "MAX_AREAKM": 184, "MIN_AREAMI": 13, "MAX_AREAMI": 71, "MIN_PERKM": 33, "MAX_PERKM": 151, "MIN_PERMI": 21, "MAX_PERMI": 94, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27, "GN_POP": 15938, "ELEVATION": 0, "GTOPO30": 405, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328, "POP1955": 377, "POP1960": 433, "POP1965": 481, "POP1970": 532, "POP1975": 581, "POP1980": 635, "POP1985": 685, "POP1990": 733, "POP1995": 771, "POP2000": 803, "POP2005": 838, "POP2010": 854, "POP2015": 880, "POP2020": 922, "POP2025": 956, "POP2050": 982, "CITYALT": "Valparaiso", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 820, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 12, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -19.040971, "numnum:min:LATITUDE": -33.450014, "numnum:sum:LATITUDE": -85.53874900000001, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -65.259516, "numnum:min:LONGITUDE": -71.621014, "numnum:sum:LONGITUDE": -207.547571, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 5720000, "numnum:min:POP_MAX": 224838, "numnum:sum:POP_MAX": 6798838, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 221736, "numnum:min:POP_MIN": 15938, "numnum:sum:POP_MIN": 284285, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3066651, "numnum:min:POP_OTHER": 130815, "numnum:sum:POP_OTHER": 3419202, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3903987, "numnum:min:GEONAMEID": 3445575, "numnum:sum:GEONAMEID": 10799303, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3540014, "numnum:min:MAX_POP10": 144390, "numnum:sum:MAX_POP10": 3906140, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 5157058, "numnum:min:MAX_POP20": 221736, "numnum:sum:MAX_POP20": 6016654, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 5157058, "numnum:min:MAX_POP50": 221736, "numnum:sum:MAX_POP50": 6016654, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 5157058, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 5378794, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 570, "numnum:min:MIN_AREAKM": 34, "numnum:sum:MIN_AREAKM": 638, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 903, "numnum:min:MAX_AREAKM": 34, "numnum:sum:MAX_AREAKM": 1121, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 220, "numnum:min:MIN_AREAMI": 13, "numnum:sum:MIN_AREAMI": 246, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 349, "numnum:min:MAX_AREAMI": 13, "numnum:sum:MAX_AREAMI": 433, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 310, "numnum:min:MIN_PERKM": 32, "numnum:sum:MIN_PERKM": 375, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 558, "numnum:min:MAX_PERKM": 32, "numnum:sum:MAX_PERKM": 741, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 193, "numnum:min:MIN_PERMI": 20, "numnum:sum:MIN_PERMI": 234, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 347, "numnum:min:MAX_PERMI": 20, "numnum:sum:MAX_PERMI": 461, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -65.3, "numnum:min:MIN_BBXMIN": -71.658333, "numnum:sum:MIN_BBXMIN": -207.91666600000003, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -65.3, "numnum:min:MAX_BBXMIN": -71.658333, "numnum:sum:MAX_BBXMIN": -207.758333, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -65.225, "numnum:min:MIN_BBXMAX": -71.57441, "numnum:sum:MIN_BBXMAX": -207.25774299999999, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -65.225, "numnum:min:MAX_BBXMAX": -71.325, "numnum:sum:MAX_BBXMAX": -207.008333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -19.066667, "numnum:min:MIN_BBYMIN": -33.7, "numnum:sum:MIN_BBYMIN": -85.841667, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -19.066667, "numnum:min:MAX_BBYMIN": -33.556142, "numnum:sum:MAX_BBYMIN": -85.697809, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -18.991667, "numnum:min:MIN_BBYMAX": -33.175, "numnum:sum:MIN_BBYMAX": -85.183334, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -18.991667, "numnum:min:MAX_BBYMAX": -33.175, "numnum:sum:MAX_BBYMAX": -85.08333400000001, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -65.260317, "numnum:min:MEAN_BBXC": -71.541251, "numnum:sum:MEAN_BBXC": -207.46283799999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -19.030556, "numnum:min:MEAN_BBYC": -33.461735, "numnum:sum:MEAN_BBYC": -85.526939, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 27, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 51, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 224838, "numnum:min:GN_POP": 15938, "numnum:sum:GN_POP": 287387, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 2759, "numnum:min:GTOPO30": 405, "numnum:sum:GTOPO30": 3605, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 18, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 35, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 8.1, "numnum:min:UN_LAT": -33.02, "numnum:sum:UN_LAT": -24.92, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -80.96, "numnum:sum:UN_LONG": -152.51, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1322, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1650, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1618, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1995, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1980, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2413, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2294, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2775, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2647, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3179, "numnum:count:POP1975": 3, "numnum:max:POP1975": 3138, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3719, "numnum:count:POP1980": 3, "numnum:max:POP1980": 3721, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4356, "numnum:count:POP1985": 3, "numnum:max:POP1985": 4201, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 4886, "numnum:count:POP1990": 3, "numnum:max:POP1990": 4616, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5349, "numnum:count:POP1995": 3, "numnum:max:POP1995": 4964, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5735, "numnum:count:POP2000": 3, "numnum:max:POP2000": 5275, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6078, "numnum:count:POP2005": 3, "numnum:max:POP2005": 5599, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6437, "numnum:count:POP2010": 3, "numnum:max:POP2010": 5720, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 6574, "numnum:count:POP2015": 3, "numnum:max:POP2015": 5879, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 6759, "numnum:count:POP2020": 3, "numnum:max:POP2020": 6084, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 7006, "numnum:count:POP2025": 3, "numnum:max:POP2025": 6224, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 7180, "numnum:count:POP2050": 3, "numnum:max:POP2050": 6310, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 7292, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.063924 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunción", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunción", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunción", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1010, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 11, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -23.55868, "numnum:min:LATITUDE": -34.602502, "numnum:sum:LATITUDE": -83.457585, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -46.62502, "numnum:min:LONGITUDE": -58.397531, "numnum:sum:LONGITUDE": -162.66405600000003, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 18845000, "numnum:min:POP_MAX": 1870000, "numnum:sum:POP_MAX": 33510000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 10929146, "numnum:min:POP_MIN": 11693, "numnum:sum:POP_MIN": 20962134, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 11522944, "numnum:min:POP_OTHER": 636771, "numnum:sum:POP_OTHER": 22431172, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 40, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 34, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3448439, "numnum:min:GEONAMEID": 1730025, "numnum:sum:GEONAMEID": 8614374, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 12495084, "numnum:min:MAX_POP10": 745924, "numnum:sum:MAX_POP10": 24170154, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 17425624, "numnum:min:MAX_POP20": 1829910, "numnum:sum:MAX_POP20": 30247449, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 18203351, "numnum:min:MAX_POP50": 2141255, "numnum:sum:MAX_POP50": 32956468, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 18203351, "numnum:min:MAX_POP300": 2141255, "numnum:sum:MAX_POP300": 32956468, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 18203351, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 30815213, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1675, "numnum:min:MIN_AREAKM": 105, "numnum:sum:MIN_AREAKM": 3214, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 2667, "numnum:min:MAX_AREAKM": 651, "numnum:sum:MAX_AREAKM": 5765, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 647, "numnum:min:MIN_AREAMI": 41, "numnum:sum:MIN_AREAMI": 1242, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 1030, "numnum:min:MAX_AREAMI": 251, "numnum:sum:MAX_AREAMI": 2226, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 570, "numnum:min:MIN_PERKM": 63, "numnum:sum:MIN_PERKM": 1165, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 1086, "numnum:min:MAX_PERKM": 331, "numnum:sum:MAX_PERKM": 2481, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 354, "numnum:min:MIN_PERMI": 39, "numnum:sum:MIN_PERMI": 723, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 675, "numnum:min:MAX_PERMI": 206, "numnum:sum:MAX_PERMI": 1542, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -47.058333, "numnum:min:MIN_BBXMIN": -59.016667, "numnum:sum:MIN_BBXMIN": -163.75, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -47.056372, "numnum:min:MAX_BBXMIN": -58.757731, "numnum:sum:MAX_BBXMIN": -163.489103, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -46.383333, "numnum:min:MIN_BBXMAX": -58.175, "numnum:sum:MIN_BBXMAX": -162.102332, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -46.108333, "numnum:min:MAX_BBXMAX": -57.816667, "numnum:sum:MAX_BBXMAX": -161.241667, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -23.891667, "numnum:min:MIN_BBYMIN": -35.008333, "numnum:sum:MIN_BBYMIN": -84.391667, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -23.842331, "numnum:min:MAX_BBYMIN": -35.008333, "numnum:sum:MAX_BBYMIN": -84.24233100000001, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -23.358333, "numnum:min:MIN_BBYMAX": -34.375, "numnum:sum:MIN_BBYMAX": -82.941666, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -23.241667, "numnum:min:MAX_BBYMAX": -34.366667, "numnum:sum:MAX_BBYMAX": -82.70833400000001, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -46.651489, "numnum:min:MEAN_BBXC": -58.50845, "numnum:sum:MEAN_BBXC": -162.695324, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -23.558961, "numnum:min:MEAN_BBYC": -34.681331, "numnum:sum:MEAN_BBYC": -83.547754, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 27, "numnum:min:ADMIN1_COD": 7, "numnum:sum:ADMIN1_COD": 58, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 13076300, "numnum:min:GN_POP": 11693, "numnum:sum:GN_POP": 23109288, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 631, "numnum:min:GTOPO30": 13, "numnum:sum:GTOPO30": 668, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 491, "numnum:min:UN_FID": 201, "numnum:sum:UN_FID": 1101, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": -23.58, "numnum:min:UN_LAT": -34.62, "numnum:sum:UN_LAT": -83.5, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -46.62, "numnum:min:UN_LONG": -58.44, "numnum:sum:UN_LONG": -162.68, "numnum:count:POP1950": 3, "numnum:max:POP1950": 5098, "numnum:min:POP1950": 258, "numnum:sum:POP1950": 7690, "numnum:count:POP1955": 3, "numnum:max:POP1955": 5799, "numnum:min:POP1955": 314, "numnum:sum:POP1955": 9157, "numnum:count:POP1960": 3, "numnum:max:POP1960": 6598, "numnum:min:POP1960": 382, "numnum:sum:POP1960": 10950, "numnum:count:POP1965": 3, "numnum:max:POP1965": 7317, "numnum:min:POP1965": 461, "numnum:sum:POP1965": 13272, "numnum:count:POP1970": 3, "numnum:max:POP1970": 8105, "numnum:min:POP1970": 552, "numnum:sum:POP1970": 16277, "numnum:count:POP1975": 3, "numnum:max:POP1975": 9614, "numnum:min:POP1975": 654, "numnum:sum:POP1975": 19013, "numnum:count:POP1980": 3, "numnum:max:POP1980": 12089, "numnum:min:POP1980": 770, "numnum:sum:POP1980": 22281, "numnum:count:POP1985": 3, "numnum:max:POP1985": 13395, "numnum:min:POP1985": 914, "numnum:sum:POP1985": 24268, "numnum:count:POP1990": 3, "numnum:max:POP1990": 14776, "numnum:min:POP1990": 1091, "numnum:sum:POP1990": 26380, "numnum:count:POP1995": 3, "numnum:max:POP1995": 15948, "numnum:min:POP1995": 1287, "numnum:sum:POP1995": 28389, "numnum:count:POP2000": 3, "numnum:max:POP2000": 17099, "numnum:min:POP2000": 1507, "numnum:sum:POP2000": 30453, "numnum:count:POP2005": 3, "numnum:max:POP2005": 18333, "numnum:min:POP2005": 1762, "numnum:sum:POP2005": 32648, "numnum:count:POP2010": 3, "numnum:max:POP2010": 18845, "numnum:min:POP2010": 1870, "numnum:sum:POP2010": 33510, "numnum:count:POP2015": 3, "numnum:max:POP2015": 19582, "numnum:min:POP2015": 2030, "numnum:sum:POP2015": 34701, "numnum:count:POP2020": 3, "numnum:max:POP2020": 20544, "numnum:min:POP2020": 2277, "numnum:sum:POP2020": 36253, "numnum:count:POP2025": 3, "numnum:max:POP2025": 21124, "numnum:min:POP2025": 2506, "numnum:sum:POP2025": 37283, "numnum:count:POP2050": 3, "numnum:max:POP2050": 21428, "numnum:min:POP2050": 2715, "numnum:sum:POP2050": 37911, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -57.656250, -25.284438 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasília", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasília", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1210, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 12, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": -15.78334, "numnum:min:LATITUDE": -34.602502, "numnum:sum:LATITUDE": -99.24092499999999, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": -46.62502, "numnum:min:LONGITUDE": -58.397531, "numnum:sum:LONGITUDE": -210.580108, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 18845000, "numnum:min:POP_MAX": 1870000, "numnum:sum:POP_MAX": 37226996, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 10929146, "numnum:min:POP_MIN": 11693, "numnum:sum:POP_MIN": 23525097, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 11522944, "numnum:min:POP_OTHER": 636771, "numnum:sum:POP_OTHER": 24203851, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 52, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 46, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 3469058, "numnum:min:GEONAMEID": 1730025, "numnum:sum:GEONAMEID": 12083432, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 12495084, "numnum:min:MAX_POP10": 745924, "numnum:sum:MAX_POP10": 26008876, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 17425624, "numnum:min:MAX_POP20": 1829910, "numnum:sum:MAX_POP20": 32083839, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 18203351, "numnum:min:MAX_POP50": 1838722, "numnum:sum:MAX_POP50": 34795190, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 18203351, "numnum:min:MAX_POP300": 1838722, "numnum:sum:MAX_POP300": 34795190, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 18203351, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 30815213, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 800, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 1675, "numnum:min:MIN_AREAKM": 105, "numnum:sum:MIN_AREAKM": 3650, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 2667, "numnum:min:MAX_AREAKM": 439, "numnum:sum:MAX_AREAKM": 6204, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 647, "numnum:min:MIN_AREAMI": 41, "numnum:sum:MIN_AREAMI": 1410, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 1030, "numnum:min:MAX_AREAMI": 169, "numnum:sum:MAX_AREAMI": 2395, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 570, "numnum:min:MIN_PERKM": 63, "numnum:sum:MIN_PERKM": 1476, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 1086, "numnum:min:MAX_PERKM": 318, "numnum:sum:MAX_PERKM": 2799, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 354, "numnum:min:MIN_PERMI": 39, "numnum:sum:MIN_PERMI": 916, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 675, "numnum:min:MAX_PERMI": 197, "numnum:sum:MAX_PERMI": 1739, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": -47.058333, "numnum:min:MIN_BBXMIN": -59.016667, "numnum:sum:MIN_BBXMIN": -211.908333, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": -47.056372, "numnum:min:MAX_BBXMIN": -58.757731, "numnum:sum:MAX_BBXMIN": -211.647436, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": -46.383333, "numnum:min:MIN_BBXMAX": -58.175, "numnum:sum:MIN_BBXMAX": -209.885665, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": -46.108333, "numnum:min:MAX_BBXMAX": -57.816667, "numnum:sum:MAX_BBXMAX": -209.02499999999999, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": -15.941667, "numnum:min:MIN_BBYMIN": -35.008333, "numnum:sum:MIN_BBYMIN": -100.333334, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": -15.941667, "numnum:min:MAX_BBYMIN": -35.008333, "numnum:sum:MAX_BBYMIN": -100.183998, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": -15.7, "numnum:min:MIN_BBYMAX": -34.375, "numnum:sum:MIN_BBYMAX": -98.641666, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": -15.7, "numnum:min:MAX_BBYMAX": -34.366667, "numnum:sum:MAX_BBYMAX": -98.408334, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": -46.651489, "numnum:min:MEAN_BBXC": -58.50845, "numnum:sum:MEAN_BBXC": -210.66672400000003, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": -15.824583, "numnum:min:MEAN_BBYC": -34.681331, "numnum:sum:MEAN_BBYC": -99.372337, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 27, "numnum:min:ADMIN1_COD": 7, "numnum:sum:ADMIN1_COD": 65, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 13076300, "numnum:min:GN_POP": 11693, "numnum:sum:GN_POP": 25317006, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 1092, "numnum:min:GTOPO30": 13, "numnum:sum:GTOPO30": 1760, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 491, "numnum:min:UN_FID": 201, "numnum:sum:UN_FID": 1573, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": -15.79, "numnum:min:UN_LAT": -34.62, "numnum:sum:UN_LAT": -99.29, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": -46.62, "numnum:min:UN_LONG": -58.44, "numnum:sum:UN_LONG": -210.57, "numnum:count:POP1950": 4, "numnum:max:POP1950": 5098, "numnum:min:POP1950": 36, "numnum:sum:POP1950": 7726, "numnum:count:POP1955": 4, "numnum:max:POP1955": 5799, "numnum:min:POP1955": 70, "numnum:sum:POP1955": 9227, "numnum:count:POP1960": 4, "numnum:max:POP1960": 6598, "numnum:min:POP1960": 137, "numnum:sum:POP1960": 11087, "numnum:count:POP1965": 4, "numnum:max:POP1965": 7317, "numnum:min:POP1965": 268, "numnum:sum:POP1965": 13540, "numnum:count:POP1970": 4, "numnum:max:POP1970": 8105, "numnum:min:POP1970": 525, "numnum:sum:POP1970": 16802, "numnum:count:POP1975": 4, "numnum:max:POP1975": 9614, "numnum:min:POP1975": 654, "numnum:sum:POP1975": 19840, "numnum:count:POP1980": 4, "numnum:max:POP1980": 12089, "numnum:min:POP1980": 770, "numnum:sum:POP1980": 23574, "numnum:count:POP1985": 4, "numnum:max:POP1985": 13395, "numnum:min:POP1985": 914, "numnum:sum:POP1985": 25827, "numnum:count:POP1990": 4, "numnum:max:POP1990": 14776, "numnum:min:POP1990": 1091, "numnum:sum:POP1990": 28243, "numnum:count:POP1995": 4, "numnum:max:POP1995": 15948, "numnum:min:POP1995": 1287, "numnum:sum:POP1995": 30646, "numnum:count:POP2000": 4, "numnum:max:POP2000": 17099, "numnum:min:POP2000": 1507, "numnum:sum:POP2000": 33199, "numnum:count:POP2005": 4, "numnum:max:POP2005": 18333, "numnum:min:POP2005": 1762, "numnum:sum:POP2005": 35989, "numnum:count:POP2010": 4, "numnum:max:POP2010": 18845, "numnum:min:POP2010": 1870, "numnum:sum:POP2010": 37109, "numnum:count:POP2015": 4, "numnum:max:POP2015": 19582, "numnum:min:POP2015": 2030, "numnum:sum:POP2015": 38639, "numnum:count:POP2020": 4, "numnum:max:POP2020": 20544, "numnum:min:POP2020": 2277, "numnum:sum:POP2020": 40537, "numnum:count:POP2025": 4, "numnum:max:POP2025": 21124, "numnum:min:POP2025": 2506, "numnum:sum:POP2025": 41746, "numnum:count:POP2050": 4, "numnum:max:POP2050": 21428, "numnum:min:POP2050": 2715, "numnum:sum:POP2050": 42489, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Montevideo", "DIFFASCII": 0, "NAMEASCII": "Montevideo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uruguay", "SOV_A3": "URY", "ADM0NAME": "Uruguay", "ADM0_A3": "URY", "ADM1NAME": "Montevideo", "ISO_A2": "UY", "LATITUDE": -34.858042, "LONGITUDE": -56.171052, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1513000, "POP_MIN": 5324, "POP_OTHER": 1276128, "RANK_MAX": 12, "RANK_MIN": 5, "GEONAMEID": 5038018, "MEGANAME": "Montevideo", "LS_NAME": "Montevideo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1381747, "MAX_POP20": 1381747, "MAX_POP50": 1381747, "MAX_POP300": 1381747, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 347, "MAX_AREAKM": 347, "MIN_AREAMI": 134, "MAX_AREAMI": 134, "MIN_PERKM": 266, "MAX_PERKM": 266, "MIN_PERMI": 165, "MAX_PERMI": 165, "MIN_BBXMIN": -56.291667, "MAX_BBXMIN": -56.291667, "MIN_BBXMAX": -55.8, "MAX_BBXMAX": -55.8, "MIN_BBYMIN": -34.933333, "MAX_BBYMIN": -34.933333, "MIN_BBYMAX": -34.65, "MAX_BBYMAX": -34.65, "MEAN_BBXC": -56.12273, "MEAN_BBYC": -34.828337, "COMPARE": 0, "GN_ASCII": "Montevideo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5324, "ELEVATION": 284, "GTOPO30": 305, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 579, "UN_ADM0": "Uruguay", "UN_LAT": -34.92, "UN_LONG": -56.16, "POP1950": 1212, "POP1955": 1248, "POP1960": 1285, "POP1965": 1323, "POP1970": 1362, "POP1975": 1403, "POP1980": 1454, "POP1985": 1508, "POP1990": 1546, "POP1995": 1584, "POP2000": 1561, "POP2005": 1525, "POP2010": 1513, "POP2015": 1504, "POP2020": 1506, "POP2025": 1515, "POP2050": 1520, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 710, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -22.925023, "numnum:min:LATITUDE": -34.858042, "numnum:sum:LATITUDE": -57.78306499999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -43.225021, "numnum:min:LONGITUDE": -56.171052, "numnum:sum:LONGITUDE": -99.396073, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 11748000, "numnum:min:POP_MAX": 1513000, "numnum:sum:POP_MAX": 13261000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2010175, "numnum:min:POP_MIN": 5324, "numnum:sum:POP_MIN": 2015499, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1821489, "numnum:min:POP_OTHER": 1276128, "numnum:sum:POP_OTHER": 3097617, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 17, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 5038018, "numnum:min:GEONAMEID": 3451190, "numnum:sum:GEONAMEID": 8489208, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2010175, "numnum:min:MAX_POP10": 1381747, "numnum:sum:MAX_POP10": 3391922, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 8118691, "numnum:min:MAX_POP20": 1381747, "numnum:sum:MAX_POP20": 9500438, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 8889292, "numnum:min:MAX_POP50": 1381747, "numnum:sum:MAX_POP50": 10271039, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 8889292, "numnum:min:MAX_POP300": 1381747, "numnum:sum:MAX_POP300": 10271039, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 8889292, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 8889292, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 347, "numnum:min:MIN_AREAKM": 316, "numnum:sum:MIN_AREAKM": 663, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1472, "numnum:min:MAX_AREAKM": 347, "numnum:sum:MAX_AREAKM": 1819, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 134, "numnum:min:MIN_AREAMI": 122, "numnum:sum:MIN_AREAMI": 256, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 568, "numnum:min:MAX_AREAMI": 134, "numnum:sum:MAX_AREAMI": 702, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 266, "numnum:min:MIN_PERKM": 203, "numnum:sum:MIN_PERKM": 469, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 691, "numnum:min:MAX_PERKM": 266, "numnum:sum:MAX_PERKM": 957, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 165, "numnum:min:MIN_PERMI": 126, "numnum:sum:MIN_PERMI": 291, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 429, "numnum:min:MAX_PERMI": 165, "numnum:sum:MAX_PERMI": 594, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -43.75, "numnum:min:MIN_BBXMIN": -56.291667, "numnum:sum:MIN_BBXMIN": -100.04166699999999, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -43.499182, "numnum:min:MAX_BBXMIN": -56.291667, "numnum:sum:MAX_BBXMIN": -99.790849, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -43.158333, "numnum:min:MIN_BBXMAX": -55.8, "numnum:sum:MIN_BBXMAX": -98.958333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -43.15, "numnum:min:MAX_BBXMAX": -55.8, "numnum:sum:MAX_BBXMAX": -98.94999999999999, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -23.033333, "numnum:min:MIN_BBYMIN": -34.933333, "numnum:sum:MIN_BBYMIN": -57.966666, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -23.033333, "numnum:min:MAX_BBYMIN": -34.933333, "numnum:sum:MAX_BBYMIN": -57.966666, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -22.837896, "numnum:min:MIN_BBYMAX": -34.65, "numnum:sum:MIN_BBYMAX": -57.487896, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -22.575, "numnum:min:MAX_BBYMAX": -34.65, "numnum:sum:MAX_BBYMAX": -57.224999999999997, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -43.407551, "numnum:min:MEAN_BBXC": -56.12273, "numnum:sum:MEAN_BBXC": -99.530281, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -22.856463, "numnum:min:MEAN_BBYC": -34.828337, "numnum:sum:MEAN_BBYC": -57.684799999999999, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 21, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 21, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 6023699, "numnum:min:GN_POP": 5324, "numnum:sum:GN_POP": 6029023, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 284, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 284, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 305, "numnum:min:GTOPO30": 19, "numnum:sum:GTOPO30": 324, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 579, "numnum:min:UN_FID": 489, "numnum:sum:UN_FID": 1068, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": -22.72, "numnum:min:UN_LAT": -34.92, "numnum:sum:UN_LAT": -57.64, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -43.45, "numnum:min:UN_LONG": -56.16, "numnum:sum:UN_LONG": -99.61, "numnum:count:POP1950": 2, "numnum:max:POP1950": 2950, "numnum:min:POP1950": 1212, "numnum:sum:POP1950": 4162, "numnum:count:POP1955": 2, "numnum:max:POP1955": 3592, "numnum:min:POP1955": 1248, "numnum:sum:POP1955": 4840, "numnum:count:POP1960": 2, "numnum:max:POP1960": 4374, "numnum:min:POP1960": 1285, "numnum:sum:POP1960": 5659, "numnum:count:POP1965": 2, "numnum:max:POP1965": 5387, "numnum:min:POP1965": 1323, "numnum:sum:POP1965": 6710, "numnum:count:POP1970": 2, "numnum:max:POP1970": 6637, "numnum:min:POP1970": 1362, "numnum:sum:POP1970": 7999, "numnum:count:POP1975": 2, "numnum:max:POP1975": 7557, "numnum:min:POP1975": 1403, "numnum:sum:POP1975": 8960, "numnum:count:POP1980": 2, "numnum:max:POP1980": 8583, "numnum:min:POP1980": 1454, "numnum:sum:POP1980": 10037, "numnum:count:POP1985": 2, "numnum:max:POP1985": 9086, "numnum:min:POP1985": 1508, "numnum:sum:POP1985": 10594, "numnum:count:POP1990": 2, "numnum:max:POP1990": 9595, "numnum:min:POP1990": 1546, "numnum:sum:POP1990": 11141, "numnum:count:POP1995": 2, "numnum:max:POP1995": 10174, "numnum:min:POP1995": 1584, "numnum:sum:POP1995": 11758, "numnum:count:POP2000": 2, "numnum:max:POP2000": 10803, "numnum:min:POP2000": 1561, "numnum:sum:POP2000": 12364, "numnum:count:POP2005": 2, "numnum:max:POP2005": 11469, "numnum:min:POP2005": 1525, "numnum:sum:POP2005": 12994, "numnum:count:POP2010": 2, "numnum:max:POP2010": 11748, "numnum:min:POP2010": 1513, "numnum:sum:POP2010": 13261, "numnum:count:POP2015": 2, "numnum:max:POP2015": 12171, "numnum:min:POP2015": 1504, "numnum:sum:POP2015": 13675, "numnum:count:POP2020": 2, "numnum:max:POP2020": 12775, "numnum:min:POP2020": 1506, "numnum:sum:POP2020": 14281, "numnum:count:POP2025": 2, "numnum:max:POP2025": 13179, "numnum:min:POP2025": 1515, "numnum:sum:POP2025": 14694, "numnum:count:POP2050": 2, "numnum:max:POP2050": 13413, "numnum:min:POP2050": 1520, "numnum:sum:POP2050": 14933, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.849875 ] } } ] } @@ -120,219 +122,207 @@ , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 2, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 600, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 3, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 49.273417, "numnum:min:LATITUDE": 37.740008, "numnum:sum:LATITUDE": 87.01342500000001, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -122.459978, "numnum:min:LONGITUDE": -123.121644, "numnum:sum:LONGITUDE": -245.581622, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3450000, "numnum:min:POP_MAX": 2313328, "numnum:sum:POP_MAX": 5763328, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 732072, "numnum:min:POP_MIN": 603502, "numnum:sum:POP_MIN": 1335574, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 482002, "numnum:min:POP_OTHER": 27400, "numnum:sum:POP_OTHER": 509402, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 6173331, "numnum:min:GEONAMEID": 5391959, "numnum:sum:GEONAMEID": 11565290, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1590116, "numnum:min:MAX_POP10": 988636, "numnum:sum:MAX_POP10": 2578752, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1588839, "numnum:min:MAX_POP20": 1130999, "numnum:sum:MAX_POP20": 2719838, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1590116, "numnum:min:MAX_POP50": 1371285, "numnum:sum:MAX_POP50": 2961401, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 4561697, "numnum:min:MAX_POP300": 1590116, "numnum:sum:MAX_POP300": 6151813, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 4561697, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 4561697, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 706, "numnum:min:MIN_AREAKM": 218, "numnum:sum:MIN_AREAKM": 924, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1748, "numnum:min:MAX_AREAKM": 708, "numnum:sum:MAX_AREAKM": 2456, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 273, "numnum:min:MIN_AREAMI": 84, "numnum:sum:MIN_AREAMI": 357, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 675, "numnum:min:MAX_AREAMI": 273, "numnum:sum:MAX_AREAMI": 948, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 398, "numnum:min:MIN_PERKM": 126, "numnum:sum:MIN_PERKM": 524, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 755, "numnum:min:MAX_PERKM": 405, "numnum:sum:MAX_PERKM": 1160, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 248, "numnum:min:MIN_PERMI": 78, "numnum:sum:MIN_PERMI": 326, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 469, "numnum:min:MAX_PERMI": 251, "numnum:sum:MAX_PERMI": 720, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -122.516667, "numnum:min:MIN_BBXMIN": -123.283333, "numnum:sum:MIN_BBXMIN": -245.8, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -122.516667, "numnum:min:MAX_BBXMIN": -123.283333, "numnum:sum:MAX_BBXMIN": -245.8, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -122.358333, "numnum:min:MIN_BBXMAX": -122.708333, "numnum:sum:MIN_BBXMAX": -245.066666, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -121.733333, "numnum:min:MAX_BBXMAX": -122.708333, "numnum:sum:MAX_BBXMAX": -244.441666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 49.1, "numnum:min:MIN_BBYMIN": 37.191667, "numnum:sum:MIN_BBYMIN": 86.291667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 49.1, "numnum:min:MAX_BBYMIN": 37.575, "numnum:sum:MAX_BBYMIN": 86.67500000000001, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 49.383333, "numnum:min:MIN_BBYMAX": 37.816667, "numnum:sum:MIN_BBYMAX": 87.2, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 49.383333, "numnum:min:MAX_BBYMAX": 38.041667, "numnum:sum:MAX_BBYMAX": 87.425, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -122.301354, "numnum:min:MEAN_BBXC": -122.982768, "numnum:sum:MEAN_BBXC": -245.284122, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 49.228888, "numnum:min:MEAN_BBYC": 37.622288, "numnum:sum:MEAN_BBYC": 86.851176, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1837969, "numnum:min:GN_POP": 732072, "numnum:sum:GN_POP": 2570041, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 16, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 16, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 63, "numnum:min:GTOPO30": 60, "numnum:sum:GTOPO30": 123, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 570, "numnum:min:UN_FID": 15, "numnum:sum:UN_FID": 585, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 49.27, "numnum:min:UN_LAT": 37.79, "numnum:sum:UN_LAT": 87.06, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -122.38, "numnum:min:UN_LONG": -122.96, "numnum:sum:UN_LONG": -245.33999999999998, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1855, "numnum:min:POP1950": 556, "numnum:sum:POP1950": 2411, "numnum:count:POP1955": 2, "numnum:max:POP1955": 2021, "numnum:min:POP1955": 588, "numnum:sum:POP1955": 2609, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2200, "numnum:min:POP1960": 620, "numnum:sum:POP1960": 2820, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2361, "numnum:min:POP1965": 836, "numnum:sum:POP1965": 3197, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2529, "numnum:min:POP1970": 1045, "numnum:sum:POP1970": 3574, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2590, "numnum:min:POP1975": 1150, "numnum:sum:POP1975": 3740, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2656, "numnum:min:POP1980": 1247, "numnum:sum:POP1980": 3903, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2805, "numnum:min:POP1985": 1359, "numnum:sum:POP1985": 4164, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2961, "numnum:min:POP1990": 1559, "numnum:sum:POP1990": 4520, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3095, "numnum:min:POP1995": 1789, "numnum:sum:POP1995": 4884, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3236, "numnum:min:POP2000": 1959, "numnum:sum:POP2000": 5195, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3387, "numnum:min:POP2005": 2093, "numnum:sum:POP2005": 5480, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3450, "numnum:min:POP2010": 2146, "numnum:sum:POP2010": 5596, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3544, "numnum:min:POP2015": 2219, "numnum:sum:POP2015": 5763, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3684, "numnum:min:POP2020": 2310, "numnum:sum:POP2020": 5994, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3803, "numnum:min:POP2025": 2380, "numnum:sum:POP2025": 6183, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3898, "numnum:min:POP2050": 2444, "numnum:sum:POP2050": 6342, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 2, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 600, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 3, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 49.273417, "numnum:min:LATITUDE": 37.740008, "numnum:sum:LATITUDE": 87.01342500000001, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -122.459978, "numnum:min:LONGITUDE": -123.121644, "numnum:sum:LONGITUDE": -245.581622, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3450000, "numnum:min:POP_MAX": 2313328, "numnum:sum:POP_MAX": 5763328, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 732072, "numnum:min:POP_MIN": 603502, "numnum:sum:POP_MIN": 1335574, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 482002, "numnum:min:POP_OTHER": 27400, "numnum:sum:POP_OTHER": 509402, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 6173331, "numnum:min:GEONAMEID": 5391959, "numnum:sum:GEONAMEID": 11565290, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1590116, "numnum:min:MAX_POP10": 988636, "numnum:sum:MAX_POP10": 2578752, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1588839, "numnum:min:MAX_POP20": 1130999, "numnum:sum:MAX_POP20": 2719838, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1590116, "numnum:min:MAX_POP50": 1371285, "numnum:sum:MAX_POP50": 2961401, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 4561697, "numnum:min:MAX_POP300": 1590116, "numnum:sum:MAX_POP300": 6151813, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 4561697, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 4561697, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 706, "numnum:min:MIN_AREAKM": 218, "numnum:sum:MIN_AREAKM": 924, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1748, "numnum:min:MAX_AREAKM": 708, "numnum:sum:MAX_AREAKM": 2456, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 273, "numnum:min:MIN_AREAMI": 84, "numnum:sum:MIN_AREAMI": 357, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 675, "numnum:min:MAX_AREAMI": 273, "numnum:sum:MAX_AREAMI": 948, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 398, "numnum:min:MIN_PERKM": 126, "numnum:sum:MIN_PERKM": 524, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 755, "numnum:min:MAX_PERKM": 405, "numnum:sum:MAX_PERKM": 1160, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 248, "numnum:min:MIN_PERMI": 78, "numnum:sum:MIN_PERMI": 326, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 469, "numnum:min:MAX_PERMI": 251, "numnum:sum:MAX_PERMI": 720, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -122.516667, "numnum:min:MIN_BBXMIN": -123.283333, "numnum:sum:MIN_BBXMIN": -245.8, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -122.516667, "numnum:min:MAX_BBXMIN": -123.283333, "numnum:sum:MAX_BBXMIN": -245.8, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -122.358333, "numnum:min:MIN_BBXMAX": -122.708333, "numnum:sum:MIN_BBXMAX": -245.066666, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -121.733333, "numnum:min:MAX_BBXMAX": -122.708333, "numnum:sum:MAX_BBXMAX": -244.441666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 49.1, "numnum:min:MIN_BBYMIN": 37.191667, "numnum:sum:MIN_BBYMIN": 86.291667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 49.1, "numnum:min:MAX_BBYMIN": 37.575, "numnum:sum:MAX_BBYMIN": 86.67500000000001, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 49.383333, "numnum:min:MIN_BBYMAX": 37.816667, "numnum:sum:MIN_BBYMAX": 87.2, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 49.383333, "numnum:min:MAX_BBYMAX": 38.041667, "numnum:sum:MAX_BBYMAX": 87.425, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -122.301354, "numnum:min:MEAN_BBXC": -122.982768, "numnum:sum:MEAN_BBXC": -245.284122, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 49.228888, "numnum:min:MEAN_BBYC": 37.622288, "numnum:sum:MEAN_BBYC": 86.851176, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1837969, "numnum:min:GN_POP": 732072, "numnum:sum:GN_POP": 2570041, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 16, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 16, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 63, "numnum:min:GTOPO30": 60, "numnum:sum:GTOPO30": 123, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 570, "numnum:min:UN_FID": 15, "numnum:sum:UN_FID": 585, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 49.27, "numnum:min:UN_LAT": 37.79, "numnum:sum:UN_LAT": 87.06, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -122.38, "numnum:min:UN_LONG": -122.96, "numnum:sum:UN_LONG": -245.33999999999998, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1855, "numnum:min:POP1950": 556, "numnum:sum:POP1950": 2411, "numnum:count:POP1955": 2, "numnum:max:POP1955": 2021, "numnum:min:POP1955": 588, "numnum:sum:POP1955": 2609, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2200, "numnum:min:POP1960": 620, "numnum:sum:POP1960": 2820, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2361, "numnum:min:POP1965": 836, "numnum:sum:POP1965": 3197, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2529, "numnum:min:POP1970": 1045, "numnum:sum:POP1970": 3574, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2590, "numnum:min:POP1975": 1150, "numnum:sum:POP1975": 3740, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2656, "numnum:min:POP1980": 1247, "numnum:sum:POP1980": 3903, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2805, "numnum:min:POP1985": 1359, "numnum:sum:POP1985": 4164, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2961, "numnum:min:POP1990": 1559, "numnum:sum:POP1990": 4520, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3095, "numnum:min:POP1995": 1789, "numnum:sum:POP1995": 4884, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3236, "numnum:min:POP2000": 1959, "numnum:sum:POP2000": 5195, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3387, "numnum:min:POP2005": 2093, "numnum:sum:POP2005": 5480, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3450, "numnum:min:POP2010": 2146, "numnum:sum:POP2010": 5596, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3544, "numnum:min:POP2015": 2219, "numnum:sum:POP2015": 5763, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3684, "numnum:min:POP2020": 2310, "numnum:sum:POP2020": 5994, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3803, "numnum:min:POP2025": 2380, "numnum:sum:POP2025": 6183, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3898, "numnum:min:POP2050": 2444, "numnum:sum:POP2050": 6342, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 1, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 900, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 1, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 2, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 39.739188, "numnum:min:LATITUDE": 33.989978, "numnum:sum:LATITUDE": 73.72916599999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -104.984016, "numnum:min:LONGITUDE": -118.179981, "numnum:sum:LONGITUDE": -223.163997, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 12500000, "numnum:min:POP_MAX": 2313000, "numnum:sum:POP_MAX": 14813000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3694820, "numnum:min:POP_MIN": 1548599, "numnum:sum:POP_MIN": 5243419, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1521278, "numnum:min:POP_OTHER": 142265, "numnum:sum:POP_OTHER": 1663543, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 5419384, "numnum:min:GEONAMEID": 5368361, "numnum:sum:GEONAMEID": 10787745, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 4976870, "numnum:min:MAX_POP10": 1548599, "numnum:sum:MAX_POP10": 6525469, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 6558538, "numnum:min:MAX_POP20": 2100407, "numnum:sum:MAX_POP20": 8658945, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 14868745, "numnum:min:MAX_POP50": 2174327, "numnum:sum:MAX_POP50": 17043072, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 14870543, "numnum:min:MAX_POP300": 2174327, "numnum:sum:MAX_POP300": 17044870, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 14903021, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 14903021, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1338, "numnum:min:MIN_AREAKM": 909, "numnum:sum:MIN_AREAKM": 2247, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 5803, "numnum:min:MAX_AREAKM": 1345, "numnum:sum:MAX_AREAKM": 7148, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 517, "numnum:min:MIN_AREAMI": 351, "numnum:sum:MIN_AREAMI": 868, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 2241, "numnum:min:MAX_AREAMI": 519, "numnum:sum:MAX_AREAMI": 2760, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 534, "numnum:min:MIN_PERKM": 371, "numnum:sum:MIN_PERKM": 905, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 2202, "numnum:min:MAX_PERKM": 606, "numnum:sum:MAX_PERKM": 2808, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 332, "numnum:min:MIN_PERMI": 231, "numnum:sum:MIN_PERMI": 563, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1369, "numnum:min:MAX_PERMI": 376, "numnum:sum:MAX_PERMI": 1745, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -105.241667, "numnum:min:MIN_BBXMIN": -118.991667, "numnum:sum:MIN_BBXMIN": -224.233334, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -105.241667, "numnum:min:MAX_BBXMIN": -118.966667, "numnum:sum:MAX_BBXMIN": -224.208334, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -104.866667, "numnum:min:MIN_BBXMAX": -117.857183, "numnum:sum:MIN_BBXMAX": -222.72385000000004, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -104.708333, "numnum:min:MAX_BBXMAX": -117.008333, "numnum:sum:MAX_BBXMAX": -221.71666599999998, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 39.5, "numnum:min:MIN_BBYMIN": 33.391667, "numnum:sum:MIN_BBYMIN": 72.891667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 39.5, "numnum:min:MAX_BBYMIN": 33.862631, "numnum:sum:MAX_BBYMIN": 73.362631, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 39.958333, "numnum:min:MIN_BBYMAX": 34.241667, "numnum:sum:MIN_BBYMAX": 74.2, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 40.025, "numnum:min:MAX_BBYMAX": 34.333333, "numnum:sum:MAX_BBYMAX": 74.358333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -104.993967, "numnum:min:MEAN_BBXC": -118.107478, "numnum:sum:MEAN_BBXC": -223.101445, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 39.72985, "numnum:min:MEAN_BBYC": 33.980609, "numnum:sum:MEAN_BBYC": 73.710459, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 0, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 0, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 3694820, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 3694820, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 89, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 89, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 115, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 115, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 547, "numnum:min:UN_FID": 537, "numnum:sum:UN_FID": 1084, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 39.57, "numnum:min:UN_LAT": 34, "numnum:sum:UN_LAT": 73.57, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -105.07, "numnum:min:UN_LONG": -118.25, "numnum:sum:UN_LONG": -223.32, "numnum:count:POP1950": 2, "numnum:max:POP1950": 4046, "numnum:min:POP1950": 505, "numnum:sum:POP1950": 4551, "numnum:count:POP1955": 2, "numnum:max:POP1955": 5154, "numnum:min:POP1955": 641, "numnum:sum:POP1955": 5795, "numnum:count:POP1960": 2, "numnum:max:POP1960": 6530, "numnum:min:POP1960": 809, "numnum:sum:POP1960": 7339, "numnum:count:POP1965": 2, "numnum:max:POP1965": 7408, "numnum:min:POP1965": 923, "numnum:sum:POP1965": 8331, "numnum:count:POP1970": 2, "numnum:max:POP1970": 8378, "numnum:min:POP1970": 1054, "numnum:sum:POP1970": 9432, "numnum:count:POP1975": 2, "numnum:max:POP1975": 8926, "numnum:min:POP1975": 1198, "numnum:sum:POP1975": 10124, "numnum:count:POP1980": 2, "numnum:max:POP1980": 9512, "numnum:min:POP1980": 1356, "numnum:sum:POP1980": 10868, "numnum:count:POP1985": 2, "numnum:max:POP1985": 10181, "numnum:min:POP1985": 1437, "numnum:sum:POP1985": 11618, "numnum:count:POP1990": 2, "numnum:max:POP1990": 10883, "numnum:min:POP1990": 1528, "numnum:sum:POP1990": 12411, "numnum:count:POP1995": 2, "numnum:max:POP1995": 11339, "numnum:min:POP1995": 1747, "numnum:sum:POP1995": 13086, "numnum:count:POP2000": 2, "numnum:max:POP2000": 11814, "numnum:min:POP2000": 1998, "numnum:sum:POP2000": 13812, "numnum:count:POP2005": 2, "numnum:max:POP2005": 12307, "numnum:min:POP2005": 2241, "numnum:sum:POP2005": 14548, "numnum:count:POP2010": 2, "numnum:max:POP2010": 12500, "numnum:min:POP2010": 2313, "numnum:sum:POP2010": 14813, "numnum:count:POP2015": 2, "numnum:max:POP2015": 12773, "numnum:min:POP2015": 2396, "numnum:sum:POP2015": 15169, "numnum:count:POP2020": 2, "numnum:max:POP2020": 13160, "numnum:min:POP2020": 2502, "numnum:sum:POP2020": 15662, "numnum:count:POP2025": 2, "numnum:max:POP2025": 13461, "numnum:min:POP2025": 2590, "numnum:sum:POP2025": 16051, "numnum:count:POP2050": 2, "numnum:max:POP2050": 13672, "numnum:min:POP2050": 2661, "numnum:sum:POP2050": 16333, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -118.168945, 33.979809 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 1, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 900, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 1, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 2, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 39.739188, "numnum:min:LATITUDE": 33.989978, "numnum:sum:LATITUDE": 73.72916599999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -104.984016, "numnum:min:LONGITUDE": -118.179981, "numnum:sum:LONGITUDE": -223.163997, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 12500000, "numnum:min:POP_MAX": 2313000, "numnum:sum:POP_MAX": 14813000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3694820, "numnum:min:POP_MIN": 1548599, "numnum:sum:POP_MIN": 5243419, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1521278, "numnum:min:POP_OTHER": 142265, "numnum:sum:POP_OTHER": 1663543, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 5419384, "numnum:min:GEONAMEID": 5368361, "numnum:sum:GEONAMEID": 10787745, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 4976870, "numnum:min:MAX_POP10": 1548599, "numnum:sum:MAX_POP10": 6525469, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 6558538, "numnum:min:MAX_POP20": 2100407, "numnum:sum:MAX_POP20": 8658945, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 14868745, "numnum:min:MAX_POP50": 2174327, "numnum:sum:MAX_POP50": 17043072, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 14870543, "numnum:min:MAX_POP300": 2174327, "numnum:sum:MAX_POP300": 17044870, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 14903021, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 14903021, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1338, "numnum:min:MIN_AREAKM": 909, "numnum:sum:MIN_AREAKM": 2247, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 5803, "numnum:min:MAX_AREAKM": 1345, "numnum:sum:MAX_AREAKM": 7148, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 517, "numnum:min:MIN_AREAMI": 351, "numnum:sum:MIN_AREAMI": 868, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 2241, "numnum:min:MAX_AREAMI": 519, "numnum:sum:MAX_AREAMI": 2760, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 534, "numnum:min:MIN_PERKM": 371, "numnum:sum:MIN_PERKM": 905, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 2202, "numnum:min:MAX_PERKM": 606, "numnum:sum:MAX_PERKM": 2808, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 332, "numnum:min:MIN_PERMI": 231, "numnum:sum:MIN_PERMI": 563, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1369, "numnum:min:MAX_PERMI": 376, "numnum:sum:MAX_PERMI": 1745, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -105.241667, "numnum:min:MIN_BBXMIN": -118.991667, "numnum:sum:MIN_BBXMIN": -224.233334, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -105.241667, "numnum:min:MAX_BBXMIN": -118.966667, "numnum:sum:MAX_BBXMIN": -224.208334, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -104.866667, "numnum:min:MIN_BBXMAX": -117.857183, "numnum:sum:MIN_BBXMAX": -222.72385000000004, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -104.708333, "numnum:min:MAX_BBXMAX": -117.008333, "numnum:sum:MAX_BBXMAX": -221.71666599999998, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 39.5, "numnum:min:MIN_BBYMIN": 33.391667, "numnum:sum:MIN_BBYMIN": 72.891667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 39.5, "numnum:min:MAX_BBYMIN": 33.862631, "numnum:sum:MAX_BBYMIN": 73.362631, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 39.958333, "numnum:min:MIN_BBYMAX": 34.241667, "numnum:sum:MIN_BBYMAX": 74.2, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 40.025, "numnum:min:MAX_BBYMAX": 34.333333, "numnum:sum:MAX_BBYMAX": 74.358333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -104.993967, "numnum:min:MEAN_BBXC": -118.107478, "numnum:sum:MEAN_BBXC": -223.101445, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 39.72985, "numnum:min:MEAN_BBYC": 33.980609, "numnum:sum:MEAN_BBYC": 73.710459, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 0, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 0, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 3694820, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 3694820, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 89, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 89, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 115, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 115, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 547, "numnum:min:UN_FID": 537, "numnum:sum:UN_FID": 1084, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 39.57, "numnum:min:UN_LAT": 34, "numnum:sum:UN_LAT": 73.57, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -105.07, "numnum:min:UN_LONG": -118.25, "numnum:sum:UN_LONG": -223.32, "numnum:count:POP1950": 2, "numnum:max:POP1950": 4046, "numnum:min:POP1950": 505, "numnum:sum:POP1950": 4551, "numnum:count:POP1955": 2, "numnum:max:POP1955": 5154, "numnum:min:POP1955": 641, "numnum:sum:POP1955": 5795, "numnum:count:POP1960": 2, "numnum:max:POP1960": 6530, "numnum:min:POP1960": 809, "numnum:sum:POP1960": 7339, "numnum:count:POP1965": 2, "numnum:max:POP1965": 7408, "numnum:min:POP1965": 923, "numnum:sum:POP1965": 8331, "numnum:count:POP1970": 2, "numnum:max:POP1970": 8378, "numnum:min:POP1970": 1054, "numnum:sum:POP1970": 9432, "numnum:count:POP1975": 2, "numnum:max:POP1975": 8926, "numnum:min:POP1975": 1198, "numnum:sum:POP1975": 10124, "numnum:count:POP1980": 2, "numnum:max:POP1980": 9512, "numnum:min:POP1980": 1356, "numnum:sum:POP1980": 10868, "numnum:count:POP1985": 2, "numnum:max:POP1985": 10181, "numnum:min:POP1985": 1437, "numnum:sum:POP1985": 11618, "numnum:count:POP1990": 2, "numnum:max:POP1990": 10883, "numnum:min:POP1990": 1528, "numnum:sum:POP1990": 12411, "numnum:count:POP1995": 2, "numnum:max:POP1995": 11339, "numnum:min:POP1995": 1747, "numnum:sum:POP1995": 13086, "numnum:count:POP2000": 2, "numnum:max:POP2000": 11814, "numnum:min:POP2000": 1998, "numnum:sum:POP2000": 13812, "numnum:count:POP2005": 2, "numnum:max:POP2005": 12307, "numnum:min:POP2005": 2241, "numnum:sum:POP2005": 14548, "numnum:count:POP2010": 2, "numnum:max:POP2010": 12500, "numnum:min:POP2010": 2313, "numnum:sum:POP2010": 14813, "numnum:count:POP2015": 2, "numnum:max:POP2015": 12773, "numnum:min:POP2015": 2396, "numnum:sum:POP2015": 15169, "numnum:count:POP2020": 2, "numnum:max:POP2020": 13160, "numnum:min:POP2020": 2502, "numnum:sum:POP2020": 15662, "numnum:count:POP2025": 2, "numnum:max:POP2025": 13461, "numnum:min:POP2025": 2590, "numnum:sum:POP2025": 16051, "numnum:count:POP2050": 2, "numnum:max:POP2050": 13672, "numnum:min:POP2050": 2661, "numnum:sum:POP2050": 16333, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -118.168945, 33.979809 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo León", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 2, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 1200, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 5, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 29.819974, "numnum:min:LATITUDE": 19.442442, "numnum:sum:LATITUDE": 74.932411, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -95.339979, "numnum:min:LONGITUDE": -100.329985, "numnum:sum:LONGITUDE": -294.800952, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 19028000, "numnum:min:POP_MAX": 3712000, "numnum:sum:POP_MAX": 27199000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 10811002, "numnum:min:POP_MIN": 1122874, "numnum:sum:POP_MIN": 15581450, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 10018444, "numnum:min:POP_OTHER": 3225636, "numnum:sum:POP_OTHER": 16851696, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 38, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 38, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 4699066, "numnum:min:GEONAMEID": 3530597, "numnum:sum:GEONAMEID": 12225128, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 10811002, "numnum:min:MAX_POP10": 3296184, "numnum:sum:MAX_POP10": 17754760, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 17250245, "numnum:min:MAX_POP20": 3296184, "numnum:sum:MAX_POP20": 24833507, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 18948089, "numnum:min:MAX_POP50": 3296184, "numnum:sum:MAX_POP50": 26596614, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 18948089, "numnum:min:MAX_POP300": 3296184, "numnum:sum:MAX_POP300": 26596614, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 18948089, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 18948089, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 2388, "numnum:min:MIN_AREAKM": 594, "numnum:sum:MIN_AREAKM": 3877, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 3041, "numnum:min:MAX_AREAKM": 594, "numnum:sum:MAX_AREAKM": 5715, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 922, "numnum:min:MIN_AREAMI": 229, "numnum:sum:MIN_AREAMI": 1496, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 1174, "numnum:min:MAX_AREAMI": 229, "numnum:sum:MAX_AREAMI": 2206, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 1257, "numnum:min:MIN_PERKM": 208, "numnum:sum:MIN_PERKM": 1721, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 1773, "numnum:min:MAX_PERKM": 208, "numnum:sum:MAX_PERKM": 2870, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 781, "numnum:min:MIN_PERMI": 130, "numnum:sum:MIN_PERMI": 1070, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 1101, "numnum:min:MAX_PERMI": 130, "numnum:sum:MAX_PERMI": 1783, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -95.841667, "numnum:min:MIN_BBXMIN": -100.5, "numnum:sum:MIN_BBXMIN": -295.70833400000006, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -95.841667, "numnum:min:MAX_BBXMIN": -100.5, "numnum:sum:MAX_BBXMIN": -295.70833400000006, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -95.133333, "numnum:min:MIN_BBXMAX": -100.125, "numnum:sum:MIN_BBXMAX": -294.276498, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -95, "numnum:min:MAX_BBXMAX": -100.125, "numnum:sum:MAX_BBXMAX": -293.933333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 29.475, "numnum:min:MIN_BBYMIN": 19.2, "numnum:sum:MIN_BBYMIN": 74.25, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 29.491667, "numnum:min:MAX_BBYMIN": 19.233333, "numnum:sum:MAX_BBYMIN": 74.3, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 30.258915, "numnum:min:MIN_BBYMAX": 19.640315, "numnum:sum:MIN_BBYMAX": 75.74923, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 30.266667, "numnum:min:MAX_BBYMAX": 19.908333, "numnum:sum:MAX_BBYMAX": 76.025, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -95.431928, "numnum:min:MEAN_BBXC": -100.290632, "numnum:sum:MEAN_BBXC": -294.83921499999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 29.810477, "numnum:min:MEAN_BBYC": 19.473748, "numnum:sum:MEAN_BBYC": 75.000355, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 19, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 28, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 11285654, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 12408528, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 2216, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 2779, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 542, "numnum:min:UN_FID": 352, "numnum:sum:UN_FID": 1253, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 29.77, "numnum:min:UN_LAT": 19.42, "numnum:sum:UN_LAT": 74.86, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -95.4, "numnum:min:UN_LONG": -100.31, "numnum:sum:UN_LONG": -294.83000000000006, "numnum:count:POP1950": 3, "numnum:max:POP1950": 2883, "numnum:min:POP1950": 356, "numnum:sum:POP1950": 3948, "numnum:count:POP1955": 3, "numnum:max:POP1955": 3801, "numnum:min:POP1955": 498, "numnum:sum:POP1955": 5203, "numnum:count:POP1960": 3, "numnum:max:POP1960": 5012, "numnum:min:POP1960": 698, "numnum:sum:POP1960": 6861, "numnum:count:POP1965": 3, "numnum:max:POP1965": 6653, "numnum:min:POP1965": 943, "numnum:sum:POP1965": 8992, "numnum:count:POP1970": 3, "numnum:max:POP1970": 8769, "numnum:min:POP1970": 1267, "numnum:sum:POP1970": 11729, "numnum:count:POP1975": 3, "numnum:max:POP1975": 10690, "numnum:min:POP1975": 1589, "numnum:sum:POP1975": 14309, "numnum:count:POP1980": 3, "numnum:max:POP1980": 13010, "numnum:min:POP1980": 1992, "numnum:sum:POP1980": 17426, "numnum:count:POP1985": 3, "numnum:max:POP1985": 14109, "numnum:min:POP1985": 2273, "numnum:sum:POP1985": 19040, "numnum:count:POP1990": 3, "numnum:max:POP1990": 15312, "numnum:min:POP1990": 2594, "numnum:sum:POP1990": 20828, "numnum:count:POP1995": 3, "numnum:max:POP1995": 16811, "numnum:min:POP1995": 2961, "numnum:sum:POP1995": 23125, "numnum:count:POP2000": 3, "numnum:max:POP2000": 18022, "numnum:min:POP2000": 3266, "numnum:sum:POP2000": 25137, "numnum:count:POP2005": 3, "numnum:max:POP2005": 18735, "numnum:min:POP2005": 3579, "numnum:sum:POP2005": 26638, "numnum:count:POP2010": 3, "numnum:max:POP2010": 19028, "numnum:min:POP2010": 3712, "numnum:sum:POP2010": 27199, "numnum:count:POP2015": 3, "numnum:max:POP2015": 19485, "numnum:min:POP2015": 3901, "numnum:sum:POP2015": 27995, "numnum:count:POP2020": 3, "numnum:max:POP2020": 20189, "numnum:min:POP2020": 4140, "numnum:sum:POP2020": 29119, "numnum:count:POP2025": 3, "numnum:max:POP2025": 20695, "numnum:min:POP2025": 4298, "numnum:sum:POP2025": 29929, "numnum:count:POP2050": 3, "numnum:max:POP2050": 21009, "numnum:min:POP2050": 4413, "numnum:sum:POP2050": 30471, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.681137 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo León", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 2, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 600, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 3, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 29.819974, "numnum:min:LATITUDE": 25.669995, "numnum:sum:LATITUDE": 55.489969, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -95.339979, "numnum:min:LONGITUDE": -100.329985, "numnum:sum:LONGITUDE": -195.669964, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 5, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 4459000, "numnum:min:POP_MAX": 3712000, "numnum:sum:POP_MAX": 8171000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3647574, "numnum:min:POP_MIN": 1122874, "numnum:sum:POP_MIN": 4770448, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3607616, "numnum:min:POP_OTHER": 3225636, "numnum:sum:POP_OTHER": 6833252, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 4699066, "numnum:min:GEONAMEID": 3995465, "numnum:sum:GEONAMEID": 8694531, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3647574, "numnum:min:MAX_POP10": 3296184, "numnum:sum:MAX_POP10": 6943758, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 4287078, "numnum:min:MAX_POP20": 3296184, "numnum:sum:MAX_POP20": 7583262, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 4352341, "numnum:min:MAX_POP50": 3296184, "numnum:sum:MAX_POP50": 7648525, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 4352341, "numnum:min:MAX_POP300": 3296184, "numnum:sum:MAX_POP300": 7648525, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 2388, "numnum:min:MIN_AREAKM": 594, "numnum:sum:MIN_AREAKM": 2982, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 3041, "numnum:min:MAX_AREAKM": 594, "numnum:sum:MAX_AREAKM": 3635, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 922, "numnum:min:MIN_AREAMI": 229, "numnum:sum:MIN_AREAMI": 1151, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1174, "numnum:min:MAX_AREAMI": 229, "numnum:sum:MAX_AREAMI": 1403, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 1257, "numnum:min:MIN_PERKM": 208, "numnum:sum:MIN_PERKM": 1465, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1773, "numnum:min:MAX_PERKM": 208, "numnum:sum:MAX_PERKM": 1981, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 781, "numnum:min:MIN_PERMI": 130, "numnum:sum:MIN_PERMI": 911, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1101, "numnum:min:MAX_PERMI": 130, "numnum:sum:MAX_PERMI": 1231, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -95.841667, "numnum:min:MIN_BBXMIN": -100.5, "numnum:sum:MIN_BBXMIN": -196.341667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -95.841667, "numnum:min:MAX_BBXMIN": -100.5, "numnum:sum:MAX_BBXMIN": -196.341667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -95.133333, "numnum:min:MIN_BBXMAX": -100.125, "numnum:sum:MIN_BBXMAX": -195.258333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -95, "numnum:min:MAX_BBXMAX": -100.125, "numnum:sum:MAX_BBXMAX": -195.125, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 29.475, "numnum:min:MIN_BBYMIN": 25.575, "numnum:sum:MIN_BBYMIN": 55.05, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 29.491667, "numnum:min:MAX_BBYMIN": 25.575, "numnum:sum:MAX_BBYMIN": 55.066666999999998, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 30.258915, "numnum:min:MIN_BBYMAX": 25.85, "numnum:sum:MIN_BBYMAX": 56.108914999999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 30.266667, "numnum:min:MAX_BBYMAX": 25.85, "numnum:sum:MAX_BBYMAX": 56.11666700000001, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -95.431928, "numnum:min:MEAN_BBXC": -100.290632, "numnum:sum:MEAN_BBXC": -195.72256, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 29.810477, "numnum:min:MEAN_BBYC": 25.71613, "numnum:sum:MEAN_BBYC": 55.526607, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 19, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 19, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1122874, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 1122874, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 563, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 563, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 542, "numnum:min:UN_FID": 359, "numnum:sum:UN_FID": 901, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 29.77, "numnum:min:UN_LAT": 25.67, "numnum:sum:UN_LAT": 55.44, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -95.4, "numnum:min:UN_LONG": -100.31, "numnum:sum:UN_LONG": -195.71, "numnum:count:POP1950": 2, "numnum:max:POP1950": 709, "numnum:min:POP1950": 356, "numnum:sum:POP1950": 1065, "numnum:count:POP1955": 2, "numnum:max:POP1955": 904, "numnum:min:POP1955": 498, "numnum:sum:POP1955": 1402, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1151, "numnum:min:POP1960": 698, "numnum:sum:POP1960": 1849, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1396, "numnum:min:POP1965": 943, "numnum:sum:POP1965": 2339, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1693, "numnum:min:POP1970": 1267, "numnum:sum:POP1970": 2960, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2030, "numnum:min:POP1975": 1589, "numnum:sum:POP1975": 3619, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2424, "numnum:min:POP1980": 1992, "numnum:sum:POP1980": 4416, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2658, "numnum:min:POP1985": 2273, "numnum:sum:POP1985": 4931, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2922, "numnum:min:POP1990": 2594, "numnum:sum:POP1990": 5516, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3353, "numnum:min:POP1995": 2961, "numnum:sum:POP1995": 6314, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3849, "numnum:min:POP2000": 3266, "numnum:sum:POP2000": 7115, "numnum:count:POP2005": 2, "numnum:max:POP2005": 4324, "numnum:min:POP2005": 3579, "numnum:sum:POP2005": 7903, "numnum:count:POP2010": 2, "numnum:max:POP2010": 4459, "numnum:min:POP2010": 3712, "numnum:sum:POP2010": 8171, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4609, "numnum:min:POP2015": 3901, "numnum:sum:POP2015": 8510, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4790, "numnum:min:POP2020": 4140, "numnum:sum:POP2020": 8930, "numnum:count:POP2025": 2, "numnum:max:POP2025": 4936, "numnum:min:POP2025": 4298, "numnum:sum:POP2025": 9234, "numnum:count:POP2050": 2, "numnum:max:POP2050": 5049, "numnum:min:POP2050": 4413, "numnum:sum:POP2050": 9462, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.681137 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 41.829991, "numnum:min:LATITUDE": 14.621135, "numnum:sum:LATITUDE": 56.451126, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -87.750055, "numnum:min:LONGITUDE": -90.526966, "numnum:sum:LONGITUDE": -178.277021, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 8990000, "numnum:min:POP_MAX": 1024000, "numnum:sum:POP_MAX": 10014000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2841952, "numnum:min:POP_MIN": 994938, "numnum:sum:POP_MIN": 3836890, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3635101, "numnum:min:POP_OTHER": 2391150, "numnum:sum:POP_OTHER": 6026251, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 4887398, "numnum:min:GEONAMEID": 3598132, "numnum:sum:GEONAMEID": 8485530, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3747798, "numnum:min:MAX_POP10": 2420941, "numnum:sum:MAX_POP10": 6168739, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 5069998, "numnum:min:MAX_POP20": 2417882, "numnum:sum:MAX_POP20": 7487880, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 8416660, "numnum:min:MAX_POP50": 2419489, "numnum:sum:MAX_POP50": 10836149, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 8416660, "numnum:min:MAX_POP300": 2419489, "numnum:sum:MAX_POP300": 10836149, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 8450289, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 8450289, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1345, "numnum:min:MIN_AREAKM": 410, "numnum:sum:MIN_AREAKM": 1755, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 4804, "numnum:min:MAX_AREAKM": 419, "numnum:sum:MAX_AREAKM": 5223, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 519, "numnum:min:MIN_AREAMI": 158, "numnum:sum:MIN_AREAMI": 677, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1855, "numnum:min:MAX_AREAMI": 162, "numnum:sum:MAX_AREAMI": 2017, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 471, "numnum:min:MIN_PERKM": 274, "numnum:sum:MIN_PERKM": 745, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 2946, "numnum:min:MAX_PERKM": 288, "numnum:sum:MAX_PERKM": 3234, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 293, "numnum:min:MIN_PERMI": 170, "numnum:sum:MIN_PERMI": 463, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1830, "numnum:min:MAX_PERMI": 179, "numnum:sum:MAX_PERMI": 2009, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -88.408333, "numnum:min:MIN_BBXMIN": -90.658333, "numnum:sum:MIN_BBXMIN": -179.066666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -88.03629, "numnum:min:MAX_BBXMIN": -90.658333, "numnum:sum:MAX_BBXMIN": -178.69462299999999, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -87.528138, "numnum:min:MIN_BBXMAX": -90.425, "numnum:sum:MIN_BBXMAX": -177.953138, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -87.125, "numnum:min:MAX_BBXMAX": -90.425, "numnum:sum:MAX_BBXMAX": -177.55, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 41.391667, "numnum:min:MIN_BBYMIN": 14.433333, "numnum:sum:MIN_BBYMIN": 55.824999999999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 41.458333, "numnum:min:MAX_BBYMIN": 14.441667, "numnum:sum:MAX_BBYMIN": 55.900000000000009, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 42.000972, "numnum:min:MIN_BBYMAX": 14.783333, "numnum:sum:MIN_BBYMAX": 56.784304999999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 42.491667, "numnum:min:MAX_BBYMAX": 14.783333, "numnum:sum:MAX_BBYMAX": 57.275, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -87.85874, "numnum:min:MEAN_BBXC": -90.54419, "numnum:sum:MEAN_BBXC": -178.40293, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 41.832719, "numnum:min:MEAN_BBYC": 14.603015, "numnum:sum:MEAN_BBYC": 56.435734, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 7, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 7, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2841952, "numnum:min:GN_POP": 994938, "numnum:sum:GN_POP": 3836890, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 179, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 179, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1533, "numnum:min:GTOPO30": 181, "numnum:sum:GTOPO30": 1714, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 531, "numnum:min:UN_FID": 206, "numnum:sum:UN_FID": 737, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 41.82, "numnum:min:UN_LAT": 14.61, "numnum:sum:UN_LAT": 56.43, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -87.64, "numnum:min:UN_LONG": -90.52, "numnum:sum:UN_LONG": -178.16, "numnum:count:POP1950": 2, "numnum:max:POP1950": 4999, "numnum:min:POP1950": 287, "numnum:sum:POP1950": 5286, "numnum:count:POP1955": 2, "numnum:max:POP1955": 5565, "numnum:min:POP1955": 370, "numnum:sum:POP1955": 5935, "numnum:count:POP1960": 2, "numnum:max:POP1960": 6183, "numnum:min:POP1960": 476, "numnum:sum:POP1960": 6659, "numnum:count:POP1965": 2, "numnum:max:POP1965": 6639, "numnum:min:POP1965": 592, "numnum:sum:POP1965": 7231, "numnum:count:POP1970": 2, "numnum:max:POP1970": 7106, "numnum:min:POP1970": 660, "numnum:sum:POP1970": 7766, "numnum:count:POP1975": 2, "numnum:max:POP1975": 7160, "numnum:min:POP1975": 715, "numnum:sum:POP1975": 7875, "numnum:count:POP1980": 2, "numnum:max:POP1980": 7216, "numnum:min:POP1980": 749, "numnum:sum:POP1980": 7965, "numnum:count:POP1985": 2, "numnum:max:POP1985": 7285, "numnum:min:POP1985": 776, "numnum:sum:POP1985": 8061, "numnum:count:POP1990": 2, "numnum:max:POP1990": 7374, "numnum:min:POP1990": 803, "numnum:sum:POP1990": 8177, "numnum:count:POP1995": 2, "numnum:max:POP1995": 7839, "numnum:min:POP1995": 839, "numnum:sum:POP1995": 8678, "numnum:count:POP2000": 2, "numnum:max:POP2000": 8333, "numnum:min:POP2000": 908, "numnum:sum:POP2000": 9241, "numnum:count:POP2005": 2, "numnum:max:POP2005": 8820, "numnum:min:POP2005": 984, "numnum:sum:POP2005": 9804, "numnum:count:POP2010": 2, "numnum:max:POP2010": 8990, "numnum:min:POP2010": 1024, "numnum:sum:POP2010": 10014, "numnum:count:POP2015": 2, "numnum:max:POP2015": 9211, "numnum:min:POP2015": 1104, "numnum:sum:POP2015": 10315, "numnum:count:POP2020": 2, "numnum:max:POP2020": 9516, "numnum:min:POP2020": 1281, "numnum:sum:POP2020": 10797, "numnum:count:POP2025": 2, "numnum:max:POP2025": 9756, "numnum:min:POP2025": 1481, "numnum:sum:POP2025": 11237, "numnum:count:POP2050": 2, "numnum:max:POP2050": 9932, "numnum:min:POP2050": 1690, "numnum:sum:POP2050": 11622, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de México", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de México", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1310, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 43.69998, "numnum:min:LATITUDE": 14.621135, "numnum:sum:LATITUDE": 119.593548, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": -79.420021, "numnum:min:LONGITUDE": -99.130988, "numnum:sum:LONGITUDE": -356.82803, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 19028000, "numnum:min:POP_MAX": 1024000, "numnum:sum:POP_MAX": 34255000, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 10811002, "numnum:min:POP_MIN": 994938, "numnum:sum:POP_MIN": 18582313, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 10018444, "numnum:min:POP_OTHER": 2391150, "numnum:sum:POP_OTHER": 19793924, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 52, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 49, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 6167865, "numnum:min:GEONAMEID": 3530597, "numnum:sum:GEONAMEID": 18183992, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 10811002, "numnum:min:MAX_POP10": 2420941, "numnum:sum:MAX_POP10": 20914162, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 17250245, "numnum:min:MAX_POP20": 2417882, "numnum:sum:MAX_POP20": 29115469, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 18948089, "numnum:min:MAX_POP50": 2419489, "numnum:sum:MAX_POP50": 34974993, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 18948089, "numnum:min:MAX_POP300": 2419489, "numnum:sum:MAX_POP300": 34974993, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 18948089, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 32589133, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 1000, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 1432, "numnum:min:MIN_AREAKM": 410, "numnum:sum:MIN_AREAKM": 4082, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 4804, "numnum:min:MAX_AREAKM": 419, "numnum:sum:MAX_AREAKM": 9589, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 553, "numnum:min:MIN_AREAMI": 158, "numnum:sum:MIN_AREAMI": 1575, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 1855, "numnum:min:MAX_AREAMI": 162, "numnum:sum:MAX_AREAMI": 3703, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 471, "numnum:min:MIN_PERKM": 256, "numnum:sum:MIN_PERKM": 1465, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 2946, "numnum:min:MAX_PERKM": 288, "numnum:sum:MAX_PERKM": 5284, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 293, "numnum:min:MIN_PERMI": 159, "numnum:sum:MIN_PERMI": 911, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 1830, "numnum:min:MAX_PERMI": 179, "numnum:sum:MAX_PERMI": 3282, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": -80.008333, "numnum:min:MIN_BBXMIN": -99.366667, "numnum:sum:MIN_BBXMIN": -358.441666, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": -79.806554, "numnum:min:MAX_BBXMIN": -99.366667, "numnum:sum:MAX_BBXMIN": -357.867844, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": -79.130272, "numnum:min:MIN_BBXMAX": -99.018165, "numnum:sum:MIN_BBXMAX": -356.10157499999999, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": -78.608333, "numnum:min:MAX_BBXMAX": -98.808333, "numnum:sum:MAX_BBXMAX": -354.96666600000006, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 43.141667, "numnum:min:MIN_BBYMIN": 14.433333, "numnum:sum:MIN_BBYMIN": 118.166667, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 43.475, "numnum:min:MAX_BBYMIN": 14.441667, "numnum:sum:MAX_BBYMIN": 118.60833299999999, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 44.090162, "numnum:min:MIN_BBYMAX": 14.783333, "numnum:sum:MIN_BBYMAX": 120.514782, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 44.125, "numnum:min:MAX_BBYMAX": 14.783333, "numnum:sum:MAX_BBYMAX": 121.308333, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": -79.464213, "numnum:min:MEAN_BBXC": -99.116655, "numnum:sum:MEAN_BBXC": -356.983798, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 43.712937, "numnum:min:MEAN_BBYC": 14.603015, "numnum:sum:MEAN_BBYC": 119.622419, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 9, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 24, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 11285654, "numnum:min:GN_POP": 994938, "numnum:sum:GN_POP": 19734735, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 179, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 179, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 2216, "numnum:min:GTOPO30": 173, "numnum:sum:GTOPO30": 4103, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 531, "numnum:min:UN_FID": 14, "numnum:sum:UN_FID": 1103, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 43.72, "numnum:min:UN_LAT": 14.61, "numnum:sum:UN_LAT": 119.57, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": -79.41, "numnum:min:UN_LONG": -99.12, "numnum:sum:UN_LONG": -356.68999999999996, "numnum:count:POP1950": 4, "numnum:max:POP1950": 4999, "numnum:min:POP1950": 287, "numnum:sum:POP1950": 9237, "numnum:count:POP1955": 4, "numnum:max:POP1955": 5565, "numnum:min:POP1955": 370, "numnum:sum:POP1955": 11101, "numnum:count:POP1960": 4, "numnum:max:POP1960": 6183, "numnum:min:POP1960": 476, "numnum:sum:POP1960": 13415, "numnum:count:POP1965": 4, "numnum:max:POP1965": 6653, "numnum:min:POP1965": 592, "numnum:sum:POP1965": 15977, "numnum:count:POP1970": 4, "numnum:max:POP1970": 8769, "numnum:min:POP1970": 660, "numnum:sum:POP1970": 19070, "numnum:count:POP1975": 4, "numnum:max:POP1975": 10690, "numnum:min:POP1975": 715, "numnum:sum:POP1975": 21335, "numnum:count:POP1980": 4, "numnum:max:POP1980": 13010, "numnum:min:POP1980": 749, "numnum:sum:POP1980": 23983, "numnum:count:POP1985": 4, "numnum:max:POP1985": 14109, "numnum:min:POP1985": 776, "numnum:sum:POP1985": 25525, "numnum:count:POP1990": 4, "numnum:max:POP1990": 15312, "numnum:min:POP1990": 803, "numnum:sum:POP1990": 27296, "numnum:count:POP1995": 4, "numnum:max:POP1995": 16811, "numnum:min:POP1995": 839, "numnum:sum:POP1995": 29686, "numnum:count:POP2000": 4, "numnum:max:POP2000": 18022, "numnum:min:POP2000": 908, "numnum:sum:POP2000": 31870, "numnum:count:POP2005": 4, "numnum:max:POP2005": 18735, "numnum:min:POP2005": 984, "numnum:sum:POP2005": 33574, "numnum:count:POP2010": 4, "numnum:max:POP2010": 19028, "numnum:min:POP2010": 1024, "numnum:sum:POP2010": 34255, "numnum:count:POP2015": 4, "numnum:max:POP2015": 19485, "numnum:min:POP2015": 1104, "numnum:sum:POP2015": 35247, "numnum:count:POP2020": 4, "numnum:max:POP2020": 20189, "numnum:min:POP2020": 1281, "numnum:sum:POP2020": 36673, "numnum:count:POP2025": 4, "numnum:max:POP2025": 20695, "numnum:min:POP2025": 1481, "numnum:sum:POP2025": 37759, "numnum:count:POP2050": 4, "numnum:max:POP2050": 21009, "numnum:min:POP2050": 1690, "numnum:sum:POP2050": 38577, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421, "MAX_POP20": 4377344, "MAX_POP50": 5190755, "MAX_POP300": 5190755, "MAX_POP310": 5190755, "MAX_NATSCA": 300, "MIN_AREAKM": 1432, "MAX_AREAKM": 2286, "MIN_AREAMI": 553, "MAX_AREAMI": 883, "MIN_PERKM": 464, "MAX_PERKM": 1161, "MIN_PERMI": 289, "MAX_PERMI": 721, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 4612191, "ELEVATION": 0, "GTOPO30": 173, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068, "POP1955": 1365, "POP1960": 1744, "POP1965": 2093, "POP1970": 2535, "POP1975": 2770, "POP1980": 3008, "POP1985": 3355, "POP1990": 3807, "POP1995": 4197, "POP2000": 4607, "POP2005": 5035, "POP2010": 5213, "POP2015": 5447, "POP2020": 5687, "POP2025": 5827, "POP2050": 5946, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 710, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 5, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 45.416697, "numnum:min:LATITUDE": 33.830014, "numnum:sum:LATITUDE": 122.94669099999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -75.700015, "numnum:min:LONGITUDE": -84.399949, "numnum:sum:LONGITUDE": -239.51998500000003, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 5213000, "numnum:min:POP_MAX": 1145000, "numnum:sum:POP_MAX": 10864000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 3934421, "numnum:min:POP_MIN": 422908, "numnum:sum:POP_MIN": 5169458, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3749229, "numnum:min:POP_OTHER": 872781, "numnum:sum:POP_OTHER": 7496106, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 37, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 6167865, "numnum:min:GEONAMEID": 4180439, "numnum:sum:GEONAMEID": 16443121, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3934421, "numnum:min:MAX_POP10": 885780, "numnum:sum:MAX_POP10": 7748329, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 4377344, "numnum:min:MAX_POP20": 885780, "numnum:sum:MAX_POP20": 9159535, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 5190755, "numnum:min:MAX_POP50": 885780, "numnum:sum:MAX_POP50": 9987474, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 5190755, "numnum:min:MAX_POP300": 885780, "numnum:sum:MAX_POP300": 9987474, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 5190755, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9101694, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 2761, "numnum:min:MIN_AREAKM": 504, "numnum:sum:MIN_AREAKM": 4697, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 4086, "numnum:min:MAX_AREAKM": 504, "numnum:sum:MAX_AREAKM": 6876, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 1066, "numnum:min:MIN_AREAMI": 195, "numnum:sum:MIN_AREAMI": 1814, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 1578, "numnum:min:MAX_AREAMI": 195, "numnum:sum:MAX_AREAMI": 2656, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 1494, "numnum:min:MIN_PERKM": 442, "numnum:sum:MIN_PERKM": 2400, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 2459, "numnum:min:MAX_PERKM": 442, "numnum:sum:MAX_PERKM": 4062, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 929, "numnum:min:MIN_PERMI": 274, "numnum:sum:MIN_PERMI": 1492, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 1528, "numnum:min:MAX_PERMI": 274, "numnum:sum:MAX_PERMI": 2523, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -75.983333, "numnum:min:MIN_BBXMIN": -84.875, "numnum:sum:MIN_BBXMIN": -240.866666, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -75.983333, "numnum:min:MAX_BBXMIN": -84.608333, "numnum:sum:MAX_BBXMIN": -240.39822000000005, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -75.45, "numnum:min:MIN_BBXMAX": -83.879976, "numnum:sum:MIN_BBXMAX": -238.460248, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -75.45, "numnum:min:MAX_BBXMAX": -83.858333, "numnum:sum:MAX_BBXMAX": -237.91666600000003, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 45.225, "numnum:min:MIN_BBYMIN": 33.383333, "numnum:sum:MIN_BBYMIN": 121.75, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 45.225, "numnum:min:MAX_BBYMIN": 33.383333, "numnum:sum:MAX_BBYMIN": 122.08333300000001, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 45.55, "numnum:min:MIN_BBYMAX": 34.202715, "numnum:sum:MIN_BBYMAX": 123.842877, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 45.55, "numnum:min:MAX_BBYMAX": 34.275, "numnum:sum:MAX_BBYMAX": 123.94999999999999, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -75.717666, "numnum:min:MEAN_BBXC": -84.328739, "numnum:sum:MEAN_BBXC": -239.51061799999997, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 45.405246, "numnum:min:MEAN_BBYC": 33.851552, "numnum:sum:MEAN_BBYC": 122.96973499999999, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 16, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 4612191, "numnum:min:GN_POP": 422908, "numnum:sum:GN_POP": 5847228, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 320, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 320, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 305, "numnum:min:GTOPO30": 61, "numnum:sum:GTOPO30": 539, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 524, "numnum:min:UN_FID": 13, "numnum:sum:UN_FID": 551, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 45.37, "numnum:min:UN_LAT": 33.79, "numnum:sum:UN_LAT": 122.88, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -75.65, "numnum:min:UN_LONG": -84.34, "numnum:sum:UN_LONG": -239.4, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1068, "numnum:min:POP1950": 282, "numnum:sum:POP1950": 1863, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1365, "numnum:min:POP1955": 342, "numnum:sum:POP1955": 2338, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1744, "numnum:min:POP1960": 415, "numnum:sum:POP1960": 2935, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2093, "numnum:min:POP1965": 482, "numnum:sum:POP1965": 3534, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2535, "numnum:min:POP1970": 581, "numnum:sum:POP1970": 4298, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2770, "numnum:min:POP1975": 676, "numnum:sum:POP1975": 4832, "numnum:count:POP1980": 3, "numnum:max:POP1980": 3008, "numnum:min:POP1980": 729, "numnum:sum:POP1980": 5362, "numnum:count:POP1985": 3, "numnum:max:POP1985": 3355, "numnum:min:POP1985": 803, "numnum:sum:POP1985": 6037, "numnum:count:POP1990": 3, "numnum:max:POP1990": 3807, "numnum:min:POP1990": 918, "numnum:sum:POP1990": 6909, "numnum:count:POP1995": 3, "numnum:max:POP1995": 4197, "numnum:min:POP1995": 988, "numnum:sum:POP1995": 7966, "numnum:count:POP2000": 3, "numnum:max:POP2000": 4607, "numnum:min:POP2000": 1079, "numnum:sum:POP2000": 9228, "numnum:count:POP2005": 3, "numnum:max:POP2005": 5035, "numnum:min:POP2005": 1119, "numnum:sum:POP2005": 10461, "numnum:count:POP2010": 3, "numnum:max:POP2010": 5213, "numnum:min:POP2010": 1145, "numnum:sum:POP2010": 10864, "numnum:count:POP2015": 3, "numnum:max:POP2015": 5447, "numnum:min:POP2015": 1182, "numnum:sum:POP2015": 11324, "numnum:count:POP2020": 3, "numnum:max:POP2020": 5687, "numnum:min:POP2020": 1232, "numnum:sum:POP2020": 11807, "numnum:count:POP2025": 3, "numnum:max:POP2025": 5827, "numnum:min:POP2025": 1274, "numnum:sum:POP2025": 12136, "numnum:count:POP2050": 3, "numnum:max:POP2050": 5946, "numnum:min:POP2050": 1315, "numnum:sum:POP2050": 12412, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -79.409180, 43.707594 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780, "MAX_POP20": 885780, "MAX_POP50": 885780, "MAX_POP300": 885780, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 504, "MAX_AREAKM": 504, "MIN_AREAMI": 195, "MAX_AREAMI": 195, "MIN_PERKM": 442, "MAX_PERKM": 442, "MIN_PERMI": 274, "MAX_PERMI": 274, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 812129, "ELEVATION": 0, "GTOPO30": 61, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282, "POP1955": 342, "POP1960": 415, "POP1965": 482, "POP1970": 581, "POP1975": 676, "POP1980": 729, "POP1985": 803, "POP1990": 918, "POP1995": 988, "POP2000": 1079, "POP2005": 1119, "POP2010": 1145, "POP2015": 1182, "POP2020": 1232, "POP2025": 1274, "POP2050": 1315, "CITYALT": "Ottawa", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 3, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 45.416697, "numnum:min:LATITUDE": 33.830014, "numnum:sum:LATITUDE": 79.246711, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -75.700015, "numnum:min:LONGITUDE": -84.399949, "numnum:sum:LONGITUDE": -160.099964, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 4506000, "numnum:min:POP_MAX": 1145000, "numnum:sum:POP_MAX": 5651000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 812129, "numnum:min:POP_MIN": 422908, "numnum:sum:POP_MIN": 1235037, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2874096, "numnum:min:POP_OTHER": 872781, "numnum:sum:POP_OTHER": 3746877, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 6094817, "numnum:min:GEONAMEID": 4180439, "numnum:sum:GEONAMEID": 10275256, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2928128, "numnum:min:MAX_POP10": 885780, "numnum:sum:MAX_POP10": 3813908, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3896411, "numnum:min:MAX_POP20": 885780, "numnum:sum:MAX_POP20": 4782191, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3910939, "numnum:min:MAX_POP50": 885780, "numnum:sum:MAX_POP50": 4796719, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3910939, "numnum:min:MAX_POP300": 885780, "numnum:sum:MAX_POP300": 4796719, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 3910939, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3910939, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 2761, "numnum:min:MIN_AREAKM": 504, "numnum:sum:MIN_AREAKM": 3265, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 4086, "numnum:min:MAX_AREAKM": 504, "numnum:sum:MAX_AREAKM": 4590, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 1066, "numnum:min:MIN_AREAMI": 195, "numnum:sum:MIN_AREAMI": 1261, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1578, "numnum:min:MAX_AREAMI": 195, "numnum:sum:MAX_AREAMI": 1773, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 1494, "numnum:min:MIN_PERKM": 442, "numnum:sum:MIN_PERKM": 1936, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 2459, "numnum:min:MAX_PERKM": 442, "numnum:sum:MAX_PERKM": 2901, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 929, "numnum:min:MIN_PERMI": 274, "numnum:sum:MIN_PERMI": 1203, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1528, "numnum:min:MAX_PERMI": 274, "numnum:sum:MAX_PERMI": 1802, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -75.983333, "numnum:min:MIN_BBXMIN": -84.875, "numnum:sum:MIN_BBXMIN": -160.85833300000003, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -75.983333, "numnum:min:MAX_BBXMIN": -84.608333, "numnum:sum:MAX_BBXMIN": -160.591666, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -75.45, "numnum:min:MIN_BBXMAX": -83.879976, "numnum:sum:MIN_BBXMAX": -159.329976, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -75.45, "numnum:min:MAX_BBXMAX": -83.858333, "numnum:sum:MAX_BBXMAX": -159.308333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 45.225, "numnum:min:MIN_BBYMIN": 33.383333, "numnum:sum:MIN_BBYMIN": 78.608333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 45.225, "numnum:min:MAX_BBYMIN": 33.383333, "numnum:sum:MAX_BBYMIN": 78.608333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 45.55, "numnum:min:MIN_BBYMAX": 34.202715, "numnum:sum:MIN_BBYMAX": 79.752715, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 45.55, "numnum:min:MAX_BBYMAX": 34.275, "numnum:sum:MAX_BBYMAX": 79.82499999999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -75.717666, "numnum:min:MEAN_BBXC": -84.328739, "numnum:sum:MEAN_BBXC": -160.046405, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 45.405246, "numnum:min:MEAN_BBYC": 33.851552, "numnum:sum:MEAN_BBYC": 79.256798, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 8, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 812129, "numnum:min:GN_POP": 422908, "numnum:sum:GN_POP": 1235037, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 320, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 320, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 305, "numnum:min:GTOPO30": 61, "numnum:sum:GTOPO30": 366, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 524, "numnum:min:UN_FID": 13, "numnum:sum:UN_FID": 537, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 45.37, "numnum:min:UN_LAT": 33.79, "numnum:sum:UN_LAT": 79.16, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -75.65, "numnum:min:UN_LONG": -84.34, "numnum:sum:UN_LONG": -159.99, "numnum:count:POP1950": 2, "numnum:max:POP1950": 513, "numnum:min:POP1950": 282, "numnum:sum:POP1950": 795, "numnum:count:POP1955": 2, "numnum:max:POP1955": 631, "numnum:min:POP1955": 342, "numnum:sum:POP1955": 973, "numnum:count:POP1960": 2, "numnum:max:POP1960": 776, "numnum:min:POP1960": 415, "numnum:sum:POP1960": 1191, "numnum:count:POP1965": 2, "numnum:max:POP1965": 959, "numnum:min:POP1965": 482, "numnum:sum:POP1965": 1441, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1182, "numnum:min:POP1970": 581, "numnum:sum:POP1970": 1763, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1386, "numnum:min:POP1975": 676, "numnum:sum:POP1975": 2062, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1625, "numnum:min:POP1980": 729, "numnum:sum:POP1980": 2354, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1879, "numnum:min:POP1985": 803, "numnum:sum:POP1985": 2682, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2184, "numnum:min:POP1990": 918, "numnum:sum:POP1990": 3102, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2781, "numnum:min:POP1995": 988, "numnum:sum:POP1995": 3769, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3542, "numnum:min:POP2000": 1079, "numnum:sum:POP2000": 4621, "numnum:count:POP2005": 2, "numnum:max:POP2005": 4307, "numnum:min:POP2005": 1119, "numnum:sum:POP2005": 5426, "numnum:count:POP2010": 2, "numnum:max:POP2010": 4506, "numnum:min:POP2010": 1145, "numnum:sum:POP2010": 5651, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4695, "numnum:min:POP2015": 1182, "numnum:sum:POP2015": 5877, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4888, "numnum:min:POP2020": 1232, "numnum:sum:POP2020": 6120, "numnum:count:POP2025": 2, "numnum:max:POP2025": 5035, "numnum:min:POP2025": 1274, "numnum:sum:POP2025": 6309, "numnum:count:POP2050": 2, "numnum:max:POP2050": 5151, "numnum:min:POP2050": 1315, "numnum:sum:POP2050": 6466, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -75.717773, 45.429299 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 500, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 7, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 25.787611, "numnum:min:LATITUDE": 23.131959, "numnum:sum:LATITUDE": 48.91956999999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -80.224106, "numnum:min:LONGITUDE": -82.364182, "numnum:sum:LONGITUDE": -162.588288, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 5585000, "numnum:min:POP_MAX": 2174000, "numnum:sum:POP_MAX": 7759000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1990917, "numnum:min:POP_MIN": 382894, "numnum:sum:POP_MIN": 2373811, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1930305, "numnum:min:POP_OTHER": 1037811, "numnum:sum:POP_OTHER": 2968116, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 4164138, "numnum:min:GEONAMEID": 3553478, "numnum:sum:GEONAMEID": 7717616, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1990917, "numnum:min:MAX_POP10": 1122682, "numnum:sum:MAX_POP10": 3113599, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2051170, "numnum:min:MAX_POP20": 1443206, "numnum:sum:MAX_POP20": 3494376, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 5187749, "numnum:min:MAX_POP50": 2051170, "numnum:sum:MAX_POP50": 7238919, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 5187749, "numnum:min:MAX_POP300": 2051170, "numnum:sum:MAX_POP300": 7238919, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 5187749, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 5187749, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 380, "numnum:min:MIN_AREAKM": 323, "numnum:sum:MIN_AREAKM": 703, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2907, "numnum:min:MAX_AREAKM": 362, "numnum:sum:MAX_AREAKM": 3269, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 147, "numnum:min:MIN_AREAMI": 125, "numnum:sum:MIN_AREAMI": 272, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1122, "numnum:min:MAX_AREAMI": 140, "numnum:sum:MAX_AREAMI": 1262, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 240, "numnum:min:MIN_PERKM": 156, "numnum:sum:MIN_PERKM": 396, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 999, "numnum:min:MAX_PERKM": 286, "numnum:sum:MAX_PERKM": 1285, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 149, "numnum:min:MIN_PERMI": 97, "numnum:sum:MIN_PERMI": 246, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 620, "numnum:min:MAX_PERMI": 177, "numnum:sum:MAX_PERMI": 797, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -80.466667, "numnum:min:MIN_BBXMIN": -82.533333, "numnum:sum:MIN_BBXMIN": -163, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -80.441667, "numnum:min:MAX_BBXMIN": -82.533333, "numnum:sum:MAX_BBXMIN": -162.975, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -80.175719, "numnum:min:MIN_BBXMAX": -82.208333, "numnum:sum:MIN_BBXMAX": -162.384052, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -80.025, "numnum:min:MAX_BBXMAX": -82.208333, "numnum:sum:MAX_BBXMAX": -162.23333300000003, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 25.55, "numnum:min:MIN_BBYMIN": 22.916667, "numnum:sum:MIN_BBYMIN": 48.466667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 25.725, "numnum:min:MAX_BBYMIN": 22.975161, "numnum:sum:MAX_BBYMIN": 48.700161, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 26.01406, "numnum:min:MIN_BBYMAX": 23.183333, "numnum:sum:MIN_BBYMAX": 49.197393000000008, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 26.991667, "numnum:min:MAX_BBYMAX": 23.183333, "numnum:sum:MAX_BBYMAX": 50.175, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -80.236416, "numnum:min:MEAN_BBXC": -82.354344, "numnum:sum:MEAN_BBXC": -162.59076, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 26.067179, "numnum:min:MEAN_BBYC": 23.076845, "numnum:sum:MEAN_BBYC": 49.144024, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2163824, "numnum:min:GN_POP": 382894, "numnum:sum:GN_POP": 2546718, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 2, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 2, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 5, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 7, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 550, "numnum:min:UN_FID": 172, "numnum:sum:UN_FID": 722, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 25.83, "numnum:min:UN_LAT": 23.04, "numnum:sum:UN_LAT": 48.87, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -80.27, "numnum:min:UN_LONG": -82.41, "numnum:sum:UN_LONG": -162.68, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1116, "numnum:min:POP1950": 622, "numnum:sum:POP1950": 1738, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1289, "numnum:min:POP1955": 924, "numnum:sum:POP1955": 2213, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1436, "numnum:min:POP1960": 1361, "numnum:sum:POP1960": 2797, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1709, "numnum:min:POP1965": 1598, "numnum:sum:POP1965": 3307, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2141, "numnum:min:POP1970": 1779, "numnum:sum:POP1970": 3920, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2590, "numnum:min:POP1975": 1848, "numnum:sum:POP1975": 4438, "numnum:count:POP1980": 2, "numnum:max:POP1980": 3122, "numnum:min:POP1980": 1913, "numnum:sum:POP1980": 5035, "numnum:count:POP1985": 2, "numnum:max:POP1985": 3521, "numnum:min:POP1985": 2005, "numnum:sum:POP1985": 5526, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3969, "numnum:min:POP1990": 2108, "numnum:sum:POP1990": 6077, "numnum:count:POP1995": 2, "numnum:max:POP1995": 4431, "numnum:min:POP1995": 2183, "numnum:sum:POP1995": 6614, "numnum:count:POP2000": 2, "numnum:max:POP2000": 4946, "numnum:min:POP2000": 2187, "numnum:sum:POP2000": 7133, "numnum:count:POP2005": 2, "numnum:max:POP2005": 5438, "numnum:min:POP2005": 2189, "numnum:sum:POP2005": 7627, "numnum:count:POP2010": 2, "numnum:max:POP2010": 5585, "numnum:min:POP2010": 2174, "numnum:sum:POP2010": 7759, "numnum:count:POP2015": 2, "numnum:max:POP2015": 5755, "numnum:min:POP2015": 2159, "numnum:sum:POP2015": 7914, "numnum:count:POP2020": 2, "numnum:max:POP2020": 5969, "numnum:min:POP2020": 2151, "numnum:sum:POP2020": 8120, "numnum:count:POP2025": 2, "numnum:max:POP2025": 6141, "numnum:min:POP2025": 2150, "numnum:sum:POP2025": 8291, "numnum:count:POP2050": 2, "numnum:max:POP2050": 6272, "numnum:min:POP2050": 2150, "numnum:sum:POP2050": 8422, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.120154 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 500, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 7, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 25.787611, "numnum:min:LATITUDE": 23.131959, "numnum:sum:LATITUDE": 48.91956999999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -80.224106, "numnum:min:LONGITUDE": -82.364182, "numnum:sum:LONGITUDE": -162.588288, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 5585000, "numnum:min:POP_MAX": 2174000, "numnum:sum:POP_MAX": 7759000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1990917, "numnum:min:POP_MIN": 382894, "numnum:sum:POP_MIN": 2373811, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1930305, "numnum:min:POP_OTHER": 1037811, "numnum:sum:POP_OTHER": 2968116, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 4164138, "numnum:min:GEONAMEID": 3553478, "numnum:sum:GEONAMEID": 7717616, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1990917, "numnum:min:MAX_POP10": 1122682, "numnum:sum:MAX_POP10": 3113599, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2051170, "numnum:min:MAX_POP20": 1443206, "numnum:sum:MAX_POP20": 3494376, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 5187749, "numnum:min:MAX_POP50": 2051170, "numnum:sum:MAX_POP50": 7238919, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 5187749, "numnum:min:MAX_POP300": 2051170, "numnum:sum:MAX_POP300": 7238919, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 5187749, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 5187749, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 380, "numnum:min:MIN_AREAKM": 323, "numnum:sum:MIN_AREAKM": 703, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2907, "numnum:min:MAX_AREAKM": 362, "numnum:sum:MAX_AREAKM": 3269, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 147, "numnum:min:MIN_AREAMI": 125, "numnum:sum:MIN_AREAMI": 272, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1122, "numnum:min:MAX_AREAMI": 140, "numnum:sum:MAX_AREAMI": 1262, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 240, "numnum:min:MIN_PERKM": 156, "numnum:sum:MIN_PERKM": 396, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 999, "numnum:min:MAX_PERKM": 286, "numnum:sum:MAX_PERKM": 1285, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 149, "numnum:min:MIN_PERMI": 97, "numnum:sum:MIN_PERMI": 246, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 620, "numnum:min:MAX_PERMI": 177, "numnum:sum:MAX_PERMI": 797, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -80.466667, "numnum:min:MIN_BBXMIN": -82.533333, "numnum:sum:MIN_BBXMIN": -163, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -80.441667, "numnum:min:MAX_BBXMIN": -82.533333, "numnum:sum:MAX_BBXMIN": -162.975, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -80.175719, "numnum:min:MIN_BBXMAX": -82.208333, "numnum:sum:MIN_BBXMAX": -162.384052, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -80.025, "numnum:min:MAX_BBXMAX": -82.208333, "numnum:sum:MAX_BBXMAX": -162.23333300000003, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 25.55, "numnum:min:MIN_BBYMIN": 22.916667, "numnum:sum:MIN_BBYMIN": 48.466667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 25.725, "numnum:min:MAX_BBYMIN": 22.975161, "numnum:sum:MAX_BBYMIN": 48.700161, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 26.01406, "numnum:min:MIN_BBYMAX": 23.183333, "numnum:sum:MIN_BBYMAX": 49.197393000000008, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 26.991667, "numnum:min:MAX_BBYMAX": 23.183333, "numnum:sum:MAX_BBYMAX": 50.175, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -80.236416, "numnum:min:MEAN_BBXC": -82.354344, "numnum:sum:MEAN_BBXC": -162.59076, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 26.067179, "numnum:min:MEAN_BBYC": 23.076845, "numnum:sum:MEAN_BBYC": 49.144024, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2163824, "numnum:min:GN_POP": 382894, "numnum:sum:GN_POP": 2546718, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 2, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 2, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 5, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 7, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 550, "numnum:min:UN_FID": 172, "numnum:sum:UN_FID": 722, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 25.83, "numnum:min:UN_LAT": 23.04, "numnum:sum:UN_LAT": 48.87, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -80.27, "numnum:min:UN_LONG": -82.41, "numnum:sum:UN_LONG": -162.68, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1116, "numnum:min:POP1950": 622, "numnum:sum:POP1950": 1738, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1289, "numnum:min:POP1955": 924, "numnum:sum:POP1955": 2213, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1436, "numnum:min:POP1960": 1361, "numnum:sum:POP1960": 2797, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1709, "numnum:min:POP1965": 1598, "numnum:sum:POP1965": 3307, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2141, "numnum:min:POP1970": 1779, "numnum:sum:POP1970": 3920, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2590, "numnum:min:POP1975": 1848, "numnum:sum:POP1975": 4438, "numnum:count:POP1980": 2, "numnum:max:POP1980": 3122, "numnum:min:POP1980": 1913, "numnum:sum:POP1980": 5035, "numnum:count:POP1985": 2, "numnum:max:POP1985": 3521, "numnum:min:POP1985": 2005, "numnum:sum:POP1985": 5526, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3969, "numnum:min:POP1990": 2108, "numnum:sum:POP1990": 6077, "numnum:count:POP1995": 2, "numnum:max:POP1995": 4431, "numnum:min:POP1995": 2183, "numnum:sum:POP1995": 6614, "numnum:count:POP2000": 2, "numnum:max:POP2000": 4946, "numnum:min:POP2000": 2187, "numnum:sum:POP2000": 7133, "numnum:count:POP2005": 2, "numnum:max:POP2005": 5438, "numnum:min:POP2005": 2189, "numnum:sum:POP2005": 7627, "numnum:count:POP2010": 2, "numnum:max:POP2010": 5585, "numnum:min:POP2010": 2174, "numnum:sum:POP2010": 7759, "numnum:count:POP2015": 2, "numnum:max:POP2015": 5755, "numnum:min:POP2015": 2159, "numnum:sum:POP2015": 7914, "numnum:count:POP2020": 2, "numnum:max:POP2020": 5969, "numnum:min:POP2020": 2151, "numnum:sum:POP2020": 8120, "numnum:count:POP2025": 2, "numnum:max:POP2025": 6141, "numnum:min:POP2025": 2150, "numnum:sum:POP2025": 8291, "numnum:count:POP2050": 2, "numnum:max:POP2050": 6272, "numnum:min:POP2050": 2150, "numnum:sum:POP2050": 8422, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.120154 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C.", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 0, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 0, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 600, "numnum:sum:NATSCALE": 1200, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 1, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 2, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 40.749979, "numnum:min:LATITUDE": 38.899549, "numnum:sum:LATITUDE": 79.649528, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -73.980017, "numnum:min:LONGITUDE": -77.009419, "numnum:sum:LONGITUDE": -150.989436, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 19040000, "numnum:min:POP_MAX": 4338000, "numnum:sum:POP_MAX": 23378000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 8008278, "numnum:min:POP_MIN": 552433, "numnum:sum:POP_MIN": 8560711, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 9292603, "numnum:min:POP_OTHER": 2175991, "numnum:sum:POP_OTHER": 11468594, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 5128581, "numnum:min:GEONAMEID": 4140963, "numnum:sum:GEONAMEID": 9269544, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 9376946, "numnum:min:MAX_POP10": 2182723, "numnum:sum:MAX_POP10": 11559669, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 11947707, "numnum:min:MAX_POP20": 2240256, "numnum:sum:MAX_POP20": 14187963, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 18788144, "numnum:min:MAX_POP50": 3764385, "numnum:sum:MAX_POP50": 22552529, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 18788144, "numnum:min:MAX_POP300": 5678280, "numnum:sum:MAX_POP300": 24466424, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 18924578, "numnum:min:MAX_POP310": 5678280, "numnum:sum:MAX_POP310": 24602858, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 300, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1137, "numnum:min:MIN_AREAKM": 1114, "numnum:sum:MIN_AREAKM": 2251, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 8185, "numnum:min:MAX_AREAKM": 3447, "numnum:sum:MAX_AREAKM": 11632, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 439, "numnum:min:MIN_AREAMI": 430, "numnum:sum:MIN_AREAMI": 869, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 3160, "numnum:min:MAX_AREAMI": 1331, "numnum:sum:MAX_AREAMI": 4491, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 548, "numnum:min:MIN_PERKM": 497, "numnum:sum:MIN_PERKM": 1045, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 4993, "numnum:min:MAX_PERKM": 1898, "numnum:sum:MAX_PERKM": 6891, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 341, "numnum:min:MIN_PERMI": 309, "numnum:sum:MIN_PERMI": 650, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 3102, "numnum:min:MAX_PERMI": 1179, "numnum:sum:MAX_PERMI": 4281, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -74.75, "numnum:min:MIN_BBXMIN": -77.533333, "numnum:sum:MIN_BBXMIN": -152.283333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -74.091431, "numnum:min:MAX_BBXMIN": -77.308333, "numnum:sum:MAX_BBXMIN": -151.399764, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -73.574946, "numnum:min:MIN_BBXMAX": -76.752653, "numnum:sum:MIN_BBXMAX": -150.327599, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -72.716667, "numnum:min:MAX_BBXMAX": -76.4, "numnum:sum:MAX_BBXMAX": -149.116667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 39.808333, "numnum:min:MIN_BBYMIN": 38.666667, "numnum:sum:MIN_BBYMIN": 78.475, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 40.566667, "numnum:min:MAX_BBYMIN": 38.754222, "numnum:sum:MAX_BBYMIN": 79.320889, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 41.057237, "numnum:min:MIN_BBYMAX": 39.241667, "numnum:sum:MIN_BBYMAX": 80.298904, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 41.941667, "numnum:min:MAX_BBYMAX": 39.533333, "numnum:sum:MAX_BBYMAX": 81.475, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -73.815782, "numnum:min:MEAN_BBXC": -77.002668, "numnum:sum:MEAN_BBXC": -150.81844999999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 40.813006, "numnum:min:MEAN_BBYC": 39.007587, "numnum:sum:MEAN_BBYC": 79.820593, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 0, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 0, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 8008278, "numnum:min:GN_POP": 552433, "numnum:sum:GN_POP": 8560711, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 10, "numnum:min:ELEVATION": 7, "numnum:sum:ELEVATION": 17, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 11, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 13, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 577, "numnum:min:UN_FID": 555, "numnum:sum:UN_FID": 1132, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 40.7, "numnum:min:UN_LAT": 38.89, "numnum:sum:UN_LAT": 79.59, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -73.9, "numnum:min:UN_LONG": -76.95, "numnum:sum:UN_LONG": -150.85000000000003, "numnum:count:POP1950": 2, "numnum:max:POP1950": 12338, "numnum:min:POP1950": 1298, "numnum:sum:POP1950": 13636, "numnum:count:POP1955": 2, "numnum:max:POP1955": 13219, "numnum:min:POP1955": 1539, "numnum:sum:POP1955": 14758, "numnum:count:POP1960": 2, "numnum:max:POP1960": 14164, "numnum:min:POP1960": 1823, "numnum:sum:POP1960": 15987, "numnum:count:POP1965": 2, "numnum:max:POP1965": 15177, "numnum:min:POP1965": 2135, "numnum:sum:POP1965": 17312, "numnum:count:POP1970": 2, "numnum:max:POP1970": 16191, "numnum:min:POP1970": 2488, "numnum:sum:POP1970": 18679, "numnum:count:POP1975": 2, "numnum:max:POP1975": 15880, "numnum:min:POP1975": 2626, "numnum:sum:POP1975": 18506, "numnum:count:POP1980": 2, "numnum:max:POP1980": 15601, "numnum:min:POP1980": 2777, "numnum:sum:POP1980": 18378, "numnum:count:POP1985": 2, "numnum:max:POP1985": 15827, "numnum:min:POP1985": 3063, "numnum:sum:POP1985": 18890, "numnum:count:POP1990": 2, "numnum:max:POP1990": 16086, "numnum:min:POP1990": 3376, "numnum:sum:POP1990": 19462, "numnum:count:POP1995": 2, "numnum:max:POP1995": 16943, "numnum:min:POP1995": 3651, "numnum:sum:POP1995": 20594, "numnum:count:POP2000": 2, "numnum:max:POP2000": 17846, "numnum:min:POP2000": 3949, "numnum:sum:POP2000": 21795, "numnum:count:POP2005": 2, "numnum:max:POP2005": 18732, "numnum:min:POP2005": 4241, "numnum:sum:POP2005": 22973, "numnum:count:POP2010": 2, "numnum:max:POP2010": 19040, "numnum:min:POP2010": 4338, "numnum:sum:POP2010": 23378, "numnum:count:POP2015": 2, "numnum:max:POP2015": 19441, "numnum:min:POP2015": 4464, "numnum:sum:POP2015": 23905, "numnum:count:POP2020": 2, "numnum:max:POP2020": 19974, "numnum:min:POP2020": 4636, "numnum:sum:POP2020": 24610, "numnum:count:POP2025": 2, "numnum:max:POP2025": 20370, "numnum:min:POP2025": 4778, "numnum:sum:POP2025": 25148, "numnum:count:POP2050": 2, "numnum:max:POP2050": 20628, "numnum:min:POP2050": 4889, "numnum:sum:POP2050": 25517, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -76.992188, 38.891033 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C.", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -76.992188, 38.891033 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nassau", "DIFFASCII": 0, "NAMEASCII": "Nassau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahamas, The", "SOV_A3": "BHS", "ADM0NAME": "The Bahamas", "ADM0_A3": "BHS", "ISO_A2": "BS", "LATITUDE": 25.08339, "LONGITUDE": -77.350044, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 227940, "POP_MIN": 160966, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 3571824, "LS_NAME": "Nassau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 160966, "MAX_POP20": 160966, "MAX_POP50": 160966, "MAX_POP300": 160966, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 84, "MAX_AREAKM": 84, "MIN_AREAMI": 32, "MAX_AREAMI": 32, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -77.4, "MAX_BBXMIN": -77.4, "MIN_BBXMAX": -77.258333, "MAX_BBXMAX": -77.258333, "MIN_BBYMIN": 25, "MAX_BBYMIN": 25, "MIN_BBYMAX": 25.091667, "MAX_BBYMAX": 25.091667, "MEAN_BBXC": -77.335571, "MEAN_BBYC": 25.04483, "COMPARE": 0, "GN_ASCII": "Nassau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 23, "GN_POP": 227940, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Nassau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 25.08339, "numnum:min:LATITUDE": 14.102045, "numnum:sum:LATITUDE": 56.43746900000001, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -77.350044, "numnum:min:LONGITUDE": -88.767073, "numnum:sum:LONGITUDE": -253.33464600000003, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 946000, "numnum:min:POP_MAX": 15220, "numnum:sum:POP_MAX": 1189160, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 850848, "numnum:min:POP_MIN": 13381, "numnum:sum:POP_MIN": 1025195, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1014546, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 1029766, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 11, "numnum:min:RANK_MAX": 6, "numnum:sum:RANK_MAX": 27, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 26, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3600949, "numnum:min:GEONAMEID": 3571824, "numnum:sum:GEONAMEID": 10755445, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1014546, "numnum:min:MAX_POP10": 15220, "numnum:sum:MAX_POP10": 1190732, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1014546, "numnum:min:MAX_POP20": 15220, "numnum:sum:MAX_POP20": 1190732, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1014546, "numnum:min:MAX_POP50": 15220, "numnum:sum:MAX_POP50": 1190732, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1014546, "numnum:min:MAX_POP300": 15220, "numnum:sum:MAX_POP300": 1190732, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 97, "numnum:min:MIN_AREAKM": 9, "numnum:sum:MIN_AREAKM": 190, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 97, "numnum:min:MAX_AREAKM": 9, "numnum:sum:MAX_AREAKM": 190, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 37, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 72, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 37, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 72, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 66, "numnum:min:MIN_PERKM": 16, "numnum:sum:MIN_PERKM": 148, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 66, "numnum:min:MAX_PERKM": 16, "numnum:sum:MAX_PERKM": 148, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 41, "numnum:min:MIN_PERMI": 10, "numnum:sum:MIN_PERMI": 92, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 41, "numnum:min:MAX_PERMI": 10, "numnum:sum:MAX_PERMI": 92, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -77.4, "numnum:min:MIN_BBXMIN": -88.783333, "numnum:sum:MIN_BBXMIN": -253.45, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -77.4, "numnum:min:MAX_BBXMIN": -88.783333, "numnum:sum:MAX_BBXMIN": -253.45, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -77.258333, "numnum:min:MIN_BBXMAX": -88.75, "numnum:sum:MIN_BBXMAX": -253.14999999999999, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -77.258333, "numnum:min:MAX_BBXMAX": -88.75, "numnum:sum:MAX_BBXMAX": -253.14999999999999, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 25, "numnum:min:MIN_BBYMIN": 14.033333, "numnum:sum:MIN_BBYMIN": 56.266666, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 25, "numnum:min:MAX_BBYMIN": 14.033333, "numnum:sum:MAX_BBYMIN": 56.266666, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 25.091667, "numnum:min:MIN_BBYMAX": 14.133333, "numnum:sum:MIN_BBYMAX": 56.491667, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 25.091667, "numnum:min:MAX_BBYMAX": 14.133333, "numnum:sum:MAX_BBYMAX": 56.491667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -77.335571, "numnum:min:MEAN_BBXC": -88.767803, "numnum:sum:MEAN_BBXC": -253.302484, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 25.04483, "numnum:min:MEAN_BBYC": 14.083298, "numnum:sum:MEAN_BBYC": 56.376992, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 23, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 33, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 850848, "numnum:min:GN_POP": 13381, "numnum:sum:GN_POP": 1092169, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 997, "numnum:min:GTOPO30": 3, "numnum:sum:GTOPO30": 1063, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 209, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 209, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 14.09, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 14.09, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -87.2, "numnum:sum:UN_LONG": -87.2, "numnum:count:POP1950": 3, "numnum:max:POP1950": 73, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 73, "numnum:count:POP1955": 3, "numnum:max:POP1955": 96, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 96, "numnum:count:POP1960": 3, "numnum:max:POP1960": 128, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 128, "numnum:count:POP1965": 3, "numnum:max:POP1965": 169, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 169, "numnum:count:POP1970": 3, "numnum:max:POP1970": 223, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 223, "numnum:count:POP1975": 3, "numnum:max:POP1975": 292, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 292, "numnum:count:POP1980": 3, "numnum:max:POP1980": 371, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 371, "numnum:count:POP1985": 3, "numnum:max:POP1985": 471, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 471, "numnum:count:POP1990": 3, "numnum:max:POP1990": 578, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 578, "numnum:count:POP1995": 3, "numnum:max:POP1995": 677, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 677, "numnum:count:POP2000": 3, "numnum:max:POP2000": 793, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 793, "numnum:count:POP2005": 3, "numnum:max:POP2005": 901, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 901, "numnum:count:POP2010": 3, "numnum:max:POP2010": 946, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 946, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1022, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1022, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1165, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1165, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1317, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1317, "numnum:count:POP2050": 3, "numnum:max:POP2050": 1472, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1472, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -73.959961, 40.747257 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 24, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 13.710002, "numnum:min:LATITUDE": 9.935012, "numnum:sum:LATITUDE": 35.798031, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -84.084051, "numnum:min:LONGITUDE": -89.203041, "numnum:sum:LONGITUDE": -259.555584, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1433000, "numnum:min:POP_MAX": 920000, "numnum:sum:POP_MAX": 3637000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 920000, "numnum:min:POP_MIN": 1724, "numnum:sum:POP_MIN": 924531, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2139587, "numnum:min:POP_OTHER": 1088194, "numnum:sum:POP_OTHER": 4662462, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 35, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 3, "numnum:sum:RANK_MIN": 18, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3669623, "numnum:min:GEONAMEID": 1690681, "numnum:sum:GEONAMEID": 8978067, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2150614, "numnum:min:MAX_POP10": 1105973, "numnum:sum:MAX_POP10": 4707489, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2150614, "numnum:min:MAX_POP20": 1105973, "numnum:sum:MAX_POP20": 5082621, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 2150614, "numnum:min:MAX_POP50": 1105973, "numnum:sum:MAX_POP50": 5082621, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 2150614, "numnum:min:MAX_POP300": 1105973, "numnum:sum:MAX_POP300": 5082621, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 379, "numnum:min:MIN_AREAKM": 131, "numnum:sum:MIN_AREAKM": 774, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 431, "numnum:min:MAX_AREAKM": 131, "numnum:sum:MAX_AREAKM": 941, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 146, "numnum:min:MIN_AREAMI": 51, "numnum:sum:MIN_AREAMI": 299, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 166, "numnum:min:MAX_AREAMI": 51, "numnum:sum:MAX_AREAMI": 363, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 347, "numnum:min:MIN_PERKM": 97, "numnum:sum:MIN_PERKM": 580, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 347, "numnum:min:MAX_PERKM": 97, "numnum:sum:MAX_PERKM": 714, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 215, "numnum:min:MIN_PERMI": 60, "numnum:sum:MIN_PERMI": 359, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 215, "numnum:min:MAX_PERMI": 60, "numnum:sum:MAX_PERMI": 443, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -84.366667, "numnum:min:MIN_BBXMIN": -89.316667, "numnum:sum:MIN_BBXMIN": -260.066667, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -84.166667, "numnum:min:MAX_BBXMIN": -89.316667, "numnum:sum:MAX_BBXMIN": -259.866667, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -83.983333, "numnum:min:MIN_BBXMAX": -88.966667, "numnum:sum:MIN_BBXMAX": -259.108333, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -83.975, "numnum:min:MAX_BBXMAX": -88.966667, "numnum:sum:MAX_BBXMAX": -259.1, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 13.591667, "numnum:min:MIN_BBYMIN": 9.841667, "numnum:sum:MIN_BBYMIN": 35.508334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 13.591667, "numnum:min:MAX_BBYMIN": 9.841667, "numnum:sum:MAX_BBYMIN": 35.508334, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 13.9, "numnum:min:MIN_BBYMAX": 10.041667, "numnum:sum:MIN_BBYMAX": 36.11666700000001, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 13.9, "numnum:min:MAX_BBYMAX": 10.05, "numnum:sum:MAX_BBYMAX": 36.125, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -84.111698, "numnum:min:MEAN_BBXC": -89.176042, "numnum:sum:MEAN_BBXC": -259.55114199999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 13.738798, "numnum:min:MEAN_BBYC": 9.959268, "numnum:sum:MEAN_BBYC": 35.831426, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 37, "numnum:min:ADMIN1_COD": 10, "numnum:sum:ADMIN1_COD": 77, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 973087, "numnum:min:GN_POP": 1724, "numnum:sum:GN_POP": 977618, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1468, "numnum:min:GTOPO30": 4, "numnum:sum:GTOPO30": 1531, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 382, "numnum:min:UN_FID": 171, "numnum:sum:UN_FID": 732, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 13.7, "numnum:min:UN_LAT": 9.93, "numnum:sum:UN_LAT": 35.78, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -84.07, "numnum:min:UN_LONG": -89.2, "numnum:sum:UN_LONG": -259.53999999999999, "numnum:count:POP1950": 3, "numnum:max:POP1950": 194, "numnum:min:POP1950": 110, "numnum:sum:POP1950": 452, "numnum:count:POP1955": 3, "numnum:max:POP1955": 246, "numnum:min:POP1955": 148, "numnum:sum:POP1955": 578, "numnum:count:POP1960": 3, "numnum:max:POP1960": 311, "numnum:min:POP1960": 199, "numnum:sum:POP1960": 740, "numnum:count:POP1965": 3, "numnum:max:POP1965": 394, "numnum:min:POP1965": 269, "numnum:sum:POP1965": 950, "numnum:count:POP1970": 3, "numnum:max:POP1970": 500, "numnum:min:POP1970": 359, "numnum:sum:POP1970": 1225, "numnum:count:POP1975": 3, "numnum:max:POP1975": 596, "numnum:min:POP1975": 440, "numnum:sum:POP1975": 1479, "numnum:count:POP1980": 3, "numnum:max:POP1980": 701, "numnum:min:POP1980": 525, "numnum:sum:POP1980": 1752, "numnum:count:POP1985": 3, "numnum:max:POP1985": 825, "numnum:min:POP1985": 621, "numnum:sum:POP1985": 2073, "numnum:count:POP1990": 3, "numnum:max:POP1990": 970, "numnum:min:POP1990": 735, "numnum:sum:POP1990": 2442, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1107, "numnum:min:POP1995": 865, "numnum:sum:POP1995": 2839, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1233, "numnum:min:POP2000": 887, "numnum:sum:POP2000": 3152, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1374, "numnum:min:POP2005": 909, "numnum:sum:POP2005": 3500, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1433, "numnum:min:POP2010": 920, "numnum:sum:POP2010": 3637, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1520, "numnum:min:POP2015": 944, "numnum:sum:POP2015": 3838, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1649, "numnum:min:POP2020": 1015, "numnum:sum:POP2020": 4170, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1776, "numnum:min:POP2025": 1104, "numnum:sum:POP2025": 4507, "numnum:count:POP2050": 3, "numnum:max:POP2050": 1902, "numnum:min:POP2050": 1193, "numnum:sum:POP2050": 4832, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nassau", "DIFFASCII": 0, "NAMEASCII": "Nassau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahamas, The", "SOV_A3": "BHS", "ADM0NAME": "The Bahamas", "ADM0_A3": "BHS", "ISO_A2": "BS", "LATITUDE": 25.08339, "LONGITUDE": -77.350044, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 227940, "POP_MIN": 160966, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 3571824, "LS_NAME": "Nassau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 160966, "MAX_POP20": 160966, "MAX_POP50": 160966, "MAX_POP300": 160966, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 84, "MAX_AREAKM": 84, "MIN_AREAMI": 32, "MAX_AREAMI": 32, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -77.4, "MAX_BBXMIN": -77.4, "MIN_BBXMAX": -77.258333, "MAX_BBXMAX": -77.258333, "MIN_BBYMIN": 25, "MAX_BBYMIN": 25, "MIN_BBYMAX": 25.091667, "MAX_BBYMAX": 25.091667, "MEAN_BBXC": -77.335571, "MEAN_BBYC": 25.04483, "COMPARE": 0, "GN_ASCII": "Nassau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 23, "GN_POP": 227940, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Nassau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Panama City", "NAMEALT": "Ciudad de Panamá|Panama City|Panama", "DIFFASCII": 0, "NAMEASCII": "Panama City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Panama", "SOV_A3": "PAN", "ADM0NAME": "Panama", "ADM0_A3": "PAN", "ADM1NAME": "Panama", "ISO_A2": "PA", "LATITUDE": 8.968017, "LONGITUDE": -79.533037, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1281000, "POP_MIN": 408168, "POP_OTHER": 939725, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 3703443, "MEGANAME": "Ciudad de Panamá (Panama City)", "LS_NAME": "Panama City1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 958016, "MAX_POP20": 958016, "MAX_POP50": 989053, "MAX_POP300": 989053, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 157, "MIN_AREAMI": 54, "MAX_AREAMI": 61, "MIN_PERKM": 98, "MAX_PERKM": 107, "MIN_PERMI": 61, "MAX_PERMI": 66, "MIN_BBXMIN": -79.591667, "MAX_BBXMIN": -79.576315, "MIN_BBXMAX": -79.4, "MAX_BBXMAX": -79.4, "MIN_BBYMIN": 8.933333, "MAX_BBYMIN": 8.943752, "MIN_BBYMAX": 9.1, "MAX_BBYMAX": 9.1, "MEAN_BBXC": -79.494919, "MEAN_BBYC": 9.035936, "COMPARE": 0, "GN_ASCII": "Panama City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 408168, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "America/Panama", "GEONAMESNO": "GeoNames match general.", "UN_FID": 408, "UN_ADM0": "Panama", "UN_LAT": 9, "UN_LONG": -79.51, "POP1950": 171, "POP1955": 220, "POP1960": 283, "POP1965": 360, "POP1970": 455, "POP1975": 528, "POP1980": 613, "POP1985": 721, "POP1990": 847, "POP1995": 953, "POP2000": 1072, "POP2005": 1216, "POP2010": 1281, "POP2015": 1379, "POP2020": 1527, "POP2025": 1653, "POP2050": 1759, "CITYALT": "Panama", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 17.977077, "numnum:min:LATITUDE": 8.968017, "numnum:sum:LATITUDE": 26.945094, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -76.767434, "numnum:min:LONGITUDE": -79.533037, "numnum:sum:LONGITUDE": -156.300471, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1281000, "numnum:min:POP_MAX": 937700, "numnum:sum:POP_MAX": 2218700, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 664973, "numnum:min:POP_MIN": 408168, "numnum:sum:POP_MIN": 1073141, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 939725, "numnum:min:POP_OTHER": 18171, "numnum:sum:POP_OTHER": 957896, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3703443, "numnum:min:GEONAMEID": 3489854, "numnum:sum:GEONAMEID": 7193297, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 958016, "numnum:min:MAX_POP10": 664973, "numnum:sum:MAX_POP10": 1622989, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 958016, "numnum:min:MAX_POP20": 664973, "numnum:sum:MAX_POP20": 1622989, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 989053, "numnum:min:MAX_POP50": 664973, "numnum:sum:MAX_POP50": 1654026, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 989053, "numnum:min:MAX_POP300": 664973, "numnum:sum:MAX_POP300": 1654026, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 141, "numnum:min:MIN_AREAKM": 120, "numnum:sum:MIN_AREAKM": 261, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 157, "numnum:min:MAX_AREAKM": 120, "numnum:sum:MAX_AREAKM": 277, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 54, "numnum:min:MIN_AREAMI": 46, "numnum:sum:MIN_AREAMI": 100, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 61, "numnum:min:MAX_AREAMI": 46, "numnum:sum:MAX_AREAMI": 107, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 98, "numnum:min:MIN_PERKM": 69, "numnum:sum:MIN_PERKM": 167, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 107, "numnum:min:MAX_PERKM": 69, "numnum:sum:MAX_PERKM": 176, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 61, "numnum:min:MIN_PERMI": 43, "numnum:sum:MIN_PERMI": 104, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 66, "numnum:min:MAX_PERMI": 43, "numnum:sum:MAX_PERMI": 109, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -76.866667, "numnum:min:MIN_BBXMIN": -79.591667, "numnum:sum:MIN_BBXMIN": -156.458334, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -76.866667, "numnum:min:MAX_BBXMIN": -79.576315, "numnum:sum:MAX_BBXMIN": -156.442982, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -76.733333, "numnum:min:MIN_BBXMAX": -79.4, "numnum:sum:MIN_BBXMAX": -156.133333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -76.733333, "numnum:min:MAX_BBXMAX": -79.4, "numnum:sum:MAX_BBXMAX": -156.133333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 17.958333, "numnum:min:MIN_BBYMIN": 8.933333, "numnum:sum:MIN_BBYMIN": 26.891666, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 17.958333, "numnum:min:MAX_BBYMIN": 8.943752, "numnum:sum:MAX_BBYMIN": 26.902085, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 18.083333, "numnum:min:MIN_BBYMAX": 9.1, "numnum:sum:MIN_BBYMAX": 27.183332999999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 18.083333, "numnum:min:MAX_BBYMAX": 9.1, "numnum:sum:MAX_BBYMAX": 27.183332999999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -76.798044, "numnum:min:MEAN_BBXC": -79.494919, "numnum:sum:MEAN_BBXC": -156.292963, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 18.018509, "numnum:min:MEAN_BBYC": 9.035936, "numnum:sum:MEAN_BBYC": 27.054445, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 8, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 937700, "numnum:min:GN_POP": 408168, "numnum:sum:GN_POP": 1345868, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 54, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 56, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 408, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 408, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 9, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 9, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -79.51, "numnum:sum:UN_LONG": -79.51, "numnum:count:POP1950": 2, "numnum:max:POP1950": 171, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 171, "numnum:count:POP1955": 2, "numnum:max:POP1955": 220, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 220, "numnum:count:POP1960": 2, "numnum:max:POP1960": 283, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 283, "numnum:count:POP1965": 2, "numnum:max:POP1965": 360, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 360, "numnum:count:POP1970": 2, "numnum:max:POP1970": 455, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 455, "numnum:count:POP1975": 2, "numnum:max:POP1975": 528, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 528, "numnum:count:POP1980": 2, "numnum:max:POP1980": 613, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 613, "numnum:count:POP1985": 2, "numnum:max:POP1985": 721, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 721, "numnum:count:POP1990": 2, "numnum:max:POP1990": 847, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 847, "numnum:count:POP1995": 2, "numnum:max:POP1995": 953, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 953, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1072, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1072, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1216, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1216, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1281, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1281, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1379, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1379, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1527, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1527, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1653, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1653, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1759, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1759, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.971897 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 8, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 24, "numnum:count:NATSCALE": 8, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 880, "numnum:count:LABELRANK": 8, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 64, "numnum:count:DIFFASCII": 8, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 8, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 8, "numnum:count:CAPALT": 8, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 8, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 8, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 6, "numnum:count:LATITUDE": 8, "numnum:max:LATITUDE": 18.541025, "numnum:min:LATITUDE": 8.968017, "numnum:sum:LATITUDE": 112.63822900000001, "numnum:count:LONGITUDE": 8, "numnum:max:LONGITUDE": -72.336035, "numnum:min:LONGITUDE": -89.203041, "numnum:sum:LONGITUDE": -664.176692, "numnum:count:CHANGED": 8, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 8, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 8, "numnum:max:POP_MAX": 1998000, "numnum:min:POP_MAX": 15220, "numnum:sum:POP_MAX": 8814920, "numnum:count:POP_MIN": 8, "numnum:max:POP_MIN": 1234742, "numnum:min:POP_MIN": 1724, "numnum:sum:POP_MIN": 4096643, "numnum:count:POP_OTHER": 8, "numnum:max:POP_OTHER": 2385397, "numnum:min:POP_OTHER": 15220, "numnum:sum:POP_OTHER": 9035521, "numnum:count:RANK_MAX": 8, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 6, "numnum:sum:RANK_MAX": 87, "numnum:count:RANK_MIN": 8, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 3, "numnum:sum:RANK_MIN": 68, "numnum:count:GEONAMEID": 8, "numnum:max:GEONAMEID": 3718426, "numnum:min:GEONAMEID": 1690681, "numnum:sum:GEONAMEID": 27073411, "numnum:count:LS_MATCH": 8, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 8, "numnum:count:CHECKME": 8, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 8, "numnum:max:MAX_POP10": 2445384, "numnum:min:MAX_POP10": 15220, "numnum:sum:MAX_POP10": 9805628, "numnum:count:MAX_POP20": 8, "numnum:max:MAX_POP20": 2445384, "numnum:min:MAX_POP20": 15220, "numnum:sum:MAX_POP20": 10180760, "numnum:count:MAX_POP50": 8, "numnum:max:MAX_POP50": 2445384, "numnum:min:MAX_POP50": 15220, "numnum:sum:MAX_POP50": 10211797, "numnum:count:MAX_POP300": 8, "numnum:max:MAX_POP300": 2445384, "numnum:min:MAX_POP300": 15220, "numnum:sum:MAX_POP300": 10211797, "numnum:count:MAX_POP310": 8, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 8, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 800, "numnum:count:MIN_AREAKM": 8, "numnum:max:MIN_AREAKM": 379, "numnum:min:MIN_AREAKM": 9, "numnum:sum:MIN_AREAKM": 1515, "numnum:count:MAX_AREAKM": 8, "numnum:max:MAX_AREAKM": 431, "numnum:min:MAX_AREAKM": 9, "numnum:sum:MAX_AREAKM": 1698, "numnum:count:MIN_AREAMI": 8, "numnum:max:MIN_AREAMI": 146, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 583, "numnum:count:MAX_AREAMI": 8, "numnum:max:MAX_AREAMI": 166, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 654, "numnum:count:MIN_PERKM": 8, "numnum:max:MIN_PERKM": 347, "numnum:min:MIN_PERKM": 16, "numnum:sum:MIN_PERKM": 1116, "numnum:count:MAX_PERKM": 8, "numnum:max:MAX_PERKM": 347, "numnum:min:MAX_PERKM": 16, "numnum:sum:MAX_PERKM": 1259, "numnum:count:MIN_PERMI": 8, "numnum:max:MIN_PERMI": 215, "numnum:min:MIN_PERMI": 10, "numnum:sum:MIN_PERMI": 693, "numnum:count:MAX_PERMI": 8, "numnum:max:MAX_PERMI": 215, "numnum:min:MAX_PERMI": 10, "numnum:sum:MAX_PERMI": 782, "numnum:count:MIN_BBXMIN": 8, "numnum:max:MIN_BBXMIN": -72.441667, "numnum:min:MIN_BBXMIN": -89.316667, "numnum:sum:MIN_BBXMIN": -665.016668, "numnum:count:MAX_BBXMIN": 8, "numnum:max:MAX_BBXMIN": -72.441667, "numnum:min:MAX_BBXMIN": -89.316667, "numnum:sum:MAX_BBXMIN": -664.801316, "numnum:count:MIN_BBXMAX": 8, "numnum:max:MIN_BBXMAX": -72.033333, "numnum:min:MIN_BBXMAX": -88.966667, "numnum:sum:MIN_BBXMAX": -663.166666, "numnum:count:MAX_BBXMAX": 8, "numnum:max:MAX_BBXMAX": -72.033333, "numnum:min:MAX_BBXMAX": -88.966667, "numnum:sum:MAX_BBXMAX": -663.158333, "numnum:count:MIN_BBYMIN": 8, "numnum:max:MIN_BBYMIN": 18.491667, "numnum:min:MIN_BBYMIN": 8.933333, "numnum:sum:MIN_BBYMIN": 112.158333, "numnum:count:MAX_BBYMIN": 8, "numnum:max:MAX_BBYMIN": 18.491667, "numnum:min:MAX_BBYMIN": 8.943752, "numnum:sum:MAX_BBYMIN": 112.16875200000001, "numnum:count:MIN_BBYMAX": 8, "numnum:max:MIN_BBYMAX": 18.666667, "numnum:min:MIN_BBYMAX": 9.1, "numnum:sum:MIN_BBYMAX": 113.366667, "numnum:count:MAX_BBYMAX": 8, "numnum:max:MAX_BBYMAX": 18.666667, "numnum:min:MAX_BBYMAX": 9.1, "numnum:sum:MAX_BBYMAX": 113.375, "numnum:count:MEAN_BBXC": 8, "numnum:max:MEAN_BBXC": -72.222424, "numnum:min:MEAN_BBXC": -89.176042, "numnum:sum:MEAN_BBXC": -664.033442, "numnum:count:MEAN_BBYC": 8, "numnum:max:MEAN_BBYC": 18.56946, "numnum:min:MEAN_BBYC": 9.035936, "numnum:sum:MEAN_BBYC": 112.78749299999999, "numnum:count:COMPARE": 8, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 8, "numnum:max:ADMIN1_COD": 37, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 106, "numnum:count:GN_POP": 8, "numnum:max:GN_POP": 1234742, "numnum:min:GN_POP": 1724, "numnum:sum:GN_POP": 4422457, "numnum:count:ELEVATION": 8, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 8, "numnum:max:GTOPO30": 1468, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 2712, "numnum:count:UN_FID": 8, "numnum:max:UN_FID": 408, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1557, "numnum:count:UN_LAT": 8, "numnum:max:UN_LAT": 18.52, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 77.39, "numnum:count:UN_LONG": 8, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -89.2, "numnum:sum:UN_LONG": -498.59000000000006, "numnum:count:POP1950": 8, "numnum:max:POP1950": 194, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 829, "numnum:count:POP1955": 8, "numnum:max:POP1955": 246, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1076, "numnum:count:POP1960": 8, "numnum:max:POP1960": 311, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1398, "numnum:count:POP1965": 8, "numnum:max:POP1965": 394, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1816, "numnum:count:POP1970": 8, "numnum:max:POP1970": 500, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2363, "numnum:count:POP1975": 8, "numnum:max:POP1975": 596, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2874, "numnum:count:POP1980": 8, "numnum:max:POP1980": 701, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3437, "numnum:count:POP1985": 8, "numnum:max:POP1985": 881, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 4146, "numnum:count:POP1990": 8, "numnum:max:POP1990": 1134, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5001, "numnum:count:POP1995": 8, "numnum:max:POP1995": 1427, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5896, "numnum:count:POP2000": 8, "numnum:max:POP2000": 1653, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6670, "numnum:count:POP2005": 8, "numnum:max:POP2005": 1885, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 7502, "numnum:count:POP2010": 8, "numnum:max:POP2010": 1998, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 7862, "numnum:count:POP2015": 8, "numnum:max:POP2015": 2209, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 8448, "numnum:count:POP2020": 8, "numnum:max:POP2020": 2621, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 9483, "numnum:count:POP2025": 8, "numnum:max:POP2025": 3012, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 10489, "numnum:count:POP2050": 8, "numnum:max:POP2050": 3346, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 11409, "accum": 8, "numnum:count:accum2": 8, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 8, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.266728 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-au-Prince", "DIFFASCII": 0, "NAMEASCII": "Port-au-Prince", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Haiti", "SOV_A3": "HTI", "ADM0NAME": "Haiti", "ADM0_A3": "HTI", "ADM1NAME": "Ouest", "ISO_A2": "HT", "LATITUDE": 18.541025, "LONGITUDE": -72.336035, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1998000, "POP_MIN": 1234742, "POP_OTHER": 2385397, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3718426, "MEGANAME": "Port-au-Prince", "LS_NAME": "Port-au-Prince", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2445384, "MAX_POP20": 2445384, "MAX_POP50": 2445384, "MAX_POP300": 2445384, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 374, "MAX_AREAKM": 374, "MIN_AREAMI": 144, "MAX_AREAMI": 144, "MIN_PERKM": 287, "MAX_PERKM": 287, "MIN_PERMI": 179, "MAX_PERMI": 179, "MIN_BBXMIN": -72.441667, "MAX_BBXMIN": -72.441667, "MIN_BBXMAX": -72.033333, "MAX_BBXMAX": -72.033333, "MIN_BBYMIN": 18.491667, "MAX_BBYMIN": 18.491667, "MIN_BBYMAX": 18.666667, "MAX_BBYMAX": 18.666667, "MEAN_BBXC": -72.222424, "MEAN_BBYC": 18.56946, "COMPARE": 0, "GN_ASCII": "Port-au-Prince", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1234742, "ELEVATION": 0, "GTOPO30": 65, "TIMEZONE": "America/Port-au-Prince", "GEONAMESNO": "GeoNames match general.", "UN_FID": 208, "UN_ADM0": "Haiti", "UN_LAT": 18.52, "UN_LONG": -72.34, "POP1950": 133, "POP1955": 182, "POP1960": 247, "POP1965": 337, "POP1970": 460, "POP1975": 575, "POP1980": 701, "POP1985": 881, "POP1990": 1134, "POP1995": 1427, "POP2000": 1653, "POP2005": 1885, "POP2010": 1998, "POP2015": 2209, "POP2020": 2621, "POP2025": 3012, "POP2050": 3346, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 910, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 21, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 18.541025, "numnum:min:LATITUDE": 4.596424, "numnum:sum:LATITUDE": 41.607522, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -69.900085, "numnum:min:LONGITUDE": -74.083344, "numnum:sum:LONGITUDE": -216.31946399999999, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 7772000, "numnum:min:POP_MAX": 1998000, "numnum:sum:POP_MAX": 11924000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 6333661, "numnum:min:POP_MIN": 2873, "numnum:sum:POP_MIN": 7571276, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 5754084, "numnum:min:POP_OTHER": 2385397, "numnum:sum:POP_OTHER": 11461518, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 37, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 29, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3718426, "numnum:min:GEONAMEID": 3668373, "numnum:sum:GEONAMEID": 11075488, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 6333661, "numnum:min:MAX_POP10": 2445384, "numnum:sum:MAX_POP10": 12113458, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 6333154, "numnum:min:MAX_POP20": 2445384, "numnum:sum:MAX_POP20": 12112951, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 6333154, "numnum:min:MAX_POP50": 2445384, "numnum:sum:MAX_POP50": 12112951, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 6333154, "numnum:min:MAX_POP300": 2445384, "numnum:sum:MAX_POP300": 12112951, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 6333154, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 6333154, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 523, "numnum:min:MIN_AREAKM": 374, "numnum:sum:MIN_AREAKM": 1348, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 523, "numnum:min:MAX_AREAKM": 374, "numnum:sum:MAX_AREAKM": 1348, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 202, "numnum:min:MIN_AREAMI": 144, "numnum:sum:MIN_AREAMI": 520, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 202, "numnum:min:MAX_AREAMI": 144, "numnum:sum:MAX_AREAMI": 520, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 309, "numnum:min:MIN_PERKM": 186, "numnum:sum:MIN_PERKM": 782, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 309, "numnum:min:MAX_PERKM": 186, "numnum:sum:MAX_PERKM": 782, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 192, "numnum:min:MIN_PERMI": 116, "numnum:sum:MIN_PERMI": 487, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 192, "numnum:min:MAX_PERMI": 116, "numnum:sum:MAX_PERMI": 487, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -70.208333, "numnum:min:MIN_BBXMIN": -74.266667, "numnum:sum:MIN_BBXMIN": -216.91666699999997, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -70.208333, "numnum:min:MAX_BBXMIN": -74.266667, "numnum:sum:MAX_BBXMIN": -216.91666699999997, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -69.766667, "numnum:min:MIN_BBXMAX": -74.008333, "numnum:sum:MIN_BBXMAX": -215.808333, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -69.766667, "numnum:min:MAX_BBXMAX": -74.008333, "numnum:sum:MAX_BBXMAX": -215.808333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 18.491667, "numnum:min:MIN_BBYMIN": 4.483333, "numnum:sum:MIN_BBYMIN": 41.291667000000007, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 18.491667, "numnum:min:MAX_BBYMIN": 4.483333, "numnum:sum:MAX_BBYMIN": 41.291667000000007, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 18.666667, "numnum:min:MIN_BBYMAX": 4.8, "numnum:sum:MIN_BBYMAX": 42.058334, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 18.666667, "numnum:min:MAX_BBYMAX": 4.8, "numnum:sum:MAX_BBYMAX": 42.058334, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -69.980546, "numnum:min:MEAN_BBXC": -74.116517, "numnum:sum:MEAN_BBXC": -216.31948699999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 18.56946, "numnum:min:MEAN_BBYC": 4.643227, "numnum:sum:MEAN_BBYC": 41.679863000000008, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 34, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 47, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 7102602, "numnum:min:GN_POP": 2873, "numnum:sum:GN_POP": 8340217, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 2620, "numnum:min:GTOPO30": 65, "numnum:sum:GTOPO30": 4689, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 208, "numnum:min:UN_FID": 161, "numnum:sum:UN_FID": 545, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 18.52, "numnum:min:UN_LAT": 4.63, "numnum:sum:UN_LAT": 41.63, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -69.89, "numnum:min:UN_LONG": -74.08, "numnum:sum:UN_LONG": -216.31, "numnum:count:POP1950": 3, "numnum:max:POP1950": 630, "numnum:min:POP1950": 133, "numnum:sum:POP1950": 982, "numnum:count:POP1955": 3, "numnum:max:POP1955": 894, "numnum:min:POP1955": 182, "numnum:sum:POP1955": 1388, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1269, "numnum:min:POP1960": 247, "numnum:sum:POP1960": 1962, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1780, "numnum:min:POP1965": 337, "numnum:sum:POP1965": 2730, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2383, "numnum:min:POP1970": 460, "numnum:sum:POP1970": 3676, "numnum:count:POP1975": 3, "numnum:max:POP1975": 3040, "numnum:min:POP1975": 575, "numnum:sum:POP1975": 4631, "numnum:count:POP1980": 3, "numnum:max:POP1980": 3525, "numnum:min:POP1980": 701, "numnum:sum:POP1980": 5466, "numnum:count:POP1985": 3, "numnum:max:POP1985": 4087, "numnum:min:POP1985": 881, "numnum:sum:POP1985": 6364, "numnum:count:POP1990": 3, "numnum:max:POP1990": 4740, "numnum:min:POP1990": 1134, "numnum:sum:POP1990": 7396, "numnum:count:POP1995": 3, "numnum:max:POP1995": 5494, "numnum:min:POP1995": 1427, "numnum:sum:POP1995": 8591, "numnum:count:POP2000": 3, "numnum:max:POP2000": 6356, "numnum:min:POP2000": 1653, "numnum:sum:POP2000": 9863, "numnum:count:POP2005": 3, "numnum:max:POP2005": 7353, "numnum:min:POP2005": 1885, "numnum:sum:POP2005": 11300, "numnum:count:POP2010": 3, "numnum:max:POP2010": 7772, "numnum:min:POP2010": 1998, "numnum:sum:POP2010": 11924, "numnum:count:POP2015": 3, "numnum:max:POP2015": 8320, "numnum:min:POP2015": 2209, "numnum:sum:POP2015": 12827, "numnum:count:POP2020": 3, "numnum:max:POP2020": 8916, "numnum:min:POP2020": 2525, "numnum:sum:POP2020": 14062, "numnum:count:POP2025": 3, "numnum:max:POP2025": 9299, "numnum:min:POP2025": 2722, "numnum:sum:POP2025": 15033, "numnum:count:POP2050": 3, "numnum:max:POP2050": 9600, "numnum:min:POP2050": 2885, "numnum:sum:POP2050": 15831, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.521283 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 2, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 800, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 18.470073, "numnum:min:LATITUDE": 4.596424, "numnum:sum:LATITUDE": 23.066497, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -69.900085, "numnum:min:LONGITUDE": -74.083344, "numnum:sum:LONGITUDE": -143.983429, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 7772000, "numnum:min:POP_MAX": 2154000, "numnum:sum:POP_MAX": 9926000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 6333661, "numnum:min:POP_MIN": 2873, "numnum:sum:POP_MIN": 6336534, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 5754084, "numnum:min:POP_OTHER": 3322037, "numnum:sum:POP_OTHER": 9076121, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 17, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3688689, "numnum:min:GEONAMEID": 3668373, "numnum:sum:GEONAMEID": 7357062, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 6333661, "numnum:min:MAX_POP10": 3334413, "numnum:sum:MAX_POP10": 9668074, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 6333154, "numnum:min:MAX_POP20": 3334413, "numnum:sum:MAX_POP20": 9667567, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 6333154, "numnum:min:MAX_POP50": 3334413, "numnum:sum:MAX_POP50": 9667567, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 6333154, "numnum:min:MAX_POP300": 3334413, "numnum:sum:MAX_POP300": 9667567, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 6333154, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 6333154, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 523, "numnum:min:MIN_AREAKM": 451, "numnum:sum:MIN_AREAKM": 974, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 523, "numnum:min:MAX_AREAKM": 451, "numnum:sum:MAX_AREAKM": 974, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 202, "numnum:min:MIN_AREAMI": 174, "numnum:sum:MIN_AREAMI": 376, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 202, "numnum:min:MAX_AREAMI": 174, "numnum:sum:MAX_AREAMI": 376, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 309, "numnum:min:MIN_PERKM": 186, "numnum:sum:MIN_PERKM": 495, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 309, "numnum:min:MAX_PERKM": 186, "numnum:sum:MAX_PERKM": 495, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 192, "numnum:min:MIN_PERMI": 116, "numnum:sum:MIN_PERMI": 308, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 192, "numnum:min:MAX_PERMI": 116, "numnum:sum:MAX_PERMI": 308, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -70.208333, "numnum:min:MIN_BBXMIN": -74.266667, "numnum:sum:MIN_BBXMIN": -144.475, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -70.208333, "numnum:min:MAX_BBXMIN": -74.266667, "numnum:sum:MAX_BBXMIN": -144.475, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -69.766667, "numnum:min:MIN_BBXMAX": -74.008333, "numnum:sum:MIN_BBXMAX": -143.77499999999999, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -69.766667, "numnum:min:MAX_BBXMAX": -74.008333, "numnum:sum:MAX_BBXMAX": -143.77499999999999, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 18.316667, "numnum:min:MIN_BBYMIN": 4.483333, "numnum:sum:MIN_BBYMIN": 22.799999999999998, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 18.316667, "numnum:min:MAX_BBYMIN": 4.483333, "numnum:sum:MAX_BBYMIN": 22.799999999999998, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 18.591667, "numnum:min:MIN_BBYMAX": 4.8, "numnum:sum:MIN_BBYMAX": 23.391667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 18.591667, "numnum:min:MAX_BBYMAX": 4.8, "numnum:sum:MAX_BBYMAX": 23.391667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -69.980546, "numnum:min:MEAN_BBXC": -74.116517, "numnum:sum:MEAN_BBXC": -144.097063, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 18.467176, "numnum:min:MEAN_BBYC": 4.643227, "numnum:sum:MEAN_BBYC": 23.110402999999999, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 34, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 36, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7102602, "numnum:min:GN_POP": 2873, "numnum:sum:GN_POP": 7105475, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 2620, "numnum:min:GTOPO30": 2004, "numnum:sum:GTOPO30": 4624, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 176, "numnum:min:UN_FID": 161, "numnum:sum:UN_FID": 337, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 18.48, "numnum:min:UN_LAT": 4.63, "numnum:sum:UN_LAT": 23.11, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -69.89, "numnum:min:UN_LONG": -74.08, "numnum:sum:UN_LONG": -143.97, "numnum:count:POP1950": 2, "numnum:max:POP1950": 630, "numnum:min:POP1950": 219, "numnum:sum:POP1950": 849, "numnum:count:POP1955": 2, "numnum:max:POP1955": 894, "numnum:min:POP1955": 312, "numnum:sum:POP1955": 1206, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1269, "numnum:min:POP1960": 446, "numnum:sum:POP1960": 1715, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1780, "numnum:min:POP1965": 613, "numnum:sum:POP1965": 2393, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2383, "numnum:min:POP1970": 833, "numnum:sum:POP1970": 3216, "numnum:count:POP1975": 2, "numnum:max:POP1975": 3040, "numnum:min:POP1975": 1016, "numnum:sum:POP1975": 4056, "numnum:count:POP1980": 2, "numnum:max:POP1980": 3525, "numnum:min:POP1980": 1240, "numnum:sum:POP1980": 4765, "numnum:count:POP1985": 2, "numnum:max:POP1985": 4087, "numnum:min:POP1985": 1396, "numnum:sum:POP1985": 5483, "numnum:count:POP1990": 2, "numnum:max:POP1990": 4740, "numnum:min:POP1990": 1522, "numnum:sum:POP1990": 6262, "numnum:count:POP1995": 2, "numnum:max:POP1995": 5494, "numnum:min:POP1995": 1670, "numnum:sum:POP1995": 7164, "numnum:count:POP2000": 2, "numnum:max:POP2000": 6356, "numnum:min:POP2000": 1854, "numnum:sum:POP2000": 8210, "numnum:count:POP2005": 2, "numnum:max:POP2005": 7353, "numnum:min:POP2005": 2062, "numnum:sum:POP2005": 9415, "numnum:count:POP2010": 2, "numnum:max:POP2010": 7772, "numnum:min:POP2010": 2154, "numnum:sum:POP2010": 9926, "numnum:count:POP2015": 2, "numnum:max:POP2015": 8320, "numnum:min:POP2015": 2298, "numnum:sum:POP2015": 10618, "numnum:count:POP2020": 2, "numnum:max:POP2020": 8916, "numnum:min:POP2020": 2525, "numnum:sum:POP2020": 11441, "numnum:count:POP2025": 2, "numnum:max:POP2025": 9299, "numnum:min:POP2025": 2722, "numnum:sum:POP2025": 12021, "numnum:count:POP2050": 2, "numnum:max:POP2050": 9600, "numnum:min:POP2050": 2885, "numnum:sum:POP2050": 12485, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -69.916992, 18.479609 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 4, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 50, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 100, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 0, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 0, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 17.30203, "numnum:min:LATITUDE": 17.118037, "numnum:sum:LATITUDE": 34.420067, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -61.850034, "numnum:min:LONGITUDE": -62.717009, "numnum:sum:LONGITUDE": -124.567043, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 35499, "numnum:min:POP_MAX": 21887, "numnum:sum:POP_MAX": 57386, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 24226, "numnum:min:POP_MIN": 15500, "numnum:sum:POP_MIN": 39726, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 21887, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 21887, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 7, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 14, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 7, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 13, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3576022, "numnum:min:GEONAMEID": 3575551, "numnum:sum:GEONAMEID": 7151573, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 35499, "numnum:min:MAX_POP10": 21887, "numnum:sum:MAX_POP10": 57386, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 35499, "numnum:min:MAX_POP20": 21887, "numnum:sum:MAX_POP20": 57386, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 35499, "numnum:min:MAX_POP50": 21887, "numnum:sum:MAX_POP50": 57386, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 35499, "numnum:min:MAX_POP300": 21887, "numnum:sum:MAX_POP300": 57386, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 25, "numnum:min:MIN_AREAKM": 7, "numnum:sum:MIN_AREAKM": 32, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 25, "numnum:min:MAX_AREAKM": 7, "numnum:sum:MAX_AREAKM": 32, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 10, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 13, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 10, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 13, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 38, "numnum:min:MIN_PERKM": 16, "numnum:sum:MIN_PERKM": 54, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 38, "numnum:min:MAX_PERKM": 16, "numnum:sum:MAX_PERKM": 54, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 24, "numnum:min:MIN_PERMI": 10, "numnum:sum:MIN_PERMI": 34, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 24, "numnum:min:MAX_PERMI": 10, "numnum:sum:MAX_PERMI": 34, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -61.858333, "numnum:min:MIN_BBXMIN": -62.741667, "numnum:sum:MIN_BBXMIN": -124.6, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -61.858333, "numnum:min:MAX_BBXMIN": -62.741667, "numnum:sum:MAX_BBXMIN": -124.6, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -61.783333, "numnum:min:MIN_BBXMAX": -62.708333, "numnum:sum:MIN_BBXMAX": -124.49166600000001, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -61.783333, "numnum:min:MAX_BBXMAX": -62.708333, "numnum:sum:MAX_BBXMAX": -124.49166600000001, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 17.291667, "numnum:min:MIN_BBYMIN": 17.091667, "numnum:sum:MIN_BBYMIN": 34.383334000000008, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 17.291667, "numnum:min:MAX_BBYMIN": 17.091667, "numnum:sum:MAX_BBYMIN": 34.383334000000008, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 17.333333, "numnum:min:MIN_BBYMAX": 17.141667, "numnum:sum:MIN_BBYMAX": 34.475, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 17.333333, "numnum:min:MAX_BBYMAX": 17.141667, "numnum:sum:MAX_BBYMAX": 34.475, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -61.824059, "numnum:min:MEAN_BBXC": -62.726389, "numnum:sum:MEAN_BBXC": -124.55044799999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 17.306019, "numnum:min:MEAN_BBYC": 17.120565, "numnum:sum:MEAN_BBYC": 34.426584, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 4, "numnum:min:ADMIN1_COD": 3, "numnum:sum:ADMIN1_COD": 7, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 24226, "numnum:min:GN_POP": 12920, "numnum:sum:GN_POP": 37146, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 2, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 4, "numnum:sum:SCALERANK": 12, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 50, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 150, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 17.30203, "numnum:min:LATITUDE": 15.301016, "numnum:sum:LATITUDE": 49.72108300000001, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -61.387013, "numnum:min:LONGITUDE": -62.717009, "numnum:sum:LONGITUDE": -185.954056, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 35499, "numnum:min:POP_MAX": 21887, "numnum:sum:POP_MAX": 80722, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 24226, "numnum:min:POP_MIN": 15500, "numnum:sum:POP_MIN": 56297, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 23336, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 45223, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 7, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 7, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3576022, "numnum:min:GEONAMEID": 3575551, "numnum:sum:GEONAMEID": 10727208, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 35499, "numnum:min:MAX_POP10": 21887, "numnum:sum:MAX_POP10": 80722, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 35499, "numnum:min:MAX_POP20": 21887, "numnum:sum:MAX_POP20": 80722, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 35499, "numnum:min:MAX_POP50": 21887, "numnum:sum:MAX_POP50": 80722, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 35499, "numnum:min:MAX_POP300": 21887, "numnum:sum:MAX_POP300": 80722, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 25, "numnum:min:MIN_AREAKM": 7, "numnum:sum:MIN_AREAKM": 44, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 25, "numnum:min:MAX_AREAKM": 7, "numnum:sum:MAX_AREAKM": 44, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 10, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 18, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 10, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 18, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 38, "numnum:min:MIN_PERKM": 16, "numnum:sum:MIN_PERKM": 79, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 38, "numnum:min:MAX_PERKM": 16, "numnum:sum:MAX_PERKM": 79, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 24, "numnum:min:MIN_PERMI": 10, "numnum:sum:MIN_PERMI": 50, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 24, "numnum:min:MAX_PERMI": 10, "numnum:sum:MAX_PERMI": 50, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -61.4, "numnum:min:MIN_BBXMIN": -62.741667, "numnum:sum:MIN_BBXMIN": -186, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -61.4, "numnum:min:MAX_BBXMIN": -62.741667, "numnum:sum:MAX_BBXMIN": -186, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -61.35, "numnum:min:MIN_BBXMAX": -62.708333, "numnum:sum:MIN_BBXMAX": -185.841666, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -61.35, "numnum:min:MAX_BBXMAX": -62.708333, "numnum:sum:MAX_BBXMAX": -185.841666, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 17.291667, "numnum:min:MIN_BBYMIN": 15.266667, "numnum:sum:MIN_BBYMIN": 49.650001, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 17.291667, "numnum:min:MAX_BBYMIN": 15.266667, "numnum:sum:MAX_BBYMIN": 49.650001, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 17.333333, "numnum:min:MIN_BBYMAX": 15.325, "numnum:sum:MIN_BBYMAX": 49.8, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 17.333333, "numnum:min:MAX_BBYMAX": 15.325, "numnum:sum:MAX_BBYMAX": 49.8, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -61.3775, "numnum:min:MEAN_BBXC": -62.726389, "numnum:sum:MEAN_BBXC": -185.927948, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 17.306019, "numnum:min:MEAN_BBYC": 15.298056, "numnum:sum:MEAN_BBYC": 49.72464, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 4, "numnum:min:ADMIN1_COD": 3, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 24226, "numnum:min:GN_POP": 12920, "numnum:sum:GN_POP": 53717, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9997, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 3, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 3, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 3, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 3, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 3, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 3, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 3, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 3, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 3, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 3, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 3, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 3, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 3, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 3, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 3, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 3, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 3, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 4, "numnum:sum:SCALERANK": 12, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 50, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 150, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 15.301016, "numnum:min:LATITUDE": 13.148279, "numnum:sum:LATITUDE": 42.451268, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -61.000008, "numnum:min:LONGITUDE": -61.387013, "numnum:sum:LONGITUDE": -183.599083, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 49485, "numnum:min:POP_MAX": 23336, "numnum:sum:POP_MAX": 110784, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 24518, "numnum:min:POP_MIN": 10634, "numnum:sum:POP_MIN": 51723, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 23336, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 23336, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 7, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 7, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 4359981, "numnum:min:GEONAMEID": 3028258, "numnum:sum:GEONAMEID": 10963874, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 64343, "numnum:min:MAX_POP10": 23336, "numnum:sum:MAX_POP10": 137164, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 64343, "numnum:min:MAX_POP20": 23336, "numnum:sum:MAX_POP20": 137164, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 64343, "numnum:min:MAX_POP50": 23336, "numnum:sum:MAX_POP50": 137164, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 64343, "numnum:min:MAX_POP300": 23336, "numnum:sum:MAX_POP300": 137164, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 17, "numnum:min:MIN_AREAKM": 12, "numnum:sum:MIN_AREAKM": 45, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 17, "numnum:min:MAX_AREAKM": 12, "numnum:sum:MAX_AREAKM": 45, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 7, "numnum:min:MIN_AREAMI": 5, "numnum:sum:MIN_AREAMI": 18, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 7, "numnum:min:MAX_AREAMI": 5, "numnum:sum:MAX_AREAMI": 18, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 31, "numnum:min:MIN_PERKM": 22, "numnum:sum:MIN_PERKM": 78, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 31, "numnum:min:MAX_PERKM": 22, "numnum:sum:MAX_PERKM": 78, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 19, "numnum:min:MIN_PERMI": 14, "numnum:sum:MIN_PERMI": 49, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 19, "numnum:min:MAX_PERMI": 14, "numnum:sum:MAX_PERMI": 49, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -61.008333, "numnum:min:MIN_BBXMIN": -61.4, "numnum:sum:MIN_BBXMIN": -183.65, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -61.008333, "numnum:min:MAX_BBXMIN": -61.4, "numnum:sum:MAX_BBXMIN": -183.65, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -60.966667, "numnum:min:MIN_BBXMAX": -61.35, "numnum:sum:MIN_BBXMAX": -183.475, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -60.966667, "numnum:min:MAX_BBXMAX": -61.35, "numnum:sum:MAX_BBXMAX": -183.475, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 15.266667, "numnum:min:MIN_BBYMIN": 13.125, "numnum:sum:MIN_BBYMIN": 42.366667, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 15.266667, "numnum:min:MAX_BBYMIN": 13.125, "numnum:sum:MAX_BBYMIN": 42.366667, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 15.325, "numnum:min:MIN_BBYMAX": 13.175, "numnum:sum:MIN_BBYMAX": 42.525000000000009, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 15.325, "numnum:min:MAX_BBYMAX": 13.175, "numnum:sum:MAX_BBYMAX": 42.525000000000009, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -60.988377, "numnum:min:MEAN_BBXC": -61.3775, "numnum:sum:MEAN_BBXC": -183.56806, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 15.298056, "numnum:min:MEAN_BBYC": 13.145833, "numnum:sum:MEAN_BBYC": 42.44981, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 4, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 4, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 16571, "numnum:min:GN_POP": 1662, "numnum:sum:GN_POP": 24023, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 5, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 5, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 47, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9951, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 3, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 3, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 3, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 3, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 3, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 3, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 3, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 3, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 3, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 3, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 3, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 3, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 3, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 3, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 3, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 3, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 3, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.284185 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Castries", "DIFFASCII": 0, "NAMEASCII": "Castries", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Lucia", "SOV_A3": "LCA", "ADM0NAME": "Saint Lucia", "ADM0_A3": "LCA", "ISO_A2": "LC", "LATITUDE": 14.001973, "LONGITUDE": -61.000008, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 37963, "POP_MIN": 10634, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3028258, "LS_NAME": "Castries", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 64343, "MAX_POP20": 64343, "MAX_POP50": 64343, "MAX_POP300": 64343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 16, "MAX_AREAKM": 16, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 22, "MAX_PERKM": 22, "MIN_PERMI": 14, "MAX_PERMI": 14, "MIN_BBXMIN": -61.008333, "MAX_BBXMIN": -61.008333, "MIN_BBXMAX": -60.966667, "MAX_BBXMAX": -60.966667, "MIN_BBYMIN": 13.975, "MAX_BBYMIN": 13.975, "MIN_BBYMAX": 14.025, "MAX_BBYMAX": 14.025, "MEAN_BBXC": -60.988377, "MEAN_BBYC": 14.005921, "COMPARE": 0, "GN_ASCII": "Castries", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5790, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Europe/Paris", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint George‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 4, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 50, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 100, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 13.102003, "numnum:min:LATITUDE": 12.052633, "numnum:sum:LATITUDE": 25.154636, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -59.616527, "numnum:min:LONGITUDE": -61.741643, "numnum:sum:LONGITUDE": -121.35817, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 191152, "numnum:min:POP_MAX": 33734, "numnum:sum:POP_MAX": 224886, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 96578, "numnum:min:POP_MIN": 27343, "numnum:sum:POP_MIN": 123921, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 191814, "numnum:min:POP_OTHER": 27343, "numnum:sum:POP_OTHER": 219157, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 9, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 16, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 8, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 15, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3579925, "numnum:min:GEONAMEID": 2075807, "numnum:sum:GEONAMEID": 5655732, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 191152, "numnum:min:MAX_POP10": 27343, "numnum:sum:MAX_POP10": 218495, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 191152, "numnum:min:MAX_POP20": 27343, "numnum:sum:MAX_POP20": 218495, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 191152, "numnum:min:MAX_POP50": 27343, "numnum:sum:MAX_POP50": 218495, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 191152, "numnum:min:MAX_POP300": 27343, "numnum:sum:MAX_POP300": 218495, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 106, "numnum:min:MIN_AREAKM": 10, "numnum:sum:MIN_AREAKM": 116, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 106, "numnum:min:MAX_AREAKM": 10, "numnum:sum:MAX_AREAKM": 116, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 41, "numnum:min:MIN_AREAMI": 4, "numnum:sum:MIN_AREAMI": 45, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 41, "numnum:min:MAX_AREAMI": 4, "numnum:sum:MAX_AREAMI": 45, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 131, "numnum:min:MIN_PERKM": 18, "numnum:sum:MIN_PERKM": 149, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 131, "numnum:min:MAX_PERKM": 18, "numnum:sum:MAX_PERKM": 149, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 82, "numnum:min:MIN_PERMI": 11, "numnum:sum:MIN_PERMI": 93, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 82, "numnum:min:MAX_PERMI": 11, "numnum:sum:MAX_PERMI": 93, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -59.641667, "numnum:min:MIN_BBXMIN": -61.758333, "numnum:sum:MIN_BBXMIN": -121.4, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -59.641667, "numnum:min:MAX_BBXMIN": -61.758333, "numnum:sum:MAX_BBXMIN": -121.4, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -59.5, "numnum:min:MIN_BBXMAX": -61.725, "numnum:sum:MIN_BBXMAX": -121.225, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -59.5, "numnum:min:MAX_BBXMAX": -61.725, "numnum:sum:MAX_BBXMAX": -121.225, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 13.05, "numnum:min:MIN_BBYMIN": 12.025, "numnum:sum:MIN_BBYMIN": 25.075000000000004, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 13.05, "numnum:min:MAX_BBYMIN": 12.025, "numnum:sum:MAX_BBYMIN": 25.075000000000004, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 13.266667, "numnum:min:MIN_BBYMAX": 12.066667, "numnum:sum:MIN_BBYMAX": 25.333334, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 13.266667, "numnum:min:MAX_BBYMAX": 12.066667, "numnum:sum:MAX_BBYMAX": 25.333334, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -59.589731, "numnum:min:MEAN_BBXC": -61.745833, "numnum:sum:MEAN_BBXC": -121.335564, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 13.128773, "numnum:min:MEAN_BBYC": 12.046528, "numnum:sum:MEAN_BBYC": 25.175301, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 3, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7500, "numnum:min:GN_POP": 2971, "numnum:sum:GN_POP": 10471, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 152, "numnum:min:GTOPO30": 26, "numnum:sum:GTOPO30": 178, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 4, "numnum:sum:SCALERANK": 12, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 50, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 150, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 13.148279, "numnum:min:LATITUDE": 12.052633, "numnum:sum:LATITUDE": 38.302915, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -59.616527, "numnum:min:LONGITUDE": -61.741643, "numnum:sum:LONGITUDE": -182.570232, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 191152, "numnum:min:POP_MAX": 33734, "numnum:sum:POP_MAX": 274371, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 96578, "numnum:min:POP_MIN": 24518, "numnum:sum:POP_MIN": 148439, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 191814, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 219157, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 9, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 8, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 4359981, "numnum:min:GEONAMEID": 2075807, "numnum:sum:GEONAMEID": 10015713, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 191152, "numnum:min:MAX_POP10": 27343, "numnum:sum:MAX_POP10": 267980, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 191152, "numnum:min:MAX_POP20": 27343, "numnum:sum:MAX_POP20": 267980, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 191152, "numnum:min:MAX_POP50": 27343, "numnum:sum:MAX_POP50": 267980, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 191152, "numnum:min:MAX_POP300": 27343, "numnum:sum:MAX_POP300": 267980, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 106, "numnum:min:MIN_AREAKM": 10, "numnum:sum:MIN_AREAKM": 133, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 106, "numnum:min:MAX_AREAKM": 10, "numnum:sum:MAX_AREAKM": 133, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 41, "numnum:min:MIN_AREAMI": 4, "numnum:sum:MIN_AREAMI": 52, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 41, "numnum:min:MAX_AREAMI": 4, "numnum:sum:MAX_AREAMI": 52, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 131, "numnum:min:MIN_PERKM": 18, "numnum:sum:MIN_PERKM": 180, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 131, "numnum:min:MAX_PERKM": 18, "numnum:sum:MAX_PERKM": 180, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 82, "numnum:min:MIN_PERMI": 11, "numnum:sum:MIN_PERMI": 112, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 82, "numnum:min:MAX_PERMI": 11, "numnum:sum:MAX_PERMI": 112, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -59.641667, "numnum:min:MIN_BBXMIN": -61.758333, "numnum:sum:MIN_BBXMIN": -182.64166699999999, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -59.641667, "numnum:min:MAX_BBXMIN": -61.758333, "numnum:sum:MAX_BBXMIN": -182.64166699999999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -59.5, "numnum:min:MIN_BBXMAX": -61.725, "numnum:sum:MIN_BBXMAX": -182.383333, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -59.5, "numnum:min:MAX_BBXMAX": -61.725, "numnum:sum:MAX_BBXMAX": -182.383333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 13.125, "numnum:min:MIN_BBYMIN": 12.025, "numnum:sum:MIN_BBYMIN": 38.2, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 13.125, "numnum:min:MAX_BBYMIN": 12.025, "numnum:sum:MAX_BBYMIN": 38.2, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 13.266667, "numnum:min:MIN_BBYMAX": 12.066667, "numnum:sum:MIN_BBYMAX": 38.508334, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 13.266667, "numnum:min:MAX_BBYMAX": 12.066667, "numnum:sum:MAX_BBYMAX": 38.508334, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -59.589731, "numnum:min:MEAN_BBXC": -61.745833, "numnum:sum:MEAN_BBXC": -182.537747, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 13.145833, "numnum:min:MEAN_BBYC": 12.046528, "numnum:sum:MEAN_BBYC": 38.321134, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 7500, "numnum:min:GN_POP": 1662, "numnum:sum:GN_POP": 12133, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 5, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 5, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 152, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 179, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 3, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 3, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 3, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 3, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 3, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 3, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 3, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 3, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 3, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 3, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 3, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 3, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 3, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 3, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 3, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 3, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 3, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 460, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 22, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 10.651997, "numnum:min:LATITUDE": 6.801974, "numnum:sum:LATITUDE": 27.954970000000004, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -58.167029, "numnum:min:LONGITUDE": -66.917037, "numnum:sum:LONGITUDE": -186.60109699999999, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 2985000, "numnum:min:POP_MAX": 264350, "numnum:sum:POP_MAX": 3544284, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1815679, "numnum:min:POP_MIN": 49031, "numnum:sum:POP_MIN": 2099727, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2764555, "numnum:min:POP_OTHER": 264350, "numnum:sum:POP_OTHER": 3447987, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 32, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 29, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3646738, "numnum:min:GEONAMEID": 3378644, "numnum:sum:GEONAMEID": 10599272, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2818500, "numnum:min:MAX_POP10": 264350, "numnum:sum:MAX_POP10": 3377784, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3351058, "numnum:min:MAX_POP20": 264350, "numnum:sum:MAX_POP20": 3910342, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3351241, "numnum:min:MAX_POP50": 264350, "numnum:sum:MAX_POP50": 3910525, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3351241, "numnum:min:MAX_POP300": 264350, "numnum:sum:MAX_POP300": 3910525, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 224, "numnum:min:MIN_AREAKM": 37, "numnum:sum:MIN_AREAKM": 373, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 370, "numnum:min:MAX_AREAKM": 37, "numnum:sum:MAX_AREAKM": 519, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 86, "numnum:min:MIN_AREAMI": 14, "numnum:sum:MIN_AREAMI": 143, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 143, "numnum:min:MAX_AREAMI": 14, "numnum:sum:MAX_AREAMI": 200, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 137, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 290, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 278, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 431, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 85, "numnum:min:MIN_PERMI": 27, "numnum:sum:MIN_PERMI": 179, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 172, "numnum:min:MAX_PERMI": 27, "numnum:sum:MAX_PERMI": 266, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -58.2, "numnum:min:MIN_BBXMIN": -67.133333, "numnum:sum:MIN_BBXMIN": -186.866666, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -58.2, "numnum:min:MAX_BBXMIN": -66.993057, "numnum:sum:MAX_BBXMIN": -186.72638999999999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -58.116667, "numnum:min:MIN_BBXMAX": -66.725, "numnum:sum:MIN_BBXMAX": -186.091667, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -58.116667, "numnum:min:MAX_BBXMAX": -66.725, "numnum:sum:MAX_BBXMAX": -186.091667, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 10.583333, "numnum:min:MIN_BBYMIN": 6.75, "numnum:sum:MIN_BBYMIN": 27.658333, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 10.583333, "numnum:min:MAX_BBYMIN": 6.75, "numnum:sum:MAX_BBYMIN": 27.741666000000003, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 10.666667, "numnum:min:MIN_BBYMAX": 6.833333, "numnum:sum:MIN_BBYMAX": 28.033671000000003, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 10.666667, "numnum:min:MAX_BBYMAX": 6.833333, "numnum:sum:MAX_BBYMAX": 28.041667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -58.153788, "numnum:min:MEAN_BBXC": -66.917919, "numnum:sum:MEAN_BBXC": -186.455072, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 10.638816, "numnum:min:MEAN_BBYC": 6.797348, "numnum:sum:MEAN_BBYC": 27.887836, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 25, "numnum:min:ADMIN1_COD": 5, "numnum:sum:ADMIN1_COD": 42, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1815679, "numnum:min:GN_POP": 49657, "numnum:sum:GN_POP": 2100353, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 920, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9078, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 582, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 582, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 10.49, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 10.49, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -66.89, "numnum:sum:UN_LONG": -66.89, "numnum:count:POP1950": 3, "numnum:max:POP1950": 694, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 694, "numnum:count:POP1955": 3, "numnum:max:POP1955": 955, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 955, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1316, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1316, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1657, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1657, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2060, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2060, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2342, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2342, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2575, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2575, "numnum:count:POP1985": 3, "numnum:max:POP1985": 2693, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2693, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2767, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2767, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2816, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2816, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2864, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2864, "numnum:count:POP2005": 3, "numnum:max:POP2005": 2930, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2930, "numnum:count:POP2010": 3, "numnum:max:POP2010": 2985, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2985, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3098, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3098, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3306, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3306, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3482, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3482, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3619, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3619, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -66.928711, 10.487812 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -66.928711, 10.487812 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 1, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 1, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 64.150024, "numnum:min:LATITUDE": 5.83503, "numnum:sum:LATITUDE": 69.985054, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -21.950014, "numnum:min:LONGITUDE": -55.167031, "numnum:sum:LONGITUDE": -77.117045, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 254169, "numnum:min:POP_MAX": 166212, "numnum:sum:POP_MAX": 420381, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 223757, "numnum:min:POP_MIN": 113906, "numnum:sum:POP_MIN": 337663, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 248161, "numnum:min:POP_OTHER": 160116, "numnum:sum:POP_OTHER": 408277, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 10, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 19, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3413829, "numnum:min:GEONAMEID": 3383330, "numnum:sum:GEONAMEID": 6797159, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 254169, "numnum:min:MAX_POP10": 166212, "numnum:sum:MAX_POP10": 420381, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 254169, "numnum:min:MAX_POP20": 166212, "numnum:sum:MAX_POP20": 420381, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 254169, "numnum:min:MAX_POP50": 166212, "numnum:sum:MAX_POP50": 420381, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 254169, "numnum:min:MAX_POP300": 166212, "numnum:sum:MAX_POP300": 420381, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 104, "numnum:min:MIN_AREAKM": 75, "numnum:sum:MIN_AREAKM": 179, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 105, "numnum:min:MAX_AREAKM": 75, "numnum:sum:MAX_AREAKM": 180, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 40, "numnum:min:MIN_AREAMI": 29, "numnum:sum:MIN_AREAMI": 69, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 40, "numnum:min:MAX_AREAMI": 29, "numnum:sum:MAX_AREAMI": 69, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 119, "numnum:min:MIN_PERKM": 83, "numnum:sum:MIN_PERKM": 202, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 119, "numnum:min:MAX_PERKM": 85, "numnum:sum:MAX_PERKM": 204, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 74, "numnum:min:MIN_PERMI": 51, "numnum:sum:MIN_PERMI": 125, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 74, "numnum:min:MAX_PERMI": 53, "numnum:sum:MAX_PERMI": 127, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -22.008333, "numnum:min:MIN_BBXMIN": -55.283333, "numnum:sum:MIN_BBXMIN": -77.29166599999999, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -22.008333, "numnum:min:MAX_BBXMIN": -55.283333, "numnum:sum:MAX_BBXMIN": -77.29166599999999, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -21.75, "numnum:min:MIN_BBXMAX": -55.107566, "numnum:sum:MIN_BBXMAX": -76.85756599999999, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -21.75, "numnum:min:MAX_BBXMAX": -55.1, "numnum:sum:MAX_BBXMAX": -76.85, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 64.05, "numnum:min:MIN_BBYMIN": 5.766667, "numnum:sum:MIN_BBYMIN": 69.816667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 64.05, "numnum:min:MAX_BBYMIN": 5.766667, "numnum:sum:MAX_BBYMIN": 69.816667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 64.166667, "numnum:min:MIN_BBYMAX": 5.866667, "numnum:sum:MIN_BBYMAX": 70.033334, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 64.166667, "numnum:min:MAX_BBYMAX": 5.866667, "numnum:sum:MAX_BBYMAX": 70.033334, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -21.8825, "numnum:min:MEAN_BBXC": -55.188737, "numnum:sum:MEAN_BBXC": -77.071237, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 64.116125, "numnum:min:MEAN_BBYC": 5.826428, "numnum:sum:MEAN_BBYC": 69.942553, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 39, "numnum:min:ADMIN1_COD": 16, "numnum:sum:ADMIN1_COD": 55, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 223757, "numnum:min:GN_POP": 113906, "numnum:sum:GN_POP": 337663, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 16, "numnum:min:GTOPO30": 3, "numnum:sum:GTOPO30": 19, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -55.151367, 5.834616 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 160, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 10.651997, "numnum:min:LATITUDE": 6.801974, "numnum:sum:LATITUDE": 17.453971, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -58.167029, "numnum:min:LONGITUDE": -61.517031, "numnum:sum:LONGITUDE": -119.68406, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 294934, "numnum:min:POP_MAX": 264350, "numnum:sum:POP_MAX": 559284, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 235017, "numnum:min:POP_MIN": 49031, "numnum:sum:POP_MIN": 284048, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 419082, "numnum:min:POP_OTHER": 264350, "numnum:sum:POP_OTHER": 683432, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 10, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 20, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 17, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3573890, "numnum:min:GEONAMEID": 3378644, "numnum:sum:GEONAMEID": 6952534, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 294934, "numnum:min:MAX_POP10": 264350, "numnum:sum:MAX_POP10": 559284, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 294934, "numnum:min:MAX_POP20": 264350, "numnum:sum:MAX_POP20": 559284, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 294934, "numnum:min:MAX_POP50": 264350, "numnum:sum:MAX_POP50": 559284, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 294934, "numnum:min:MAX_POP300": 264350, "numnum:sum:MAX_POP300": 559284, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 112, "numnum:min:MIN_AREAKM": 37, "numnum:sum:MIN_AREAKM": 149, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 112, "numnum:min:MAX_AREAKM": 37, "numnum:sum:MAX_AREAKM": 149, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 43, "numnum:min:MIN_AREAMI": 14, "numnum:sum:MIN_AREAMI": 57, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 43, "numnum:min:MAX_AREAMI": 14, "numnum:sum:MAX_AREAMI": 57, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 109, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 153, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 109, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 153, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 67, "numnum:min:MIN_PERMI": 27, "numnum:sum:MIN_PERMI": 94, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 67, "numnum:min:MAX_PERMI": 27, "numnum:sum:MAX_PERMI": 94, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -58.2, "numnum:min:MIN_BBXMIN": -61.533333, "numnum:sum:MIN_BBXMIN": -119.733333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -58.2, "numnum:min:MAX_BBXMIN": -61.533333, "numnum:sum:MAX_BBXMIN": -119.733333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -58.116667, "numnum:min:MIN_BBXMAX": -61.25, "numnum:sum:MIN_BBXMAX": -119.366667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -58.116667, "numnum:min:MAX_BBXMAX": -61.25, "numnum:sum:MAX_BBXMAX": -119.366667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 10.583333, "numnum:min:MIN_BBYMIN": 6.75, "numnum:sum:MIN_BBYMIN": 17.333333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 10.583333, "numnum:min:MAX_BBYMIN": 6.75, "numnum:sum:MAX_BBYMIN": 17.333333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 10.666667, "numnum:min:MIN_BBYMAX": 6.833333, "numnum:sum:MIN_BBYMAX": 17.5, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 10.666667, "numnum:min:MAX_BBYMAX": 6.833333, "numnum:sum:MAX_BBYMAX": 17.5, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -58.153788, "numnum:min:MEAN_BBXC": -61.383365, "numnum:sum:MEAN_BBXC": -119.53715299999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 10.638816, "numnum:min:MEAN_BBYC": 6.797348, "numnum:sum:MEAN_BBYC": 17.436164, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 12, "numnum:min:ADMIN1_COD": 5, "numnum:sum:ADMIN1_COD": 17, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 235017, "numnum:min:GN_POP": 49657, "numnum:sum:GN_POP": 284674, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9998, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 910, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 53.333061, "numnum:min:LATITUDE": 14.916698, "numnum:sum:LATITUDE": 119.749754, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -0.116722, "numnum:min:LONGITUDE": -23.516689, "numnum:sum:LONGITUDE": -29.882317, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 8567000, "numnum:min:POP_MAX": 113364, "numnum:sum:POP_MAX": 9739364, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 7421209, "numnum:min:POP_MIN": 88859, "numnum:sum:POP_MIN": 8479044, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 326670, "numnum:min:POP_OTHER": 22478, "numnum:sum:POP_OTHER": 438353, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 32, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3374333, "numnum:min:GEONAMEID": 2643743, "numnum:sum:GEONAMEID": 8982650, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 7721282, "numnum:min:MAX_POP10": 88859, "numnum:sum:MAX_POP10": 8779117, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 8370578, "numnum:min:MAX_POP20": 88859, "numnum:sum:MAX_POP20": 9428413, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 10011551, "numnum:min:MAX_POP50": 88859, "numnum:sum:MAX_POP50": 11069386, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 10011551, "numnum:min:MAX_POP300": 88859, "numnum:sum:MAX_POP300": 11069386, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 10011551, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 10980527, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1914, "numnum:min:MIN_AREAKM": 37, "numnum:sum:MIN_AREAKM": 2302, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 3198, "numnum:min:MAX_AREAKM": 37, "numnum:sum:MAX_AREAKM": 3586, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 739, "numnum:min:MIN_AREAMI": 14, "numnum:sum:MIN_AREAMI": 888, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 1235, "numnum:min:MAX_AREAMI": 14, "numnum:sum:MAX_AREAMI": 1384, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 994, "numnum:min:MIN_PERKM": 40, "numnum:sum:MIN_PERKM": 1284, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 2440, "numnum:min:MAX_PERKM": 40, "numnum:sum:MAX_PERKM": 2730, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 618, "numnum:min:MIN_PERMI": 25, "numnum:sum:MIN_PERMI": 798, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 1516, "numnum:min:MAX_PERMI": 25, "numnum:sum:MAX_PERMI": 1696, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -1.091667, "numnum:min:MIN_BBXMIN": -23.541667, "numnum:sum:MIN_BBXMIN": -31.166667, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -0.546866, "numnum:min:MAX_BBXMIN": -23.541667, "numnum:sum:MAX_BBXMIN": -30.621866, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 0.307108, "numnum:min:MIN_BBXMAX": -23.483333, "numnum:sum:MIN_BBXMAX": -29.217892, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 0.816667, "numnum:min:MAX_BBXMAX": -23.483333, "numnum:sum:MAX_BBXMAX": -28.708333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 53.175, "numnum:min:MIN_BBYMIN": 14.9, "numnum:sum:MIN_BBYMIN": 119.20833300000001, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 53.175, "numnum:min:MAX_BBYMIN": 14.9, "numnum:sum:MAX_BBYMIN": 119.283333, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 53.433333, "numnum:min:MIN_BBYMAX": 14.983333, "numnum:sum:MIN_BBYMAX": 120.241666, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 53.433333, "numnum:min:MAX_BBYMAX": 14.983333, "numnum:sum:MAX_BBYMAX": 120.241666, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -0.169651, "numnum:min:MEAN_BBXC": -23.514907, "numnum:sum:MEAN_BBXC": -29.963541, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 53.329717, "numnum:min:MEAN_BBYC": 14.938056, "numnum:sum:MEAN_BBYC": 119.75739700000001, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 7, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 7, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 7421209, "numnum:min:GN_POP": 113364, "numnum:sum:GN_POP": 8558600, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 21, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9969, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 519, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 821, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 53.34, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 104.82, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -6.25, "numnum:sum:UN_LONG": -6.42, "numnum:count:POP1950": 3, "numnum:max:POP1950": 8361, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 8987, "numnum:count:POP1955": 3, "numnum:max:POP1955": 8278, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 8925, "numnum:count:POP1960": 3, "numnum:max:POP1960": 8196, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 8857, "numnum:count:POP1965": 3, "numnum:max:POP1965": 7869, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 8592, "numnum:count:POP1970": 3, "numnum:max:POP1970": 7509, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 8280, "numnum:count:POP1975": 3, "numnum:max:POP1975": 7546, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 8379, "numnum:count:POP1980": 3, "numnum:max:POP1980": 7660, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 8563, "numnum:count:POP1985": 3, "numnum:max:POP1985": 7667, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 8587, "numnum:count:POP1990": 3, "numnum:max:POP1990": 7654, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 8570, "numnum:count:POP1995": 3, "numnum:max:POP1995": 7908, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 8854, "numnum:count:POP2000": 3, "numnum:max:POP2000": 8225, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 9214, "numnum:count:POP2005": 3, "numnum:max:POP2005": 8505, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 9542, "numnum:count:POP2010": 3, "numnum:max:POP2010": 8567, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 9626, "numnum:count:POP2015": 3, "numnum:max:POP2015": 8607, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9705, "numnum:count:POP2020": 3, "numnum:max:POP2020": 8618, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 9795, "numnum:count:POP2025": 3, "numnum:max:POP2025": 8618, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 9875, "numnum:count:POP2050": 3, "numnum:max:POP2050": 8618, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 9950, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 420, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 24, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 1, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 1, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 64.150024, "numnum:min:LATITUDE": 5.83503, "numnum:sum:LATITUDE": 123.318115, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -6.248906, "numnum:min:LONGITUDE": -55.167031, "numnum:sum:LONGITUDE": -83.36595100000001, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1059000, "numnum:min:POP_MAX": 166212, "numnum:sum:POP_MAX": 1479381, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 968976, "numnum:min:POP_MIN": 113906, "numnum:sum:POP_MIN": 1306639, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 248161, "numnum:min:POP_OTHER": 22478, "numnum:sum:POP_OTHER": 430755, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 31, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 30, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3413829, "numnum:min:GEONAMEID": 2964574, "numnum:sum:GEONAMEID": 9761733, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 968976, "numnum:min:MAX_POP10": 166212, "numnum:sum:MAX_POP10": 1389357, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 968976, "numnum:min:MAX_POP20": 166212, "numnum:sum:MAX_POP20": 1389357, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 968976, "numnum:min:MAX_POP50": 166212, "numnum:sum:MAX_POP50": 1389357, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 968976, "numnum:min:MAX_POP300": 166212, "numnum:sum:MAX_POP300": 1389357, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 968976, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 968976, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 351, "numnum:min:MIN_AREAKM": 75, "numnum:sum:MIN_AREAKM": 530, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 351, "numnum:min:MAX_AREAKM": 75, "numnum:sum:MAX_AREAKM": 531, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 135, "numnum:min:MIN_AREAMI": 29, "numnum:sum:MIN_AREAMI": 204, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 135, "numnum:min:MAX_AREAMI": 29, "numnum:sum:MAX_AREAMI": 204, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 250, "numnum:min:MIN_PERKM": 83, "numnum:sum:MIN_PERKM": 452, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 250, "numnum:min:MAX_PERKM": 85, "numnum:sum:MAX_PERKM": 454, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 155, "numnum:min:MIN_PERMI": 51, "numnum:sum:MIN_PERMI": 280, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 155, "numnum:min:MAX_PERMI": 53, "numnum:sum:MAX_PERMI": 282, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -6.533333, "numnum:min:MIN_BBXMIN": -55.283333, "numnum:sum:MIN_BBXMIN": -83.82499899999999, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -6.533333, "numnum:min:MAX_BBXMIN": -55.283333, "numnum:sum:MAX_BBXMIN": -83.82499899999999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -6.041667, "numnum:min:MIN_BBXMAX": -55.107566, "numnum:sum:MIN_BBXMAX": -82.899233, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -6.041667, "numnum:min:MAX_BBXMAX": -55.1, "numnum:sum:MAX_BBXMAX": -82.891667, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 64.05, "numnum:min:MIN_BBYMIN": 5.766667, "numnum:sum:MIN_BBYMIN": 122.99166699999999, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 64.05, "numnum:min:MAX_BBYMIN": 5.766667, "numnum:sum:MAX_BBYMIN": 122.99166699999999, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 64.166667, "numnum:min:MIN_BBYMAX": 5.866667, "numnum:sum:MIN_BBYMAX": 123.466667, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 64.166667, "numnum:min:MAX_BBYMAX": 5.866667, "numnum:sum:MAX_BBYMAX": 123.466667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -6.278983, "numnum:min:MEAN_BBXC": -55.188737, "numnum:sum:MEAN_BBXC": -83.35022, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 64.116125, "numnum:min:MEAN_BBYC": 5.826428, "numnum:sum:MEAN_BBYC": 123.27227, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 39, "numnum:min:ADMIN1_COD": 7, "numnum:sum:ADMIN1_COD": 62, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1024027, "numnum:min:GN_POP": 113906, "numnum:sum:GN_POP": 1361690, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 16, "numnum:min:GTOPO30": 3, "numnum:sum:GTOPO30": 28, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 302, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 302, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 53.34, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 53.34, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -6.25, "numnum:sum:UN_LONG": -6.25, "numnum:count:POP1950": 3, "numnum:max:POP1950": 626, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 626, "numnum:count:POP1955": 3, "numnum:max:POP1955": 647, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 647, "numnum:count:POP1960": 3, "numnum:max:POP1960": 661, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 661, "numnum:count:POP1965": 3, "numnum:max:POP1965": 723, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 723, "numnum:count:POP1970": 3, "numnum:max:POP1970": 771, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 771, "numnum:count:POP1975": 3, "numnum:max:POP1975": 833, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 833, "numnum:count:POP1980": 3, "numnum:max:POP1980": 903, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 903, "numnum:count:POP1985": 3, "numnum:max:POP1985": 920, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 920, "numnum:count:POP1990": 3, "numnum:max:POP1990": 916, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 916, "numnum:count:POP1995": 3, "numnum:max:POP1995": 946, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 946, "numnum:count:POP2000": 3, "numnum:max:POP2000": 989, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 989, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1037, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1037, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1059, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1059, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1098, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1098, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1177, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1177, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1257, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1257, "numnum:count:POP2050": 3, "numnum:max:POP2050": 1332, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1332, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -55.151367, 5.834616 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laâyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 250, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 11, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 38.722723, "numnum:min:LATITUDE": 27.149982, "numnum:sum:LATITUDE": 65.872705, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -9.144866, "numnum:min:LONGITUDE": -13.200006, "numnum:sum:LONGITUDE": -22.344872000000004, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2812000, "numnum:min:POP_MAX": 188084, "numnum:sum:POP_MAX": 3000084, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 517802, "numnum:min:POP_MIN": 176365, "numnum:sum:POP_MIN": 694167, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1795582, "numnum:min:POP_OTHER": 176365, "numnum:sum:POP_OTHER": 1971947, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 20, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2462881, "numnum:min:GEONAMEID": 2267057, "numnum:sum:GEONAMEID": 4729938, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1832316, "numnum:min:MAX_POP10": 176365, "numnum:sum:MAX_POP10": 2008681, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1831921, "numnum:min:MAX_POP20": 176365, "numnum:sum:MAX_POP20": 2008286, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1831921, "numnum:min:MAX_POP50": 176365, "numnum:sum:MAX_POP50": 2008286, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1831921, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 1831921, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 150, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 506, "numnum:min:MIN_AREAKM": 21, "numnum:sum:MIN_AREAKM": 527, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 508, "numnum:min:MAX_AREAKM": 21, "numnum:sum:MAX_AREAKM": 529, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 196, "numnum:min:MIN_AREAMI": 8, "numnum:sum:MIN_AREAMI": 204, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 196, "numnum:min:MAX_AREAMI": 8, "numnum:sum:MAX_AREAMI": 204, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 355, "numnum:min:MIN_PERKM": 26, "numnum:sum:MIN_PERKM": 381, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 360, "numnum:min:MAX_PERKM": 26, "numnum:sum:MAX_PERKM": 386, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 221, "numnum:min:MIN_PERMI": 16, "numnum:sum:MIN_PERMI": 237, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 224, "numnum:min:MAX_PERMI": 16, "numnum:sum:MAX_PERMI": 240, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -9.466667, "numnum:min:MIN_BBXMIN": -13.225, "numnum:sum:MIN_BBXMIN": -22.691667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -9.466667, "numnum:min:MAX_BBXMIN": -13.225, "numnum:sum:MAX_BBXMIN": -22.691667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -8.958333, "numnum:min:MIN_BBXMAX": -13.158333, "numnum:sum:MIN_BBXMAX": -22.116666000000003, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -8.958333, "numnum:min:MAX_BBXMAX": -13.158333, "numnum:sum:MAX_BBXMAX": -22.116666000000003, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 38.675, "numnum:min:MIN_BBYMIN": 27.125, "numnum:sum:MIN_BBYMIN": 65.8, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 38.675, "numnum:min:MAX_BBYMIN": 27.125, "numnum:sum:MAX_BBYMIN": 65.8, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 39.008333, "numnum:min:MIN_BBYMAX": 27.175, "numnum:sum:MIN_BBYMAX": 66.183333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 39.008333, "numnum:min:MAX_BBYMAX": 27.175, "numnum:sum:MAX_BBYMAX": 66.183333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -9.232769, "numnum:min:MEAN_BBXC": -13.194643, "numnum:sum:MEAN_BBXC": -22.427411999999998, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 38.783256, "numnum:min:MEAN_BBYC": 27.146131, "numnum:sum:MEAN_BBYC": 65.929387, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 14, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 14, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 517802, "numnum:min:GN_POP": 188084, "numnum:sum:GN_POP": 705886, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 72, "numnum:min:GTOPO30": 56, "numnum:sum:GTOPO30": 128, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 419, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 419, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 38.72, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 38.72, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -9.12, "numnum:sum:UN_LONG": -9.12, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1304, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1304, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1405, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1405, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1514, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1514, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1657, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1657, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1817, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1817, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2103, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2103, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2449, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2449, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2518, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2518, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2537, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2537, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2600, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2600, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2672, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2672, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2762, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2762, "numnum:count:POP2010": 2, "numnum:max:POP2010": 2812, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2812, "numnum:count:POP2015": 2, "numnum:max:POP2015": 2890, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2890, "numnum:count:POP2020": 2, "numnum:max:POP2020": 2996, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 2996, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3058, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3058, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3086, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3086, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 710, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 5, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 51.499995, "numnum:min:LATITUDE": 14.916698, "numnum:sum:LATITUDE": 66.416693, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -0.116722, "numnum:min:LONGITUDE": -23.516689, "numnum:sum:LONGITUDE": -23.633411, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 8567000, "numnum:min:POP_MAX": 113364, "numnum:sum:POP_MAX": 8680364, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 7421209, "numnum:min:POP_MIN": 88859, "numnum:sum:POP_MIN": 7510068, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 326670, "numnum:min:POP_OTHER": 89205, "numnum:sum:POP_OTHER": 415875, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3374333, "numnum:min:GEONAMEID": 2643743, "numnum:sum:GEONAMEID": 6018076, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 7721282, "numnum:min:MAX_POP10": 88859, "numnum:sum:MAX_POP10": 7810141, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 8370578, "numnum:min:MAX_POP20": 88859, "numnum:sum:MAX_POP20": 8459437, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 10011551, "numnum:min:MAX_POP50": 88859, "numnum:sum:MAX_POP50": 10100410, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 10011551, "numnum:min:MAX_POP300": 88859, "numnum:sum:MAX_POP300": 10100410, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 10011551, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 10011551, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1914, "numnum:min:MIN_AREAKM": 37, "numnum:sum:MIN_AREAKM": 1951, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 3198, "numnum:min:MAX_AREAKM": 37, "numnum:sum:MAX_AREAKM": 3235, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 739, "numnum:min:MIN_AREAMI": 14, "numnum:sum:MIN_AREAMI": 753, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1235, "numnum:min:MAX_AREAMI": 14, "numnum:sum:MAX_AREAMI": 1249, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 994, "numnum:min:MIN_PERKM": 40, "numnum:sum:MIN_PERKM": 1034, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 2440, "numnum:min:MAX_PERKM": 40, "numnum:sum:MAX_PERKM": 2480, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 618, "numnum:min:MIN_PERMI": 25, "numnum:sum:MIN_PERMI": 643, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1516, "numnum:min:MAX_PERMI": 25, "numnum:sum:MAX_PERMI": 1541, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -1.091667, "numnum:min:MIN_BBXMIN": -23.541667, "numnum:sum:MIN_BBXMIN": -24.633334, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -0.546866, "numnum:min:MAX_BBXMIN": -23.541667, "numnum:sum:MAX_BBXMIN": -24.088533, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 0.307108, "numnum:min:MIN_BBXMAX": -23.483333, "numnum:sum:MIN_BBXMAX": -23.176225, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 0.816667, "numnum:min:MAX_BBXMAX": -23.483333, "numnum:sum:MAX_BBXMAX": -22.666666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 51.133333, "numnum:min:MIN_BBYMIN": 14.9, "numnum:sum:MIN_BBYMIN": 66.033333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 51.208333, "numnum:min:MAX_BBYMIN": 14.9, "numnum:sum:MAX_BBYMIN": 66.108333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 51.825, "numnum:min:MIN_BBYMAX": 14.983333, "numnum:sum:MIN_BBYMAX": 66.808333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 51.825, "numnum:min:MAX_BBYMAX": 14.983333, "numnum:sum:MAX_BBYMAX": 66.808333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -0.169651, "numnum:min:MEAN_BBXC": -23.514907, "numnum:sum:MEAN_BBXC": -23.684558000000004, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 51.489624, "numnum:min:MEAN_BBYC": 14.938056, "numnum:sum:MEAN_BBYC": 66.42768, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 0, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 0, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7421209, "numnum:min:GN_POP": 113364, "numnum:sum:GN_POP": 7534573, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 21, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9978, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 519, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 519, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 51.48, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 51.48, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -0.17, "numnum:sum:UN_LONG": -0.17, "numnum:count:POP1950": 2, "numnum:max:POP1950": 8361, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 8361, "numnum:count:POP1955": 2, "numnum:max:POP1955": 8278, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 8278, "numnum:count:POP1960": 2, "numnum:max:POP1960": 8196, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 8196, "numnum:count:POP1965": 2, "numnum:max:POP1965": 7869, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 7869, "numnum:count:POP1970": 2, "numnum:max:POP1970": 7509, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 7509, "numnum:count:POP1975": 2, "numnum:max:POP1975": 7546, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 7546, "numnum:count:POP1980": 2, "numnum:max:POP1980": 7660, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 7660, "numnum:count:POP1985": 2, "numnum:max:POP1985": 7667, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 7667, "numnum:count:POP1990": 2, "numnum:max:POP1990": 7654, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 7654, "numnum:count:POP1995": 2, "numnum:max:POP1995": 7908, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 7908, "numnum:count:POP2000": 2, "numnum:max:POP2000": 8225, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 8225, "numnum:count:POP2005": 2, "numnum:max:POP2005": 8505, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 8505, "numnum:count:POP2010": 2, "numnum:max:POP2010": 8567, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 8567, "numnum:count:POP2015": 2, "numnum:max:POP2015": 8607, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 8607, "numnum:count:POP2020": 2, "numnum:max:POP2020": 8618, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 8618, "numnum:count:POP2025": 2, "numnum:max:POP2025": 8618, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 8618, "numnum:count:POP2050": 2, "numnum:max:POP2050": 8618, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 8618, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 710, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 40.400026, "numnum:min:LATITUDE": 33.599976, "numnum:sum:LATITUDE": 108.02530099999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -3.683352, "numnum:min:LONGITUDE": -7.616367, "numnum:sum:LONGITUDE": -18.13585, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 5567000, "numnum:min:POP_MAX": 1705000, "numnum:sum:POP_MAX": 10453000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 3144909, "numnum:min:POP_MIN": 50437, "numnum:sum:POP_MIN": 4851099, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3718797, "numnum:min:POP_OTHER": 2029349, "numnum:sum:POP_OTHER": 9421573, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 37, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 32, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3675707, "numnum:min:GEONAMEID": 2538475, "numnum:sum:GEONAMEID": 8767786, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3796279, "numnum:min:MAX_POP10": 2037124, "numnum:sum:MAX_POP10": 9600542, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3796279, "numnum:min:MAX_POP20": 2037124, "numnum:sum:MAX_POP20": 9600542, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3796279, "numnum:min:MAX_POP50": 2037124, "numnum:sum:MAX_POP50": 9600542, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3796279, "numnum:min:MAX_POP300": 2037124, "numnum:sum:MAX_POP300": 9600542, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 3767139, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3767139, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 690, "numnum:min:MIN_AREAKM": 428, "numnum:sum:MIN_AREAKM": 1554, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 690, "numnum:min:MAX_AREAKM": 428, "numnum:sum:MAX_AREAKM": 1554, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 266, "numnum:min:MIN_AREAMI": 165, "numnum:sum:MIN_AREAMI": 599, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 266, "numnum:min:MAX_AREAMI": 165, "numnum:sum:MAX_AREAMI": 599, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 558, "numnum:min:MIN_PERKM": 261, "numnum:sum:MIN_PERKM": 1294, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 558, "numnum:min:MAX_PERKM": 261, "numnum:sum:MAX_PERKM": 1294, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 347, "numnum:min:MIN_PERMI": 162, "numnum:sum:MIN_PERMI": 804, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 347, "numnum:min:MAX_PERMI": 162, "numnum:sum:MAX_PERMI": 804, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -4.025, "numnum:min:MIN_BBXMIN": -7.7, "numnum:sum:MIN_BBXMIN": -18.841667, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -4.025, "numnum:min:MAX_BBXMIN": -7.7, "numnum:sum:MAX_BBXMIN": -18.841667, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -3.433333, "numnum:min:MIN_BBXMAX": -7.325, "numnum:sum:MIN_BBXMAX": -17.483333000000003, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -3.433333, "numnum:min:MAX_BBXMAX": -7.325, "numnum:sum:MAX_BBXMAX": -17.483333000000003, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 40.225, "numnum:min:MIN_BBYMIN": 33.391667, "numnum:sum:MIN_BBYMIN": 107.35833399999999, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 40.225, "numnum:min:MAX_BBYMIN": 33.391667, "numnum:sum:MAX_BBYMIN": 107.35833399999999, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 40.616667, "numnum:min:MIN_BBYMAX": 33.733333, "numnum:sum:MIN_BBYMAX": 108.475, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 40.616667, "numnum:min:MAX_BBYMAX": 33.733333, "numnum:sum:MAX_BBYMAX": 108.475, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -3.749399, "numnum:min:MEAN_BBXC": -7.518511, "numnum:sum:MEAN_BBXC": -18.14282, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 40.425498, "numnum:min:MEAN_BBYC": 33.557664, "numnum:sum:MEAN_BBYC": 107.89600899999999, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 49, "numnum:min:ADMIN1_COD": 33, "numnum:sum:ADMIN1_COD": 127, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 3144909, "numnum:min:GN_POP": 50437, "numnum:sum:GN_POP": 4851099, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 2400, "numnum:min:GTOPO30": 17, "numnum:sum:GTOPO30": 2471, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 464, "numnum:min:UN_FID": 372, "numnum:sum:UN_FID": 1211, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 40.44, "numnum:min:UN_LAT": 33.6, "numnum:sum:UN_LAT": 108.05, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -3.69, "numnum:min:UN_LONG": -7.63, "numnum:sum:UN_LONG": -18.150000000000003, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1700, "numnum:min:POP1950": 145, "numnum:sum:POP1950": 2470, "numnum:count:POP1955": 3, "numnum:max:POP1955": 2018, "numnum:min:POP1955": 184, "numnum:sum:POP1955": 2980, "numnum:count:POP1960": 3, "numnum:max:POP1960": 2392, "numnum:min:POP1960": 233, "numnum:sum:POP1960": 3592, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2898, "numnum:min:POP1965": 339, "numnum:sum:POP1965": 4443, "numnum:count:POP1970": 3, "numnum:max:POP1970": 3521, "numnum:min:POP1970": 494, "numnum:sum:POP1970": 5520, "numnum:count:POP1975": 3, "numnum:max:POP1975": 3890, "numnum:min:POP1975": 641, "numnum:sum:POP1975": 6324, "numnum:count:POP1980": 3, "numnum:max:POP1980": 4253, "numnum:min:POP1980": 808, "numnum:sum:POP1980": 7170, "numnum:count:POP1985": 3, "numnum:max:POP1985": 4355, "numnum:min:POP1985": 986, "numnum:sum:POP1985": 7747, "numnum:count:POP1990": 3, "numnum:max:POP1990": 4414, "numnum:min:POP1990": 1174, "numnum:sum:POP1990": 8270, "numnum:count:POP1995": 3, "numnum:max:POP1995": 4701, "numnum:min:POP1995": 1379, "numnum:sum:POP1995": 9031, "numnum:count:POP2000": 3, "numnum:max:POP2000": 5045, "numnum:min:POP2000": 1507, "numnum:sum:POP2000": 9595, "numnum:count:POP2005": 3, "numnum:max:POP2005": 5414, "numnum:min:POP2005": 1647, "numnum:sum:POP2005": 10199, "numnum:count:POP2010": 3, "numnum:max:POP2010": 5567, "numnum:min:POP2010": 1705, "numnum:sum:POP2010": 10453, "numnum:count:POP2015": 3, "numnum:max:POP2015": 5764, "numnum:min:POP2015": 1793, "numnum:sum:POP2015": 10824, "numnum:count:POP2020": 3, "numnum:max:POP2020": 5918, "numnum:min:POP2020": 1938, "numnum:sum:POP2020": 11331, "numnum:count:POP2025": 3, "numnum:max:POP2025": 5934, "numnum:min:POP2025": 2083, "numnum:sum:POP2025": 11733, "numnum:count:POP2050": 3, "numnum:max:POP2050": 5935, "numnum:min:POP2050": 2222, "numnum:sum:POP2050": 12106, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -7.602539, 33.614619 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 26.119167, "numnum:min:LATITUDE": 14.715832, "numnum:sum:LATITUDE": 40.834999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -9.652522, "numnum:min:LONGITUDE": -17.47313, "numnum:sum:LONGITUDE": -27.125652000000004, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2604000, "numnum:min:POP_MAX": 500, "numnum:sum:POP_MAX": 2604500, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2476400, "numnum:min:POP_MIN": 200, "numnum:sum:POP_MIN": 2476600, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2470140, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 2470140, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 2, "numnum:sum:RANK_MAX": 14, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 1, "numnum:sum:RANK_MIN": 13, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2253354, "numnum:min:GEONAMEID": -1, "numnum:sum:GEONAMEID": 2253353, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 2, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2635239, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 2635239, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2634882, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 2634882, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 2660614, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 2660614, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 2660614, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 2660614, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 0, "numnum:sum:MAX_NATSCA": 100, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 257, "numnum:min:MIN_AREAKM": 0, "numnum:sum:MIN_AREAKM": 257, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 302, "numnum:min:MAX_AREAKM": 0, "numnum:sum:MAX_AREAKM": 302, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 99, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 99, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 117, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 117, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 222, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 222, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 288, "numnum:min:MAX_PERKM": 0, "numnum:sum:MAX_PERKM": 288, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 138, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 138, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 179, "numnum:min:MAX_PERMI": 0, "numnum:sum:MAX_PERMI": 179, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 0, "numnum:min:MIN_BBXMIN": -17.533333, "numnum:sum:MIN_BBXMIN": -17.533333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 0, "numnum:min:MAX_BBXMIN": -17.533333, "numnum:sum:MAX_BBXMIN": -17.533333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 0, "numnum:min:MIN_BBXMAX": -17.2, "numnum:sum:MIN_BBXMAX": -17.2, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 0, "numnum:min:MAX_BBXMAX": -17.125, "numnum:sum:MAX_BBXMAX": -17.125, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 14.65, "numnum:min:MIN_BBYMIN": 0, "numnum:sum:MIN_BBYMIN": 14.65, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 14.65, "numnum:min:MAX_BBYMIN": 0, "numnum:sum:MAX_BBYMIN": 14.65, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 14.825, "numnum:min:MIN_BBYMAX": 0, "numnum:sum:MIN_BBYMAX": 14.825, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 14.825, "numnum:min:MAX_BBYMAX": 0, "numnum:sum:MAX_BBYMAX": 14.825, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 0, "numnum:min:MEAN_BBXC": -17.343779, "numnum:sum:MEAN_BBXC": -17.343779, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 14.742828, "numnum:min:MEAN_BBYC": 0, "numnum:sum:MEAN_BBYC": 14.742828, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 1, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 1, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2476400, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 2476400, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 14, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 14, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 447, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 447, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 14.68, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 14.68, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -17.45, "numnum:sum:UN_LONG": -17.45, "numnum:count:POP1950": 2, "numnum:max:POP1950": 211, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 211, "numnum:count:POP1955": 2, "numnum:max:POP1955": 235, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 235, "numnum:count:POP1960": 2, "numnum:max:POP1960": 359, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 359, "numnum:count:POP1965": 2, "numnum:max:POP1965": 473, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 473, "numnum:count:POP1970": 2, "numnum:max:POP1970": 610, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 610, "numnum:count:POP1975": 2, "numnum:max:POP1975": 782, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 782, "numnum:count:POP1980": 2, "numnum:max:POP1980": 957, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 957, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1162, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1162, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1405, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1405, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1688, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1688, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2029, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2029, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2434, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2434, "numnum:count:POP2010": 2, "numnum:max:POP2010": 2604, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2604, "numnum:count:POP2015": 2, "numnum:max:POP2015": 2856, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2856, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3275, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3275, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3726, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3726, "numnum:count:POP2050": 2, "numnum:max:POP2050": 4225, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4225, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laâyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144, "MAX_POP20": 742144, "MAX_POP50": 742144, "MAX_POP300": 742144, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 98, "MAX_AREAKM": 98, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 661400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 270, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 7, "numnum:sum:LABELRANK": 23, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 18.086427, "numnum:min:LATITUDE": 11.865024, "numnum:sum:LATITUDE": 43.405327, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -15.598361, "numnum:min:LONGITUDE": -16.591701, "numnum:sum:LONGITUDE": -48.165402, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 742144, "numnum:min:POP_MAX": 43094, "numnum:sum:POP_MAX": 1188577, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 661400, "numnum:min:POP_MIN": 34589, "numnum:sum:POP_MIN": 1084017, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 742144, "numnum:min:POP_OTHER": 403339, "numnum:sum:POP_OTHER": 1726783, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 11, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 28, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 28, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2413876, "numnum:min:GEONAMEID": 2374775, "numnum:sum:GEONAMEID": 7166101, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 742144, "numnum:min:MAX_POP10": 43094, "numnum:sum:MAX_POP10": 1188577, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 742144, "numnum:min:MAX_POP20": 43094, "numnum:sum:MAX_POP20": 1188577, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 742144, "numnum:min:MAX_POP50": 43094, "numnum:sum:MAX_POP50": 1188577, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 742144, "numnum:min:MAX_POP300": 43094, "numnum:sum:MAX_POP300": 1188577, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 98, "numnum:min:MIN_AREAKM": 7, "numnum:sum:MIN_AREAKM": 175, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 98, "numnum:min:MAX_AREAKM": 7, "numnum:sum:MAX_AREAKM": 175, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 38, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 68, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 38, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 68, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 92, "numnum:min:MIN_PERKM": 13, "numnum:sum:MIN_PERKM": 171, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 92, "numnum:min:MAX_PERKM": 13, "numnum:sum:MAX_PERKM": 171, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 57, "numnum:min:MIN_PERMI": 8, "numnum:sum:MIN_PERMI": 106, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 57, "numnum:min:MAX_PERMI": 8, "numnum:sum:MAX_PERMI": 106, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -15.658333, "numnum:min:MIN_BBXMIN": -16.6, "numnum:sum:MIN_BBXMIN": -48.275000000000009, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -15.658333, "numnum:min:MAX_BBXMIN": -16.6, "numnum:sum:MAX_BBXMIN": -48.275000000000009, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -15.558333, "numnum:min:MIN_BBXMAX": -16.566667, "numnum:sum:MIN_BBXMAX": -48.016667, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -15.558333, "numnum:min:MAX_BBXMAX": -16.566667, "numnum:sum:MAX_BBXMAX": -48.016667, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 18.033333, "numnum:min:MIN_BBYMIN": 11.808333, "numnum:sum:MIN_BBYMIN": 43.283333, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 18.033333, "numnum:min:MAX_BBYMIN": 11.808333, "numnum:sum:MAX_BBYMIN": 43.283333, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 18.15, "numnum:min:MIN_BBYMAX": 11.933333, "numnum:sum:MIN_BBYMAX": 43.55, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 18.15, "numnum:min:MAX_BBYMAX": 11.933333, "numnum:sum:MAX_BBYMAX": 43.55, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -15.612698, "numnum:min:MEAN_BBXC": -16.58125, "numnum:sum:MEAN_BBXC": -48.154087000000007, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 18.092569, "numnum:min:MEAN_BBYC": 11.871032, "numnum:sum:MEAN_BBYC": 43.418809, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 18, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 661400, "numnum:min:GN_POP": 34589, "numnum:sum:GN_POP": 1084017, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 5, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -19993, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 3, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 3, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 3, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 3, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 3, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 3, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 3, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 3, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 3, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 3, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 3, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 3, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 3, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 3, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 3, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 3, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 3, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -15.952148, 18.062312 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 610, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 38.722723, "numnum:min:LATITUDE": 33.599976, "numnum:sum:LATITUDE": 106.34799799999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -6.836131, "numnum:min:LONGITUDE": -9.144866, "numnum:sum:LONGITUDE": -23.597364, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3181000, "numnum:min:POP_MAX": 1705000, "numnum:sum:POP_MAX": 7698000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 3144909, "numnum:min:POP_MIN": 517802, "numnum:sum:POP_MIN": 5318464, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3718797, "numnum:min:POP_OTHER": 1795582, "numnum:sum:POP_OTHER": 7543728, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 35, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2553604, "numnum:min:GEONAMEID": 2267057, "numnum:sum:GEONAMEID": 7359136, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3796279, "numnum:min:MAX_POP10": 1832316, "numnum:sum:MAX_POP10": 7665719, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3796279, "numnum:min:MAX_POP20": 1831921, "numnum:sum:MAX_POP20": 7665324, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3796279, "numnum:min:MAX_POP50": 1831921, "numnum:sum:MAX_POP50": 7665324, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3796279, "numnum:min:MAX_POP300": 1831921, "numnum:sum:MAX_POP300": 7665324, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 506, "numnum:min:MIN_AREAKM": 428, "numnum:sum:MIN_AREAKM": 1370, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 508, "numnum:min:MAX_AREAKM": 428, "numnum:sum:MAX_AREAKM": 1372, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 196, "numnum:min:MIN_AREAMI": 165, "numnum:sum:MIN_AREAMI": 529, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 196, "numnum:min:MAX_AREAMI": 165, "numnum:sum:MAX_AREAMI": 529, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 475, "numnum:min:MIN_PERKM": 261, "numnum:sum:MIN_PERKM": 1091, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 475, "numnum:min:MAX_PERKM": 261, "numnum:sum:MAX_PERKM": 1096, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 295, "numnum:min:MIN_PERMI": 162, "numnum:sum:MIN_PERMI": 678, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 295, "numnum:min:MAX_PERMI": 162, "numnum:sum:MAX_PERMI": 681, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -7.116667, "numnum:min:MIN_BBXMIN": -9.466667, "numnum:sum:MIN_BBXMIN": -24.283334, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -7.116667, "numnum:min:MAX_BBXMIN": -9.466667, "numnum:sum:MAX_BBXMIN": -24.283334, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -6.725, "numnum:min:MIN_BBXMAX": -8.958333, "numnum:sum:MIN_BBXMAX": -23.008333, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -6.725, "numnum:min:MAX_BBXMAX": -8.958333, "numnum:sum:MAX_BBXMAX": -23.008333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 38.675, "numnum:min:MIN_BBYMIN": 33.391667, "numnum:sum:MIN_BBYMIN": 105.808334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 38.675, "numnum:min:MAX_BBYMIN": 33.391667, "numnum:sum:MAX_BBYMIN": 105.808334, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 39.008333, "numnum:min:MIN_BBYMAX": 33.733333, "numnum:sum:MIN_BBYMAX": 106.86666600000001, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 39.008333, "numnum:min:MAX_BBYMAX": 33.733333, "numnum:sum:MAX_BBYMAX": 106.86666600000001, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -6.87491, "numnum:min:MEAN_BBXC": -9.232769, "numnum:sum:MEAN_BBXC": -23.62619, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 38.783256, "numnum:min:MEAN_BBYC": 33.557664, "numnum:sum:MEAN_BBYC": 106.25376700000001, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 49, "numnum:min:ADMIN1_COD": 14, "numnum:sum:ADMIN1_COD": 108, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 3144909, "numnum:min:GN_POP": 517802, "numnum:sum:GN_POP": 5318464, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 56, "numnum:min:GTOPO30": 17, "numnum:sum:GTOPO30": 127, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 419, "numnum:min:UN_FID": 372, "numnum:sum:UN_FID": 1166, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 38.72, "numnum:min:UN_LAT": 33.6, "numnum:sum:UN_LAT": 106.32999999999999, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -6.83, "numnum:min:UN_LONG": -9.12, "numnum:sum:UN_LONG": -23.58, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1304, "numnum:min:POP1950": 145, "numnum:sum:POP1950": 2074, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1405, "numnum:min:POP1955": 184, "numnum:sum:POP1955": 2367, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1514, "numnum:min:POP1960": 233, "numnum:sum:POP1960": 2714, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1657, "numnum:min:POP1965": 339, "numnum:sum:POP1965": 3202, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1817, "numnum:min:POP1970": 494, "numnum:sum:POP1970": 3816, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2103, "numnum:min:POP1975": 641, "numnum:sum:POP1975": 4537, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2449, "numnum:min:POP1980": 808, "numnum:sum:POP1980": 5366, "numnum:count:POP1985": 3, "numnum:max:POP1985": 2518, "numnum:min:POP1985": 986, "numnum:sum:POP1985": 5910, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2682, "numnum:min:POP1990": 1174, "numnum:sum:POP1990": 6393, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2951, "numnum:min:POP1995": 1379, "numnum:sum:POP1995": 6930, "numnum:count:POP2000": 3, "numnum:max:POP2000": 3043, "numnum:min:POP2000": 1507, "numnum:sum:POP2000": 7222, "numnum:count:POP2005": 3, "numnum:max:POP2005": 3138, "numnum:min:POP2005": 1647, "numnum:sum:POP2005": 7547, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3181, "numnum:min:POP2010": 1705, "numnum:sum:POP2010": 7698, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3267, "numnum:min:POP2015": 1793, "numnum:sum:POP2015": 7950, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3475, "numnum:min:POP2020": 1938, "numnum:sum:POP2020": 8409, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3716, "numnum:min:POP2025": 2083, "numnum:sum:POP2025": 8857, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3949, "numnum:min:POP2050": 2222, "numnum:sum:POP2050": 9257, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 9.531523, "numnum:min:LATITUDE": 8.470011, "numnum:sum:LATITUDE": 18.001534, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -13.234216, "numnum:min:LONGITUDE": -13.680235, "numnum:sum:LONGITUDE": -26.914451, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1494000, "numnum:min:POP_MAX": 827000, "numnum:sum:POP_MAX": 2321000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1494000, "numnum:min:POP_MIN": 13768, "numnum:sum:POP_MIN": 1507768, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1498020, "numnum:min:POP_OTHER": 1074640, "numnum:sum:POP_OTHER": 2572660, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 18, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2422465, "numnum:min:GEONAMEID": 2408770, "numnum:sum:GEONAMEID": 4831235, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1504217, "numnum:min:MAX_POP10": 1074311, "numnum:sum:MAX_POP10": 2578528, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1504217, "numnum:min:MAX_POP20": 1074311, "numnum:sum:MAX_POP20": 2578528, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1504217, "numnum:min:MAX_POP50": 1074311, "numnum:sum:MAX_POP50": 2578528, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1504217, "numnum:min:MAX_POP300": 1074311, "numnum:sum:MAX_POP300": 2578528, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 184, "numnum:min:MIN_AREAKM": 77, "numnum:sum:MIN_AREAKM": 261, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 184, "numnum:min:MAX_AREAKM": 77, "numnum:sum:MAX_AREAKM": 261, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 71, "numnum:min:MIN_AREAMI": 30, "numnum:sum:MIN_AREAMI": 101, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 71, "numnum:min:MAX_AREAMI": 30, "numnum:sum:MAX_AREAMI": 101, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 123, "numnum:min:MIN_PERKM": 81, "numnum:sum:MIN_PERKM": 204, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 123, "numnum:min:MAX_PERKM": 81, "numnum:sum:MAX_PERKM": 204, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 76, "numnum:min:MIN_PERMI": 50, "numnum:sum:MIN_PERMI": 126, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 76, "numnum:min:MAX_PERMI": 50, "numnum:sum:MAX_PERMI": 126, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -13.3, "numnum:min:MIN_BBXMIN": -13.725, "numnum:sum:MIN_BBXMIN": -27.025, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -13.3, "numnum:min:MAX_BBXMIN": -13.725, "numnum:sum:MAX_BBXMIN": -27.025, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -13.15, "numnum:min:MIN_BBXMAX": -13.475, "numnum:sum:MIN_BBXMAX": -26.625, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -13.15, "numnum:min:MAX_BBXMAX": -13.475, "numnum:sum:MAX_BBXMAX": -26.625, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 9.5, "numnum:min:MIN_BBYMIN": 8.408333, "numnum:sum:MIN_BBYMIN": 17.908333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 9.5, "numnum:min:MAX_BBYMIN": 8.408333, "numnum:sum:MAX_BBYMIN": 17.908333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 9.775, "numnum:min:MIN_BBYMAX": 8.5, "numnum:sum:MIN_BBYMAX": 18.275, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 9.775, "numnum:min:MAX_BBYMAX": 8.5, "numnum:sum:MAX_BBYMAX": 18.275, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -13.230082, "numnum:min:MEAN_BBXC": -13.588647, "numnum:sum:MEAN_BBXC": -26.818728999999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 9.633104, "numnum:min:MEAN_BBYC": 8.462592, "numnum:sum:MEAN_BBYC": 18.095696, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 4, "numnum:min:ADMIN1_COD": 4, "numnum:sum:ADMIN1_COD": 8, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1767200, "numnum:min:GN_POP": 13768, "numnum:sum:GN_POP": 1780968, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 235, "numnum:min:GTOPO30": 15, "numnum:sum:GTOPO30": 250, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 449, "numnum:min:UN_FID": 207, "numnum:sum:UN_FID": 656, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 9.54, "numnum:min:UN_LAT": 8.48, "numnum:sum:UN_LAT": 18.02, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -13.23, "numnum:min:UN_LONG": -13.67, "numnum:sum:UN_LONG": -26.9, "numnum:count:POP1950": 2, "numnum:max:POP1950": 92, "numnum:min:POP1950": 31, "numnum:sum:POP1950": 123, "numnum:count:POP1955": 2, "numnum:max:POP1955": 104, "numnum:min:POP1955": 59, "numnum:sum:POP1955": 163, "numnum:count:POP1960": 2, "numnum:max:POP1960": 119, "numnum:min:POP1960": 112, "numnum:sum:POP1960": 231, "numnum:count:POP1965": 2, "numnum:max:POP1965": 208, "numnum:min:POP1965": 148, "numnum:sum:POP1965": 356, "numnum:count:POP1970": 2, "numnum:max:POP1970": 388, "numnum:min:POP1970": 206, "numnum:sum:POP1970": 594, "numnum:count:POP1975": 2, "numnum:max:POP1975": 530, "numnum:min:POP1975": 284, "numnum:sum:POP1975": 814, "numnum:count:POP1980": 2, "numnum:max:POP1980": 658, "numnum:min:POP1980": 361, "numnum:sum:POP1980": 1019, "numnum:count:POP1985": 2, "numnum:max:POP1985": 766, "numnum:min:POP1985": 460, "numnum:sum:POP1985": 1226, "numnum:count:POP1990": 2, "numnum:max:POP1990": 895, "numnum:min:POP1990": 529, "numnum:sum:POP1990": 1424, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1045, "numnum:min:POP1995": 603, "numnum:sum:POP1995": 1648, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1219, "numnum:min:POP2000": 688, "numnum:sum:POP2000": 1907, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1409, "numnum:min:POP2005": 785, "numnum:sum:POP2005": 2194, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1494, "numnum:min:POP2010": 827, "numnum:sum:POP2010": 2321, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1645, "numnum:min:POP2015": 894, "numnum:sum:POP2015": 2539, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1984, "numnum:min:POP2020": 1029, "numnum:sum:POP2020": 3013, "numnum:count:POP2025": 2, "numnum:max:POP2025": 2393, "numnum:min:POP2025": 1200, "numnum:sum:POP2025": 3593, "numnum:count:POP2050": 2, "numnum:max:POP2050": 2856, "numnum:min:POP2050": 1406, "numnum:sum:POP2050": 4262, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.413496 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bamako", "DIFFASCII": 0, "NAMEASCII": "Bamako", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mali", "SOV_A3": "MLI", "ADM0NAME": "Mali", "ADM0_A3": "MLI", "ADM1NAME": "Bamako", "ISO_A2": "ML", "LATITUDE": 12.650015, "LONGITUDE": -8.000039, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1297281, "POP_OTHER": 1301407, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2460596, "MEGANAME": "Bamako", "LS_NAME": "Bamako", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1316564, "MAX_POP20": 1316564, "MAX_POP50": 1316564, "MAX_POP300": 1316564, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 172, "MAX_AREAKM": 172, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 106, "MAX_PERKM": 106, "MIN_PERMI": 66, "MAX_PERMI": 66, "MIN_BBXMIN": -8.058333, "MAX_BBXMIN": -8.058333, "MIN_BBXMAX": -7.908333, "MAX_BBXMAX": -7.908333, "MIN_BBYMIN": 12.541667, "MAX_BBYMIN": 12.541667, "MIN_BBYMAX": 12.716667, "MAX_BBYMAX": 12.716667, "MEAN_BBXC": -7.987419, "MEAN_BBYC": 12.626173, "COMPARE": 0, "GN_ASCII": "Bamako", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1297281, "ELEVATION": 0, "GTOPO30": 350, "TIMEZONE": "Africa/Bamako", "GEONAMESNO": "GeoNames match general.", "UN_FID": 349, "UN_ADM0": "Mali", "UN_LAT": 12.65, "UN_LONG": -7.98, "POP1950": 89, "POP1955": 111, "POP1960": 130, "POP1965": 158, "POP1970": 222, "POP1975": 363, "POP1980": 489, "POP1985": 608, "POP1990": 746, "POP1995": 910, "POP2000": 1110, "POP2005": 1368, "POP2010": 1494, "POP2015": 1708, "POP2020": 2130, "POP2025": 2633, "POP2050": 3214, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 420, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 22, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 12.650015, "numnum:min:LATITUDE": 6.310557, "numnum:sum:LATITUDE": 31.330887999999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -1.524724, "numnum:min:LONGITUDE": -10.804752, "numnum:sum:LONGITUDE": -20.329515, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1494000, "numnum:min:POP_MAX": 1041000, "numnum:sum:POP_MAX": 3684000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1297281, "numnum:min:POP_MIN": 785662, "numnum:sum:POP_MIN": 2918400, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1301407, "numnum:min:POP_OTHER": 713874, "numnum:sum:POP_OTHER": 2821697, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 34, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2460596, "numnum:min:GEONAMEID": 2274895, "numnum:sum:GEONAMEID": 7092539, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1316564, "numnum:min:MAX_POP10": 785662, "numnum:sum:MAX_POP10": 2937683, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1316564, "numnum:min:MAX_POP20": 781295, "numnum:sum:MAX_POP20": 2933316, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1316564, "numnum:min:MAX_POP50": 781295, "numnum:sum:MAX_POP50": 2933316, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1316564, "numnum:min:MAX_POP300": 781295, "numnum:sum:MAX_POP300": 2933316, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 236, "numnum:min:MIN_AREAKM": 141, "numnum:sum:MIN_AREAKM": 549, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 236, "numnum:min:MAX_AREAKM": 152, "numnum:sum:MAX_AREAKM": 560, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 91, "numnum:min:MIN_AREAMI": 54, "numnum:sum:MIN_AREAMI": 211, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 91, "numnum:min:MAX_AREAMI": 59, "numnum:sum:MAX_AREAMI": 216, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 164, "numnum:min:MIN_PERKM": 106, "numnum:sum:MIN_PERKM": 403, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 184, "numnum:min:MAX_PERKM": 106, "numnum:sum:MAX_PERKM": 423, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 102, "numnum:min:MIN_PERMI": 66, "numnum:sum:MIN_PERMI": 251, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 115, "numnum:min:MAX_PERMI": 66, "numnum:sum:MAX_PERMI": 264, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -1.616667, "numnum:min:MIN_BBXMIN": -10.816667, "numnum:sum:MIN_BBXMIN": -20.491667, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -1.616667, "numnum:min:MAX_BBXMIN": -10.816667, "numnum:sum:MAX_BBXMIN": -20.491667, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -1.433333, "numnum:min:MIN_BBXMAX": -10.658333, "numnum:sum:MIN_BBXMAX": -19.999999000000004, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -1.433333, "numnum:min:MAX_BBXMAX": -10.658333, "numnum:sum:MAX_BBXMAX": -19.999999000000004, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 12.541667, "numnum:min:MIN_BBYMIN": 6.225, "numnum:sum:MIN_BBYMIN": 31.041667000000005, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 12.541667, "numnum:min:MAX_BBYMIN": 6.225, "numnum:sum:MAX_BBYMIN": 31.041667000000005, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 12.716667, "numnum:min:MIN_BBYMAX": 6.4, "numnum:sum:MIN_BBYMAX": 31.6, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 12.716667, "numnum:min:MAX_BBYMAX": 6.4, "numnum:sum:MAX_BBYMAX": 31.6, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -1.521746, "numnum:min:MEAN_BBXC": -10.734923, "numnum:sum:MEAN_BBXC": -20.244087999999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 12.626173, "numnum:min:MEAN_BBYC": 6.317829, "numnum:sum:MEAN_BBYC": 31.309977, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 53, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 68, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1297281, "numnum:min:GN_POP": 939524, "numnum:sum:GN_POP": 3323310, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 350, "numnum:min:GTOPO30": 30, "numnum:sum:GTOPO30": 687, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 578, "numnum:min:UN_FID": 342, "numnum:sum:UN_FID": 1269, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 12.65, "numnum:min:UN_LAT": 6.3, "numnum:sum:UN_LAT": 31.430000000000005, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -1.67, "numnum:min:UN_LONG": -10.79, "numnum:sum:UN_LONG": -20.439999999999999, "numnum:count:POP1950": 3, "numnum:max:POP1950": 89, "numnum:min:POP1950": 15, "numnum:sum:POP1950": 137, "numnum:count:POP1955": 3, "numnum:max:POP1955": 111, "numnum:min:POP1955": 34, "numnum:sum:POP1955": 191, "numnum:count:POP1960": 3, "numnum:max:POP1960": 130, "numnum:min:POP1960": 59, "numnum:sum:POP1960": 264, "numnum:count:POP1965": 3, "numnum:max:POP1965": 158, "numnum:min:POP1965": 82, "numnum:sum:POP1965": 361, "numnum:count:POP1970": 3, "numnum:max:POP1970": 222, "numnum:min:POP1970": 111, "numnum:sum:POP1970": 497, "numnum:count:POP1975": 3, "numnum:max:POP1975": 363, "numnum:min:POP1975": 149, "numnum:sum:POP1975": 738, "numnum:count:POP1980": 3, "numnum:max:POP1980": 489, "numnum:min:POP1980": 257, "numnum:sum:POP1980": 1071, "numnum:count:POP1985": 3, "numnum:max:POP1985": 608, "numnum:min:POP1985": 424, "numnum:sum:POP1985": 1546, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1042, "numnum:min:POP1990": 537, "numnum:sum:POP1990": 2325, "numnum:count:POP1995": 3, "numnum:max:POP1995": 910, "numnum:min:POP1995": 464, "numnum:sum:POP1995": 2041, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1110, "numnum:min:POP2000": 828, "numnum:sum:POP2000": 2774, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1368, "numnum:min:POP2005": 1044, "numnum:sum:POP2005": 3552, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1494, "numnum:min:POP2010": 1041, "numnum:sum:POP2010": 3684, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1708, "numnum:min:POP2015": 1185, "numnum:sum:POP2015": 4217, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2130, "numnum:min:POP2020": 1457, "numnum:sum:POP2020": 5263, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2633, "numnum:min:POP2025": 1753, "numnum:sum:POP2025": 6497, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3214, "numnum:min:POP2050": 2083, "numnum:sum:POP2050": 7929, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.640338 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 26.119167, "numnum:min:LATITUDE": 14.715832, "numnum:sum:LATITUDE": 40.834999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -9.652522, "numnum:min:LONGITUDE": -17.47313, "numnum:sum:LONGITUDE": -27.125652000000004, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2604000, "numnum:min:POP_MAX": 500, "numnum:sum:POP_MAX": 2604500, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2476400, "numnum:min:POP_MIN": 200, "numnum:sum:POP_MIN": 2476600, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2470140, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 2470140, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 2, "numnum:sum:RANK_MAX": 14, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 1, "numnum:sum:RANK_MIN": 13, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2253354, "numnum:min:GEONAMEID": -1, "numnum:sum:GEONAMEID": 2253353, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 2, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2635239, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 2635239, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2634882, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 2634882, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 2660614, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 2660614, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 2660614, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 2660614, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 0, "numnum:sum:MAX_NATSCA": 100, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 257, "numnum:min:MIN_AREAKM": 0, "numnum:sum:MIN_AREAKM": 257, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 302, "numnum:min:MAX_AREAKM": 0, "numnum:sum:MAX_AREAKM": 302, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 99, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 99, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 117, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 117, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 222, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 222, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 288, "numnum:min:MAX_PERKM": 0, "numnum:sum:MAX_PERKM": 288, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 138, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 138, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 179, "numnum:min:MAX_PERMI": 0, "numnum:sum:MAX_PERMI": 179, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 0, "numnum:min:MIN_BBXMIN": -17.533333, "numnum:sum:MIN_BBXMIN": -17.533333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 0, "numnum:min:MAX_BBXMIN": -17.533333, "numnum:sum:MAX_BBXMIN": -17.533333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 0, "numnum:min:MIN_BBXMAX": -17.2, "numnum:sum:MIN_BBXMAX": -17.2, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 0, "numnum:min:MAX_BBXMAX": -17.125, "numnum:sum:MAX_BBXMAX": -17.125, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 14.65, "numnum:min:MIN_BBYMIN": 0, "numnum:sum:MIN_BBYMIN": 14.65, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 14.65, "numnum:min:MAX_BBYMIN": 0, "numnum:sum:MAX_BBYMIN": 14.65, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 14.825, "numnum:min:MIN_BBYMAX": 0, "numnum:sum:MIN_BBYMAX": 14.825, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 14.825, "numnum:min:MAX_BBYMAX": 0, "numnum:sum:MAX_BBYMAX": 14.825, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 0, "numnum:min:MEAN_BBXC": -17.343779, "numnum:sum:MEAN_BBXC": -17.343779, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 14.742828, "numnum:min:MEAN_BBYC": 0, "numnum:sum:MEAN_BBYC": 14.742828, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 1, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 1, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2476400, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 2476400, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 14, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 14, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 447, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 447, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 14.68, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 14.68, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -17.45, "numnum:sum:UN_LONG": -17.45, "numnum:count:POP1950": 2, "numnum:max:POP1950": 211, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 211, "numnum:count:POP1955": 2, "numnum:max:POP1955": 235, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 235, "numnum:count:POP1960": 2, "numnum:max:POP1960": 359, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 359, "numnum:count:POP1965": 2, "numnum:max:POP1965": 473, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 473, "numnum:count:POP1970": 2, "numnum:max:POP1970": 610, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 610, "numnum:count:POP1975": 2, "numnum:max:POP1975": 782, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 782, "numnum:count:POP1980": 2, "numnum:max:POP1980": 957, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 957, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1162, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1162, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1405, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1405, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1688, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1688, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2029, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2029, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2434, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2434, "numnum:count:POP2010": 2, "numnum:max:POP2010": 2604, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2604, "numnum:count:POP2015": 2, "numnum:max:POP2015": 2856, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2856, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3275, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3275, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3726, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3726, "numnum:count:POP2050": 2, "numnum:max:POP2050": 4225, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4225, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499, "MAX_POP20": 206499, "MAX_POP50": 206499, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 59, "MAX_AREAKM": 59, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 52, "MAX_PERKM": 52, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 194530, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 310, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 6.818381, "numnum:min:LATITUDE": 5.319997, "numnum:sum:LATITUDE": 12.138378, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -4.040048, "numnum:min:LONGITUDE": -5.275503, "numnum:sum:LONGITUDE": -9.315551, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3802000, "numnum:min:POP_MAX": 206499, "numnum:sum:POP_MAX": 4008499, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3190395, "numnum:min:POP_MIN": 194530, "numnum:sum:POP_MIN": 3384925, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3181637, "numnum:min:POP_OTHER": 206499, "numnum:sum:POP_OTHER": 3388136, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2293538, "numnum:min:GEONAMEID": 2279755, "numnum:sum:GEONAMEID": 4573293, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3190395, "numnum:min:MAX_POP10": 206499, "numnum:sum:MAX_POP10": 3396894, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3190395, "numnum:min:MAX_POP20": 206499, "numnum:sum:MAX_POP20": 3396894, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3190395, "numnum:min:MAX_POP50": 206499, "numnum:sum:MAX_POP50": 3396894, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3190395, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 3190395, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 150, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 474, "numnum:min:MIN_AREAKM": 59, "numnum:sum:MIN_AREAKM": 533, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 474, "numnum:min:MAX_AREAKM": 59, "numnum:sum:MAX_AREAKM": 533, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 183, "numnum:min:MIN_AREAMI": 23, "numnum:sum:MIN_AREAMI": 206, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 183, "numnum:min:MAX_AREAMI": 23, "numnum:sum:MAX_AREAMI": 206, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 304, "numnum:min:MIN_PERKM": 52, "numnum:sum:MIN_PERKM": 356, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 304, "numnum:min:MAX_PERKM": 52, "numnum:sum:MAX_PERKM": 356, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 189, "numnum:min:MIN_PERMI": 32, "numnum:sum:MIN_PERMI": 221, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 189, "numnum:min:MAX_PERMI": 32, "numnum:sum:MAX_PERMI": 221, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -4.191667, "numnum:min:MIN_BBXMIN": -5.308333, "numnum:sum:MIN_BBXMIN": -9.5, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -4.191667, "numnum:min:MAX_BBXMIN": -5.308333, "numnum:sum:MAX_BBXMIN": -9.5, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -3.866667, "numnum:min:MIN_BBXMAX": -5.216667, "numnum:sum:MIN_BBXMAX": -9.083334, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -3.866667, "numnum:min:MAX_BBXMAX": -5.216667, "numnum:sum:MAX_BBXMAX": -9.083334, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 6.783333, "numnum:min:MIN_BBYMIN": 5.241667, "numnum:sum:MIN_BBYMIN": 12.024999999999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 6.783333, "numnum:min:MAX_BBYMIN": 5.241667, "numnum:sum:MAX_BBYMIN": 12.024999999999999, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 6.891667, "numnum:min:MIN_BBYMAX": 5.55, "numnum:sum:MIN_BBYMAX": 12.441666999999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 6.891667, "numnum:min:MAX_BBYMAX": 5.55, "numnum:sum:MAX_BBYMAX": 12.441666999999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -4.019846, "numnum:min:MEAN_BBXC": -5.263708, "numnum:sum:MEAN_BBXC": -9.283554, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 6.831582, "numnum:min:MEAN_BBYC": 5.3739, "numnum:sum:MEAN_BBYC": 12.205482, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 82, "numnum:min:ADMIN1_COD": 81, "numnum:sum:ADMIN1_COD": 163, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 3677115, "numnum:min:GN_POP": 194530, "numnum:sum:GN_POP": 3871645, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 219, "numnum:min:GTOPO30": 75, "numnum:sum:GTOPO30": 294, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 310, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 310, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 5.32, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 5.32, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -4.02, "numnum:sum:UN_LONG": -4.02, "numnum:count:POP1950": 2, "numnum:max:POP1950": 65, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 65, "numnum:count:POP1955": 2, "numnum:max:POP1955": 125, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 125, "numnum:count:POP1960": 2, "numnum:max:POP1960": 192, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 192, "numnum:count:POP1965": 2, "numnum:max:POP1965": 310, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 310, "numnum:count:POP1970": 2, "numnum:max:POP1970": 548, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 548, "numnum:count:POP1975": 2, "numnum:max:POP1975": 966, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 966, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1384, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1384, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1716, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1716, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2102, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2102, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2535, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2535, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3032, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3032, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3564, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3564, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3802, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3802, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4175, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4175, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4810, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4810, "numnum:count:POP2025": 2, "numnum:max:POP2025": 5432, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5432, "numnum:count:POP2050": 2, "numnum:max:POP2050": 6031, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 6031, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.795535 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144, "MAX_POP20": 742144, "MAX_POP50": 742144, "MAX_POP300": 742144, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 98, "MAX_AREAKM": 98, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 661400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 22, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 710, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 53, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 7, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 18.086427, "numnum:min:LATITUDE": 8.470011, "numnum:sum:LATITUDE": 86.427192, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": -1.524724, "numnum:min:LONGITUDE": -16.591701, "numnum:sum:LONGITUDE": -84.60461600000001, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 1494000, "numnum:min:POP_MAX": 43094, "numnum:sum:POP_MAX": 6152577, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 1494000, "numnum:min:POP_MIN": 13768, "numnum:sum:POP_MIN": 4724523, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 1498020, "numnum:min:POP_OTHER": 403339, "numnum:sum:POP_OTHER": 6314724, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 75, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 69, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 2460596, "numnum:min:GEONAMEID": 2357048, "numnum:sum:GEONAMEID": 16814980, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 1504217, "numnum:min:MAX_POP10": 43094, "numnum:sum:MAX_POP10": 5919126, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 1504217, "numnum:min:MAX_POP20": 43094, "numnum:sum:MAX_POP20": 5919126, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 1504217, "numnum:min:MAX_POP50": 43094, "numnum:sum:MAX_POP50": 5919126, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 1504217, "numnum:min:MAX_POP300": 43094, "numnum:sum:MAX_POP300": 5919126, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 236, "numnum:min:MIN_AREAKM": 7, "numnum:sum:MIN_AREAKM": 844, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 236, "numnum:min:MAX_AREAKM": 7, "numnum:sum:MAX_AREAKM": 844, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 91, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 326, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 91, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 326, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 133, "numnum:min:MIN_PERKM": 13, "numnum:sum:MIN_PERKM": 614, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 133, "numnum:min:MAX_PERKM": 13, "numnum:sum:MAX_PERKM": 614, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 83, "numnum:min:MIN_PERMI": 8, "numnum:sum:MIN_PERMI": 381, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 83, "numnum:min:MAX_PERMI": 8, "numnum:sum:MAX_PERMI": 381, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": -1.616667, "numnum:min:MIN_BBXMIN": -16.6, "numnum:sum:MIN_BBXMIN": -84.97500000000002, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": -1.616667, "numnum:min:MAX_BBXMIN": -16.6, "numnum:sum:MAX_BBXMIN": -84.97500000000002, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": -1.433333, "numnum:min:MIN_BBXMAX": -16.566667, "numnum:sum:MIN_BBXMAX": -83.983333, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": -1.433333, "numnum:min:MAX_BBXMAX": -16.566667, "numnum:sum:MAX_BBXMAX": -83.983333, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 18.033333, "numnum:min:MIN_BBYMIN": 8.408333, "numnum:sum:MIN_BBYMIN": 86.00833300000001, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 18.033333, "numnum:min:MAX_BBYMIN": 8.408333, "numnum:sum:MAX_BBYMIN": 86.00833300000001, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 18.15, "numnum:min:MIN_BBYMAX": 8.5, "numnum:sum:MIN_BBYMAX": 87.02499999999999, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 18.15, "numnum:min:MAX_BBYMAX": 8.5, "numnum:sum:MAX_BBYMAX": 87.02499999999999, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": -1.521746, "numnum:min:MEAN_BBXC": -16.58125, "numnum:sum:MEAN_BBXC": -84.481981, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 18.092569, "numnum:min:MEAN_BBYC": 8.462592, "numnum:sum:MEAN_BBYC": 86.506653, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 53, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 80, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 1767200, "numnum:min:GN_POP": 13768, "numnum:sum:GN_POP": 5248771, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 350, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -19086, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 578, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1583, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 12.65, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 43.150000000000009, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -13.67, "numnum:sum:UN_LONG": -36.55, "numnum:count:POP1950": 7, "numnum:max:POP1950": 92, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 245, "numnum:count:POP1955": 7, "numnum:max:POP1955": 111, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 320, "numnum:count:POP1960": 7, "numnum:max:POP1960": 130, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 420, "numnum:count:POP1965": 7, "numnum:max:POP1965": 208, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 596, "numnum:count:POP1970": 7, "numnum:max:POP1970": 388, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 927, "numnum:count:POP1975": 7, "numnum:max:POP1975": 530, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1326, "numnum:count:POP1980": 7, "numnum:max:POP1980": 658, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1765, "numnum:count:POP1985": 7, "numnum:max:POP1985": 766, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2258, "numnum:count:POP1990": 7, "numnum:max:POP1990": 895, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2707, "numnum:count:POP1995": 7, "numnum:max:POP1995": 1045, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3225, "numnum:count:POP2000": 7, "numnum:max:POP2000": 1219, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3845, "numnum:count:POP2005": 7, "numnum:max:POP2005": 1409, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4606, "numnum:count:POP2010": 7, "numnum:max:POP2010": 1494, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4964, "numnum:count:POP2015": 7, "numnum:max:POP2015": 1708, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 5571, "numnum:count:POP2020": 7, "numnum:max:POP2020": 2130, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 6819, "numnum:count:POP2025": 7, "numnum:max:POP2025": 2633, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 8337, "numnum:count:POP2050": 7, "numnum:max:POP2050": 3214, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 10108, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -15.952148, 18.062312 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.528511 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 710, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 30, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 6.818381, "numnum:min:LATITUDE": 5.319997, "numnum:sum:LATITUDE": 23.99897, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": -0.216716, "numnum:min:LONGITUDE": -10.804752, "numnum:sum:LONGITUDE": -20.337019, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 14, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 3802000, "numnum:min:POP_MAX": 206499, "numnum:sum:POP_MAX": 7170499, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 3190395, "numnum:min:POP_MIN": 194530, "numnum:sum:POP_MIN": 6133851, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 3181637, "numnum:min:POP_OTHER": 206499, "numnum:sum:POP_OTHER": 6528923, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 46, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 44, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 2306104, "numnum:min:GEONAMEID": 2274895, "numnum:sum:GEONAMEID": 9154292, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 3190395, "numnum:min:MAX_POP10": 206499, "numnum:sum:MAX_POP10": 6541675, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 3190395, "numnum:min:MAX_POP20": 206499, "numnum:sum:MAX_POP20": 7119234, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 3190395, "numnum:min:MAX_POP50": 206499, "numnum:sum:MAX_POP50": 7119234, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 3190395, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 6912735, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 474, "numnum:min:MIN_AREAKM": 59, "numnum:sum:MIN_AREAKM": 1117, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 636, "numnum:min:MAX_AREAKM": 59, "numnum:sum:MAX_AREAKM": 1321, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 183, "numnum:min:MIN_AREAMI": 23, "numnum:sum:MIN_AREAMI": 431, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 245, "numnum:min:MAX_AREAMI": 23, "numnum:sum:MAX_AREAMI": 510, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 304, "numnum:min:MIN_PERKM": 52, "numnum:sum:MIN_PERKM": 764, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 345, "numnum:min:MAX_PERKM": 52, "numnum:sum:MAX_PERKM": 885, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 189, "numnum:min:MIN_PERMI": 32, "numnum:sum:MIN_PERMI": 475, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 214, "numnum:min:MAX_PERMI": 32, "numnum:sum:MAX_PERMI": 550, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": -0.35, "numnum:min:MIN_BBXMIN": -10.816667, "numnum:sum:MIN_BBXMIN": -20.666667, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": -0.35, "numnum:min:MAX_BBXMIN": -10.816667, "numnum:sum:MAX_BBXMIN": -20.666667, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": -0.098725, "numnum:min:MIN_BBXMAX": -10.658333, "numnum:sum:MIN_BBXMAX": -19.840392, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 0.033333, "numnum:min:MAX_BBXMAX": -10.658333, "numnum:sum:MAX_BBXMAX": -19.708334, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 6.783333, "numnum:min:MIN_BBYMIN": 5.241667, "numnum:sum:MIN_BBYMIN": 23.766666999999999, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 6.783333, "numnum:min:MAX_BBYMIN": 5.241667, "numnum:sum:MAX_BBYMIN": 23.766666999999999, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 6.891667, "numnum:min:MIN_BBYMAX": 5.55, "numnum:sum:MIN_BBYMAX": 24.616667, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 6.891667, "numnum:min:MAX_BBYMAX": 5.55, "numnum:sum:MAX_BBYMAX": 24.616667, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": -0.188893, "numnum:min:MEAN_BBXC": -10.734923, "numnum:sum:MEAN_BBXC": -20.20737, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 6.831582, "numnum:min:MEAN_BBYC": 5.3739, "numnum:sum:MEAN_BBYC": 24.160714, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 82, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 178, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 3677115, "numnum:min:GN_POP": 194530, "numnum:sum:GN_POP": 6774433, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 219, "numnum:min:GTOPO30": 30, "numnum:sum:GTOPO30": 428, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 342, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 848, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 6.3, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 17.17, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -10.79, "numnum:sum:UN_LONG": -15.009999999999998, "numnum:count:POP1950": 4, "numnum:max:POP1950": 177, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 257, "numnum:count:POP1955": 4, "numnum:max:POP1955": 265, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 424, "numnum:count:POP1960": 4, "numnum:max:POP1960": 393, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 660, "numnum:count:POP1965": 4, "numnum:max:POP1965": 499, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 930, "numnum:count:POP1970": 4, "numnum:max:POP1970": 631, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1343, "numnum:count:POP1975": 4, "numnum:max:POP1975": 966, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1930, "numnum:count:POP1980": 4, "numnum:max:POP1980": 1384, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2572, "numnum:count:POP1985": 4, "numnum:max:POP1985": 1716, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3243, "numnum:count:POP1990": 4, "numnum:max:POP1990": 2102, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 4341, "numnum:count:POP1995": 4, "numnum:max:POP1995": 2535, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 4414, "numnum:count:POP2000": 4, "numnum:max:POP2000": 3032, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 5542, "numnum:count:POP2005": 4, "numnum:max:POP2005": 3564, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6688, "numnum:count:POP2010": 4, "numnum:max:POP2010": 3802, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 6964, "numnum:count:POP2015": 4, "numnum:max:POP2015": 4175, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 7692, "numnum:count:POP2020": 4, "numnum:max:POP2020": 4810, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 8955, "numnum:count:POP2025": 4, "numnum:max:POP2025": 5432, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 10226, "numnum:count:POP2050": 4, "numnum:max:POP2050": 6031, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 11496, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890, "MAX_POP20": 1163890, "MAX_POP50": 1163890, "MAX_POP300": 1163890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 148, "MAX_AREAKM": 148, "MIN_AREAMI": 57, "MAX_AREAMI": 57, "MIN_PERKM": 105, "MAX_PERKM": 105, "MIN_PERMI": 65, "MAX_PERMI": 65, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 1284609, "ELEVATION": 0, "GTOPO30": 156, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83, "POP1955": 92, "POP1960": 124, "POP1965": 172, "POP1970": 238, "POP1975": 329, "POP1980": 446, "POP1985": 596, "POP1990": 704, "POP1995": 830, "POP2000": 986, "POP2005": 1216, "POP2010": 1355, "POP2015": 1505, "POP2020": 1729, "POP2025": 1938, "POP2050": 2150, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 500, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -4.329724, "numnum:min:LATITUDE": -8.838286, "numnum:sum:LATITUDE": -13.168009999999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 15.314972, "numnum:min:LONGITUDE": 13.234427, "numnum:sum:LONGITUDE": 28.549399, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 5, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 7843000, "numnum:min:POP_MAX": 5172900, "numnum:sum:POP_MAX": 13015900, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 5565703, "numnum:min:POP_MIN": 1951272, "numnum:sum:POP_MIN": 7516975, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 4738154, "numnum:min:POP_OTHER": 1951272, "numnum:sum:POP_OTHER": 6689426, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 13, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 25, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2314302, "numnum:min:GEONAMEID": 2240449, "numnum:sum:GEONAMEID": 4554751, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 5565703, "numnum:min:MAX_POP10": 1951272, "numnum:sum:MAX_POP10": 7516975, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 5567255, "numnum:min:MAX_POP20": 1951272, "numnum:sum:MAX_POP20": 7518527, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 5567255, "numnum:min:MAX_POP50": 1951272, "numnum:sum:MAX_POP50": 7518527, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 5567255, "numnum:min:MAX_POP300": 1951272, "numnum:sum:MAX_POP300": 7518527, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 346, "numnum:min:MIN_AREAKM": 237, "numnum:sum:MIN_AREAKM": 583, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 357, "numnum:min:MAX_AREAKM": 237, "numnum:sum:MAX_AREAKM": 594, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 134, "numnum:min:MIN_AREAMI": 91, "numnum:sum:MIN_AREAMI": 225, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 138, "numnum:min:MAX_AREAMI": 91, "numnum:sum:MAX_AREAMI": 229, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 201, "numnum:min:MIN_PERKM": 149, "numnum:sum:MIN_PERKM": 350, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 219, "numnum:min:MAX_PERKM": 149, "numnum:sum:MAX_PERKM": 368, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 125, "numnum:min:MIN_PERMI": 93, "numnum:sum:MIN_PERMI": 218, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 136, "numnum:min:MAX_PERMI": 93, "numnum:sum:MAX_PERMI": 229, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 15.183333, "numnum:min:MIN_BBXMIN": 13.166667, "numnum:sum:MIN_BBXMIN": 28.35, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 15.183333, "numnum:min:MAX_BBXMIN": 13.166667, "numnum:sum:MAX_BBXMIN": 28.35, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 15.533333, "numnum:min:MIN_BBXMAX": 13.4, "numnum:sum:MIN_BBXMAX": 28.933333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 15.533333, "numnum:min:MAX_BBXMAX": 13.4, "numnum:sum:MAX_BBXMAX": 28.933333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -4.5, "numnum:min:MIN_BBYMIN": -8.933333, "numnum:sum:MIN_BBYMIN": -13.433333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -4.478678, "numnum:min:MAX_BBYMIN": -8.933333, "numnum:sum:MAX_BBYMIN": -13.412011, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -4.291667, "numnum:min:MIN_BBYMAX": -8.766667, "numnum:sum:MIN_BBYMAX": -13.058334, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -4.291667, "numnum:min:MAX_BBYMAX": -8.766667, "numnum:sum:MAX_BBYMAX": -13.058334, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 15.334415, "numnum:min:MEAN_BBXC": 13.28253, "numnum:sum:MEAN_BBXC": 28.616945, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -4.384467, "numnum:min:MEAN_BBYC": -8.851964, "numnum:sum:MEAN_BBYC": -13.236431, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 10, "numnum:min:ADMIN1_COD": 6, "numnum:sum:ADMIN1_COD": 16, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7785965, "numnum:min:GN_POP": 2776168, "numnum:sum:GN_POP": 10562133, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 224, "numnum:min:GTOPO30": 6, "numnum:sum:GTOPO30": 230, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 182, "numnum:min:UN_FID": 168, "numnum:sum:UN_FID": 350, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": -4.32, "numnum:min:UN_LAT": -8.81, "numnum:sum:UN_LAT": -13.13, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 15.29, "numnum:min:UN_LONG": 13.23, "numnum:sum:UN_LONG": 28.52, "numnum:count:POP1950": 2, "numnum:max:POP1950": 202, "numnum:min:POP1950": 138, "numnum:sum:POP1950": 340, "numnum:count:POP1955": 2, "numnum:max:POP1955": 292, "numnum:min:POP1955": 174, "numnum:sum:POP1955": 466, "numnum:count:POP1960": 2, "numnum:max:POP1960": 443, "numnum:min:POP1960": 219, "numnum:sum:POP1960": 662, "numnum:count:POP1965": 2, "numnum:max:POP1965": 717, "numnum:min:POP1965": 315, "numnum:sum:POP1965": 1032, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1070, "numnum:min:POP1970": 459, "numnum:sum:POP1970": 1529, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1482, "numnum:min:POP1975": 665, "numnum:sum:POP1975": 2147, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2053, "numnum:min:POP1980": 962, "numnum:sum:POP1980": 3015, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2793, "numnum:min:POP1985": 1295, "numnum:sum:POP1985": 4088, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3448, "numnum:min:POP1990": 1568, "numnum:sum:POP1990": 5016, "numnum:count:POP1995": 2, "numnum:max:POP1995": 4447, "numnum:min:POP1995": 1953, "numnum:sum:POP1995": 6400, "numnum:count:POP2000": 2, "numnum:max:POP2000": 5485, "numnum:min:POP2000": 2591, "numnum:sum:POP2000": 8076, "numnum:count:POP2005": 2, "numnum:max:POP2005": 7108, "numnum:min:POP2005": 3533, "numnum:sum:POP2005": 10641, "numnum:count:POP2010": 2, "numnum:max:POP2010": 7843, "numnum:min:POP2010": 4000, "numnum:sum:POP2010": 11843, "numnum:count:POP2015": 2, "numnum:max:POP2015": 9052, "numnum:min:POP2015": 4775, "numnum:sum:POP2015": 13827, "numnum:count:POP2020": 2, "numnum:max:POP2020": 11313, "numnum:min:POP2020": 6036, "numnum:sum:POP2020": 17349, "numnum:count:POP2025": 2, "numnum:max:POP2025": 13875, "numnum:min:POP2025": 7153, "numnum:sum:POP2025": 21028, "numnum:count:POP2050": 2, "numnum:max:POP2050": 16762, "numnum:min:POP2050": 8236, "numnum:sum:POP2050": 24998, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 15.336914, -4.346411 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890, "MAX_POP20": 1163890, "MAX_POP50": 1163890, "MAX_POP300": 1163890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 148, "MAX_AREAKM": 148, "MIN_AREAMI": 57, "MAX_AREAMI": 57, "MIN_PERKM": 105, "MAX_PERKM": 105, "MIN_PERMI": 65, "MAX_PERMI": 65, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 1284609, "ELEVATION": 0, "GTOPO30": 156, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83, "POP1955": 92, "POP1960": 124, "POP1965": 172, "POP1970": 238, "POP1975": 329, "POP1980": 446, "POP1985": 596, "POP1990": 704, "POP1995": 830, "POP2000": 986, "POP2005": 1216, "POP2010": 1355, "POP2015": 1505, "POP2020": 1729, "POP2025": 1938, "POP2050": 2150, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 760, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -1.95359, "numnum:min:LATITUDE": -33.920011, "numnum:sum:LATITUDE": -58.443607, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 30.060532, "numnum:min:LONGITUDE": 17.083546, "numnum:sum:LONGITUDE": 65.579066, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3215000, "numnum:min:POP_MAX": 268132, "numnum:sum:POP_MAX": 4343132, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 2432858, "numnum:min:POP_MIN": 262796, "numnum:sum:POP_MIN": 3440915, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2401318, "numnum:min:POP_OTHER": 262796, "numnum:sum:POP_OTHER": 3817018, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 33, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3369157, "numnum:min:GEONAMEID": 202061, "numnum:sum:GEONAMEID": 6923354, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2432858, "numnum:min:MAX_POP10": 262796, "numnum:sum:MAX_POP10": 3742441, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2443605, "numnum:min:MAX_POP20": 262796, "numnum:sum:MAX_POP20": 4970300, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 5065653, "numnum:min:MAX_POP50": 262796, "numnum:sum:MAX_POP50": 7772054, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 7102391, "numnum:min:MAX_POP300": 262796, "numnum:sum:MAX_POP300": 9808792, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 601, "numnum:min:MIN_AREAKM": 89, "numnum:sum:MIN_AREAKM": 1224, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 8753, "numnum:min:MAX_AREAKM": 89, "numnum:sum:MAX_AREAKM": 9384, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 232, "numnum:min:MIN_AREAMI": 35, "numnum:sum:MIN_AREAMI": 473, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 3380, "numnum:min:MAX_AREAMI": 35, "numnum:sum:MAX_AREAMI": 3624, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 735, "numnum:min:MIN_PERKM": 60, "numnum:sum:MIN_PERKM": 1090, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 9184, "numnum:min:MAX_PERKM": 60, "numnum:sum:MAX_PERKM": 9544, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 457, "numnum:min:MIN_PERMI": 37, "numnum:sum:MIN_PERMI": 677, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 5707, "numnum:min:MAX_PERMI": 37, "numnum:sum:MAX_PERMI": 5931, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 29.166667, "numnum:min:MIN_BBXMIN": 17.008333, "numnum:sum:MIN_BBXMIN": 64.55, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 29.833333, "numnum:min:MAX_BBXMIN": 17.008333, "numnum:sum:MAX_BBXMIN": 65.216666, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 30.233333, "numnum:min:MIN_BBXMAX": 17.116667, "numnum:sum:MIN_BBXMAX": 66.074745, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 30.475, "numnum:min:MAX_BBXMAX": 17.116667, "numnum:sum:MAX_BBXMAX": 66.33333400000001, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -2.991667, "numnum:min:MIN_BBYMIN": -34.108333, "numnum:sum:MIN_BBYMIN": -59.725, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -2.075, "numnum:min:MAX_BBYMIN": -34.108333, "numnum:sum:MAX_BBYMIN": -58.808333000000008, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -1.76663, "numnum:min:MIN_BBYMAX": -33.808333, "numnum:sum:MIN_BBYMAX": -58.066629999999999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -1.075, "numnum:min:MAX_BBYMAX": -33.808333, "numnum:sum:MAX_BBYMAX": -57.375, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 29.913775, "numnum:min:MEAN_BBXC": 17.064196, "numnum:sum:MEAN_BBXC": 65.535179, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -2.034427, "numnum:min:MEAN_BBYC": -33.954979, "numnum:sum:MEAN_BBYC": -58.540549000000009, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 21, "numnum:min:ADMIN1_COD": 9, "numnum:sum:ADMIN1_COD": 41, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 3433441, "numnum:min:GN_POP": 268132, "numnum:sum:GN_POP": 4446834, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1722, "numnum:min:GTOPO30": 7, "numnum:sum:GTOPO30": 3297, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 455, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 894, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -33.97, "numnum:sum:UN_LAT": -35.92, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 30.05, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 48.53, "numnum:count:POP1950": 3, "numnum:max:POP1950": 618, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 636, "numnum:count:POP1955": 3, "numnum:max:POP1955": 705, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 730, "numnum:count:POP1960": 3, "numnum:max:POP1960": 803, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 837, "numnum:count:POP1965": 3, "numnum:max:POP1965": 945, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 990, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1114, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1173, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1339, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1429, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1609, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1737, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1925, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2093, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2155, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2374, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2394, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2683, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2715, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3212, "numnum:count:POP2005": 3, "numnum:max:POP2005": 3087, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3862, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3215, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4075, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3357, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4304, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3504, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4656, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3627, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5040, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3744, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5459, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 17.094727, -22.593726 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 500, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -4.329724, "numnum:min:LATITUDE": -8.838286, "numnum:sum:LATITUDE": -13.168009999999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 15.314972, "numnum:min:LONGITUDE": 13.234427, "numnum:sum:LONGITUDE": 28.549399, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 5, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 7843000, "numnum:min:POP_MAX": 5172900, "numnum:sum:POP_MAX": 13015900, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 5565703, "numnum:min:POP_MIN": 1951272, "numnum:sum:POP_MIN": 7516975, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 4738154, "numnum:min:POP_OTHER": 1951272, "numnum:sum:POP_OTHER": 6689426, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 13, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 25, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2314302, "numnum:min:GEONAMEID": 2240449, "numnum:sum:GEONAMEID": 4554751, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 5565703, "numnum:min:MAX_POP10": 1951272, "numnum:sum:MAX_POP10": 7516975, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 5567255, "numnum:min:MAX_POP20": 1951272, "numnum:sum:MAX_POP20": 7518527, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 5567255, "numnum:min:MAX_POP50": 1951272, "numnum:sum:MAX_POP50": 7518527, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 5567255, "numnum:min:MAX_POP300": 1951272, "numnum:sum:MAX_POP300": 7518527, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 346, "numnum:min:MIN_AREAKM": 237, "numnum:sum:MIN_AREAKM": 583, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 357, "numnum:min:MAX_AREAKM": 237, "numnum:sum:MAX_AREAKM": 594, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 134, "numnum:min:MIN_AREAMI": 91, "numnum:sum:MIN_AREAMI": 225, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 138, "numnum:min:MAX_AREAMI": 91, "numnum:sum:MAX_AREAMI": 229, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 201, "numnum:min:MIN_PERKM": 149, "numnum:sum:MIN_PERKM": 350, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 219, "numnum:min:MAX_PERKM": 149, "numnum:sum:MAX_PERKM": 368, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 125, "numnum:min:MIN_PERMI": 93, "numnum:sum:MIN_PERMI": 218, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 136, "numnum:min:MAX_PERMI": 93, "numnum:sum:MAX_PERMI": 229, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 15.183333, "numnum:min:MIN_BBXMIN": 13.166667, "numnum:sum:MIN_BBXMIN": 28.35, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 15.183333, "numnum:min:MAX_BBXMIN": 13.166667, "numnum:sum:MAX_BBXMIN": 28.35, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 15.533333, "numnum:min:MIN_BBXMAX": 13.4, "numnum:sum:MIN_BBXMAX": 28.933333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 15.533333, "numnum:min:MAX_BBXMAX": 13.4, "numnum:sum:MAX_BBXMAX": 28.933333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -4.5, "numnum:min:MIN_BBYMIN": -8.933333, "numnum:sum:MIN_BBYMIN": -13.433333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -4.478678, "numnum:min:MAX_BBYMIN": -8.933333, "numnum:sum:MAX_BBYMIN": -13.412011, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -4.291667, "numnum:min:MIN_BBYMAX": -8.766667, "numnum:sum:MIN_BBYMAX": -13.058334, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -4.291667, "numnum:min:MAX_BBYMAX": -8.766667, "numnum:sum:MAX_BBYMAX": -13.058334, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 15.334415, "numnum:min:MEAN_BBXC": 13.28253, "numnum:sum:MEAN_BBXC": 28.616945, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -4.384467, "numnum:min:MEAN_BBYC": -8.851964, "numnum:sum:MEAN_BBYC": -13.236431, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 10, "numnum:min:ADMIN1_COD": 6, "numnum:sum:ADMIN1_COD": 16, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7785965, "numnum:min:GN_POP": 2776168, "numnum:sum:GN_POP": 10562133, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 224, "numnum:min:GTOPO30": 6, "numnum:sum:GTOPO30": 230, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 182, "numnum:min:UN_FID": 168, "numnum:sum:UN_FID": 350, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": -4.32, "numnum:min:UN_LAT": -8.81, "numnum:sum:UN_LAT": -13.13, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 15.29, "numnum:min:UN_LONG": 13.23, "numnum:sum:UN_LONG": 28.52, "numnum:count:POP1950": 2, "numnum:max:POP1950": 202, "numnum:min:POP1950": 138, "numnum:sum:POP1950": 340, "numnum:count:POP1955": 2, "numnum:max:POP1955": 292, "numnum:min:POP1955": 174, "numnum:sum:POP1955": 466, "numnum:count:POP1960": 2, "numnum:max:POP1960": 443, "numnum:min:POP1960": 219, "numnum:sum:POP1960": 662, "numnum:count:POP1965": 2, "numnum:max:POP1965": 717, "numnum:min:POP1965": 315, "numnum:sum:POP1965": 1032, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1070, "numnum:min:POP1970": 459, "numnum:sum:POP1970": 1529, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1482, "numnum:min:POP1975": 665, "numnum:sum:POP1975": 2147, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2053, "numnum:min:POP1980": 962, "numnum:sum:POP1980": 3015, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2793, "numnum:min:POP1985": 1295, "numnum:sum:POP1985": 4088, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3448, "numnum:min:POP1990": 1568, "numnum:sum:POP1990": 5016, "numnum:count:POP1995": 2, "numnum:max:POP1995": 4447, "numnum:min:POP1995": 1953, "numnum:sum:POP1995": 6400, "numnum:count:POP2000": 2, "numnum:max:POP2000": 5485, "numnum:min:POP2000": 2591, "numnum:sum:POP2000": 8076, "numnum:count:POP2005": 2, "numnum:max:POP2005": 7108, "numnum:min:POP2005": 3533, "numnum:sum:POP2005": 10641, "numnum:count:POP2010": 2, "numnum:max:POP2010": 7843, "numnum:min:POP2010": 4000, "numnum:sum:POP2010": 11843, "numnum:count:POP2015": 2, "numnum:max:POP2015": 9052, "numnum:min:POP2015": 4775, "numnum:sum:POP2015": 13827, "numnum:count:POP2020": 2, "numnum:max:POP2020": 11313, "numnum:min:POP2020": 6036, "numnum:sum:POP2020": 17349, "numnum:count:POP2025": 2, "numnum:max:POP2025": 13875, "numnum:min:POP2025": 7153, "numnum:sum:POP2025": 21028, "numnum:count:POP2050": 2, "numnum:max:POP2050": 16762, "numnum:min:POP2050": 8236, "numnum:sum:POP2050": 24998, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 15.336914, -4.346411 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 160, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -3.376087, "numnum:min:LATITUDE": -15.416644, "numnum:sum:LATITUDE": -18.792731, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 29.360006, "numnum:min:LONGITUDE": 28.283328, "numnum:sum:LONGITUDE": 57.643333999999999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1328000, "numnum:min:POP_MAX": 331700, "numnum:sum:POP_MAX": 1659700, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1267440, "numnum:min:POP_MIN": 331700, "numnum:sum:POP_MIN": 1599140, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1240558, "numnum:min:POP_OTHER": 1208361, "numnum:sum:POP_OTHER": 2448919, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 909137, "numnum:min:GEONAMEID": 425378, "numnum:sum:GEONAMEID": 1334515, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1289566, "numnum:min:MAX_POP10": 1123733, "numnum:sum:MAX_POP10": 2413299, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2140496, "numnum:min:MAX_POP20": 1289566, "numnum:sum:MAX_POP20": 3430062, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3536914, "numnum:min:MAX_POP50": 1289566, "numnum:sum:MAX_POP50": 4826480, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3539151, "numnum:min:MAX_POP300": 1289566, "numnum:sum:MAX_POP300": 4828717, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1093, "numnum:min:MIN_AREAKM": 183, "numnum:sum:MIN_AREAKM": 1276, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 5563, "numnum:min:MAX_AREAKM": 183, "numnum:sum:MAX_AREAKM": 5746, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 422, "numnum:min:MIN_AREAMI": 71, "numnum:sum:MIN_AREAMI": 493, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 2148, "numnum:min:MAX_AREAMI": 71, "numnum:sum:MAX_AREAMI": 2219, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 1180, "numnum:min:MIN_PERKM": 122, "numnum:sum:MIN_PERKM": 1302, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 5081, "numnum:min:MAX_PERKM": 122, "numnum:sum:MAX_PERKM": 5203, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 733, "numnum:min:MIN_PERMI": 76, "numnum:sum:MIN_PERMI": 809, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 3157, "numnum:min:MAX_PERMI": 76, "numnum:sum:MAX_PERMI": 3233, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 29.254336, "numnum:min:MIN_BBXMIN": 28.225, "numnum:sum:MIN_BBXMIN": 57.479336, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 29.258333, "numnum:min:MAX_BBXMIN": 28.225, "numnum:sum:MAX_BBXMIN": 57.483333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 29.64063, "numnum:min:MIN_BBXMAX": 28.416667, "numnum:sum:MIN_BBXMAX": 58.057297000000009, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 30.272423, "numnum:min:MAX_BBXMAX": 28.416667, "numnum:sum:MAX_BBXMAX": 58.68909, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -3.841667, "numnum:min:MIN_BBYMIN": -15.483333, "numnum:sum:MIN_BBYMIN": -19.325, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -3.675, "numnum:min:MAX_BBYMIN": -15.483333, "numnum:sum:MAX_BBYMIN": -19.158333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -2.95, "numnum:min:MIN_BBYMAX": -15.333333, "numnum:sum:MIN_BBYMAX": -18.283333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -2.544862, "numnum:min:MAX_BBYMAX": -15.333333, "numnum:sum:MAX_BBYMAX": -17.878194999999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 29.649864, "numnum:min:MEAN_BBXC": 28.308596, "numnum:sum:MEAN_BBXC": 57.95846, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -3.227847, "numnum:min:MEAN_BBYC": -15.403941, "numnum:sum:MEAN_BBYC": -18.631788, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 9, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1267440, "numnum:min:GN_POP": 331700, "numnum:sum:GN_POP": 1599140, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1277, "numnum:min:GTOPO30": 795, "numnum:sum:GTOPO30": 2072, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 589, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 589, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -15.42, "numnum:sum:UN_LAT": -15.42, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 28.17, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 28.17, "numnum:count:POP1950": 2, "numnum:max:POP1950": 31, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 31, "numnum:count:POP1955": 2, "numnum:max:POP1955": 53, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 53, "numnum:count:POP1960": 2, "numnum:max:POP1960": 91, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 91, "numnum:count:POP1965": 2, "numnum:max:POP1965": 160, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 160, "numnum:count:POP1970": 2, "numnum:max:POP1970": 278, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 278, "numnum:count:POP1975": 2, "numnum:max:POP1975": 385, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 385, "numnum:count:POP1980": 2, "numnum:max:POP1980": 533, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 533, "numnum:count:POP1985": 2, "numnum:max:POP1985": 636, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 636, "numnum:count:POP1990": 2, "numnum:max:POP1990": 757, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 757, "numnum:count:POP1995": 2, "numnum:max:POP1995": 902, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 902, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1073, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1073, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1261, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1261, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1328, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1328, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1421, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1421, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1587, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1587, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1797, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1797, "numnum:count:POP2050": 2, "numnum:max:POP2050": 2047, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2047, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 760, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -1.95359, "numnum:min:LATITUDE": -33.920011, "numnum:sum:LATITUDE": -58.443607, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 30.060532, "numnum:min:LONGITUDE": 17.083546, "numnum:sum:LONGITUDE": 65.579066, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3215000, "numnum:min:POP_MAX": 268132, "numnum:sum:POP_MAX": 4343132, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 2432858, "numnum:min:POP_MIN": 262796, "numnum:sum:POP_MIN": 3440915, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2401318, "numnum:min:POP_OTHER": 262796, "numnum:sum:POP_OTHER": 3817018, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 33, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3369157, "numnum:min:GEONAMEID": 202061, "numnum:sum:GEONAMEID": 6923354, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2432858, "numnum:min:MAX_POP10": 262796, "numnum:sum:MAX_POP10": 3742441, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2443605, "numnum:min:MAX_POP20": 262796, "numnum:sum:MAX_POP20": 4970300, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 5065653, "numnum:min:MAX_POP50": 262796, "numnum:sum:MAX_POP50": 7772054, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 7102391, "numnum:min:MAX_POP300": 262796, "numnum:sum:MAX_POP300": 9808792, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 601, "numnum:min:MIN_AREAKM": 89, "numnum:sum:MIN_AREAKM": 1224, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 8753, "numnum:min:MAX_AREAKM": 89, "numnum:sum:MAX_AREAKM": 9384, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 232, "numnum:min:MIN_AREAMI": 35, "numnum:sum:MIN_AREAMI": 473, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 3380, "numnum:min:MAX_AREAMI": 35, "numnum:sum:MAX_AREAMI": 3624, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 735, "numnum:min:MIN_PERKM": 60, "numnum:sum:MIN_PERKM": 1090, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 9184, "numnum:min:MAX_PERKM": 60, "numnum:sum:MAX_PERKM": 9544, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 457, "numnum:min:MIN_PERMI": 37, "numnum:sum:MIN_PERMI": 677, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 5707, "numnum:min:MAX_PERMI": 37, "numnum:sum:MAX_PERMI": 5931, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 29.166667, "numnum:min:MIN_BBXMIN": 17.008333, "numnum:sum:MIN_BBXMIN": 64.55, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 29.833333, "numnum:min:MAX_BBXMIN": 17.008333, "numnum:sum:MAX_BBXMIN": 65.216666, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 30.233333, "numnum:min:MIN_BBXMAX": 17.116667, "numnum:sum:MIN_BBXMAX": 66.074745, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 30.475, "numnum:min:MAX_BBXMAX": 17.116667, "numnum:sum:MAX_BBXMAX": 66.33333400000001, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -2.991667, "numnum:min:MIN_BBYMIN": -34.108333, "numnum:sum:MIN_BBYMIN": -59.725, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -2.075, "numnum:min:MAX_BBYMIN": -34.108333, "numnum:sum:MAX_BBYMIN": -58.808333000000008, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -1.76663, "numnum:min:MIN_BBYMAX": -33.808333, "numnum:sum:MIN_BBYMAX": -58.066629999999999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -1.075, "numnum:min:MAX_BBYMAX": -33.808333, "numnum:sum:MAX_BBYMAX": -57.375, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 29.913775, "numnum:min:MEAN_BBXC": 17.064196, "numnum:sum:MEAN_BBXC": 65.535179, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -2.034427, "numnum:min:MEAN_BBYC": -33.954979, "numnum:sum:MEAN_BBYC": -58.540549000000009, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 21, "numnum:min:ADMIN1_COD": 9, "numnum:sum:ADMIN1_COD": 41, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 3433441, "numnum:min:GN_POP": 268132, "numnum:sum:GN_POP": 4446834, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1722, "numnum:min:GTOPO30": 7, "numnum:sum:GTOPO30": 3297, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 455, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 894, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -33.97, "numnum:sum:UN_LAT": -35.92, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 30.05, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 48.53, "numnum:count:POP1950": 3, "numnum:max:POP1950": 618, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 636, "numnum:count:POP1955": 3, "numnum:max:POP1955": 705, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 730, "numnum:count:POP1960": 3, "numnum:max:POP1960": 803, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 837, "numnum:count:POP1965": 3, "numnum:max:POP1965": 945, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 990, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1114, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1173, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1339, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1429, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1609, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1737, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1925, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2093, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2155, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2374, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2394, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2683, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2715, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3212, "numnum:count:POP2005": 3, "numnum:max:POP2005": 3087, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3862, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3215, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4075, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3357, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4304, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3504, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4656, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3627, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5040, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3744, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5459, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 17.094727, -22.593726 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Harare", "DIFFASCII": 0, "NAMEASCII": "Harare", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zimbabwe", "SOV_A3": "ZWE", "ADM0NAME": "Zimbabwe", "ADM0_A3": "ZWE", "ADM1NAME": "Harare", "ISO_A2": "ZW", "LATITUDE": -17.81779, "LONGITUDE": 31.044709, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1572000, "POP_MIN": 1542813, "POP_OTHER": 1831877, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 890299, "MEGANAME": "Harare", "LS_NAME": "Harare", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1833439, "MAX_POP20": 1833439, "MAX_POP50": 1833439, "MAX_POP300": 1839463, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 310, "MAX_AREAKM": 326, "MIN_AREAMI": 120, "MAX_AREAMI": 126, "MIN_PERKM": 186, "MAX_PERKM": 210, "MIN_PERMI": 115, "MAX_PERMI": 130, "MIN_BBXMIN": 30.908333, "MAX_BBXMIN": 30.908333, "MIN_BBXMAX": 31.175, "MAX_BBXMAX": 31.191667, "MIN_BBYMIN": -17.925, "MAX_BBYMIN": -17.925, "MIN_BBYMAX": -17.725, "MAX_BBYMAX": -17.725, "MEAN_BBXC": 31.045288, "MEAN_BBYC": -17.832399, "COMPARE": 0, "GN_ASCII": "Harare", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1542813, "ELEVATION": 0, "GTOPO30": 1481, "TIMEZONE": "Africa/Harare", "GEONAMESNO": "GeoNames match general.", "UN_FID": 462, "UN_ADM0": "Zimbabwe", "UN_LAT": -17.82, "UN_LONG": 31.02, "POP1950": 143, "POP1955": 192, "POP1960": 248, "POP1965": 319, "POP1970": 417, "POP1975": 532, "POP1980": 616, "POP1985": 778, "POP1990": 1047, "POP1995": 1255, "POP2000": 1379, "POP2005": 1515, "POP2010": 1572, "POP2015": 1663, "POP2020": 1839, "POP2025": 2037, "POP2050": 2247, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 760, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -1.283347, "numnum:min:LATITUDE": -17.81779, "numnum:sum:LATITUDE": -25.284442999999997, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 36.816657, "numnum:min:LONGITUDE": 31.044709, "numnum:sum:LONGITUDE": 103.61137, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3010000, "numnum:min:POP_MAX": 218269, "numnum:sum:POP_MAX": 4800269, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 2750547, "numnum:min:POP_MIN": 180541, "numnum:sum:POP_MIN": 4473901, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3400962, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 5232839, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 890299, "numnum:min:GEONAMEID": 160196, "numnum:sum:GEONAMEID": 1235240, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3401842, "numnum:min:MAX_POP10": 218269, "numnum:sum:MAX_POP10": 5453550, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3401842, "numnum:min:MAX_POP20": 218269, "numnum:sum:MAX_POP20": 5453550, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3418532, "numnum:min:MAX_POP50": 218269, "numnum:sum:MAX_POP50": 5470240, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3418532, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 5257995, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 698, "numnum:min:MIN_AREAKM": 55, "numnum:sum:MIN_AREAKM": 1063, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 719, "numnum:min:MAX_AREAKM": 55, "numnum:sum:MAX_AREAKM": 1100, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 269, "numnum:min:MIN_AREAMI": 21, "numnum:sum:MIN_AREAMI": 410, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 277, "numnum:min:MAX_AREAMI": 21, "numnum:sum:MAX_AREAMI": 424, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 554, "numnum:min:MIN_PERKM": 61, "numnum:sum:MIN_PERKM": 801, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 571, "numnum:min:MAX_PERKM": 61, "numnum:sum:MAX_PERKM": 842, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 344, "numnum:min:MIN_PERMI": 38, "numnum:sum:MIN_PERMI": 497, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 355, "numnum:min:MAX_PERMI": 38, "numnum:sum:MAX_PERMI": 523, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 36.608333, "numnum:min:MIN_BBXMIN": 30.908333, "numnum:sum:MIN_BBXMIN": 103.20833300000001, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 36.608333, "numnum:min:MAX_BBXMIN": 30.908333, "numnum:sum:MAX_BBXMIN": 103.20833300000001, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 37.066667, "numnum:min:MIN_BBXMAX": 31.175, "numnum:sum:MIN_BBXMAX": 104.05000000000001, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 37.066667, "numnum:min:MAX_BBXMAX": 31.191667, "numnum:sum:MAX_BBXMAX": 104.066667, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -1.433333, "numnum:min:MIN_BBYMIN": -17.925, "numnum:sum:MIN_BBYMIN": -25.566666, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -1.433333, "numnum:min:MAX_BBYMIN": -17.925, "numnum:sum:MAX_BBYMIN": -25.566666, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -1.083333, "numnum:min:MIN_BBYMAX": -17.725, "numnum:sum:MIN_BBYMAX": -24.925, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -1.083333, "numnum:min:MAX_BBYMAX": -17.725, "numnum:sum:MAX_BBYMAX": -24.925, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 36.804283, "numnum:min:MEAN_BBXC": 31.045288, "numnum:sum:MEAN_BBXC": 103.597071, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -1.249679, "numnum:min:MEAN_BBYC": -17.832399, "numnum:sum:MEAN_BBYC": -25.244322, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 10, "numnum:min:ADMIN1_COD": 3, "numnum:sum:ADMIN1_COD": 18, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 2750547, "numnum:min:GN_POP": 180541, "numnum:sum:GN_POP": 4473901, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1724, "numnum:min:GTOPO30": 1129, "numnum:sum:GTOPO30": 4334, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 462, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 786, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -17.82, "numnum:sum:UN_LAT": -19.080000000000003, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 36.8, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 67.82, "numnum:count:POP1950": 3, "numnum:max:POP1950": 143, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 280, "numnum:count:POP1955": 3, "numnum:max:POP1955": 201, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 393, "numnum:count:POP1960": 3, "numnum:max:POP1960": 293, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 541, "numnum:count:POP1965": 3, "numnum:max:POP1965": 404, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 723, "numnum:count:POP1970": 3, "numnum:max:POP1970": 531, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 948, "numnum:count:POP1975": 3, "numnum:max:POP1975": 677, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1209, "numnum:count:POP1980": 3, "numnum:max:POP1980": 862, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1478, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1090, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1868, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1380, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2427, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1755, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3010, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2233, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3612, "numnum:count:POP2005": 3, "numnum:max:POP2005": 2787, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4302, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3010, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4582, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3363, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 5026, "numnum:count:POP2020": 3, "numnum:max:POP2020": 4052, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5891, "numnum:count:POP2025": 3, "numnum:max:POP2025": 4881, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 6918, "numnum:count:POP2050": 3, "numnum:max:POP2050": 5871, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 8118, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 31.069336, -17.811456 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 270, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 20, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -3.376087, "numnum:min:LATITUDE": -17.81779, "numnum:sum:LATITUDE": -36.610521, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 31.044709, "numnum:min:LONGITUDE": 28.283328, "numnum:sum:LONGITUDE": 88.688043, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1572000, "numnum:min:POP_MAX": 331700, "numnum:sum:POP_MAX": 3231700, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1542813, "numnum:min:POP_MIN": 331700, "numnum:sum:POP_MIN": 3141953, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1831877, "numnum:min:POP_OTHER": 1208361, "numnum:sum:POP_OTHER": 4280796, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 34, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 909137, "numnum:min:GEONAMEID": 425378, "numnum:sum:GEONAMEID": 2224814, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1833439, "numnum:min:MAX_POP10": 1123733, "numnum:sum:MAX_POP10": 4246738, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2140496, "numnum:min:MAX_POP20": 1289566, "numnum:sum:MAX_POP20": 5263501, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3536914, "numnum:min:MAX_POP50": 1289566, "numnum:sum:MAX_POP50": 6659919, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3539151, "numnum:min:MAX_POP300": 1289566, "numnum:sum:MAX_POP300": 6668180, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1093, "numnum:min:MIN_AREAKM": 183, "numnum:sum:MIN_AREAKM": 1586, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 5563, "numnum:min:MAX_AREAKM": 183, "numnum:sum:MAX_AREAKM": 6072, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 422, "numnum:min:MIN_AREAMI": 71, "numnum:sum:MIN_AREAMI": 613, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 2148, "numnum:min:MAX_AREAMI": 71, "numnum:sum:MAX_AREAMI": 2345, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 1180, "numnum:min:MIN_PERKM": 122, "numnum:sum:MIN_PERKM": 1488, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 5081, "numnum:min:MAX_PERKM": 122, "numnum:sum:MAX_PERKM": 5413, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 733, "numnum:min:MIN_PERMI": 76, "numnum:sum:MIN_PERMI": 924, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 3157, "numnum:min:MAX_PERMI": 76, "numnum:sum:MAX_PERMI": 3363, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 30.908333, "numnum:min:MIN_BBXMIN": 28.225, "numnum:sum:MIN_BBXMIN": 88.387669, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 30.908333, "numnum:min:MAX_BBXMIN": 28.225, "numnum:sum:MAX_BBXMIN": 88.391666, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 31.175, "numnum:min:MIN_BBXMAX": 28.416667, "numnum:sum:MIN_BBXMAX": 89.232297, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 31.191667, "numnum:min:MAX_BBXMAX": 28.416667, "numnum:sum:MAX_BBXMAX": 89.880757, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -3.841667, "numnum:min:MIN_BBYMIN": -17.925, "numnum:sum:MIN_BBYMIN": -37.25, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -3.675, "numnum:min:MAX_BBYMIN": -17.925, "numnum:sum:MAX_BBYMIN": -37.083332999999999, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -2.95, "numnum:min:MIN_BBYMAX": -17.725, "numnum:sum:MIN_BBYMAX": -36.008333, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -2.544862, "numnum:min:MAX_BBYMAX": -17.725, "numnum:sum:MAX_BBYMAX": -35.603195, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 31.045288, "numnum:min:MEAN_BBXC": 28.308596, "numnum:sum:MEAN_BBXC": 89.003748, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -3.227847, "numnum:min:MEAN_BBYC": -17.832399, "numnum:sum:MEAN_BBYC": -36.464186999999999, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 10, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 21, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1542813, "numnum:min:GN_POP": 331700, "numnum:sum:GN_POP": 3141953, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1481, "numnum:min:GTOPO30": 795, "numnum:sum:GTOPO30": 3553, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 589, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1051, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -17.82, "numnum:sum:UN_LAT": -33.24, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 31.02, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 59.19, "numnum:count:POP1950": 3, "numnum:max:POP1950": 143, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 174, "numnum:count:POP1955": 3, "numnum:max:POP1955": 192, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 245, "numnum:count:POP1960": 3, "numnum:max:POP1960": 248, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 339, "numnum:count:POP1965": 3, "numnum:max:POP1965": 319, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 479, "numnum:count:POP1970": 3, "numnum:max:POP1970": 417, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 695, "numnum:count:POP1975": 3, "numnum:max:POP1975": 532, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 917, "numnum:count:POP1980": 3, "numnum:max:POP1980": 616, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1149, "numnum:count:POP1985": 3, "numnum:max:POP1985": 778, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1414, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1047, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1804, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1255, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2157, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1379, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2452, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1515, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2776, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1572, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2900, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1663, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3084, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1839, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3426, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2037, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3834, "numnum:count:POP2050": 3, "numnum:max:POP2050": 2247, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4294, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Dar es Salaam", "DIFFASCII": 0, "NAMEASCII": "Dar es Salaam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dar-Es-Salaam", "ISO_A2": "TZ", "LATITUDE": -6.800013, "LONGITUDE": 39.268342, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2930000, "POP_MIN": 2698652, "POP_OTHER": 2757835, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 160263, "MEGANAME": "Dar es Salaam", "LS_NAME": "Dar es Salaam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2757507, "MAX_POP20": 2757507, "MAX_POP50": 2757507, "MAX_POP300": 2757507, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 153, "MAX_PERKM": 153, "MIN_PERMI": 95, "MAX_PERMI": 95, "MIN_BBXMIN": 39.15, "MAX_BBXMIN": 39.15, "MIN_BBXMAX": 39.325, "MAX_BBXMAX": 39.325, "MIN_BBYMIN": -6.933333, "MAX_BBYMIN": -6.933333, "MIN_BBYMAX": -6.725, "MAX_BBYMAX": -6.725, "MEAN_BBXC": 39.23918, "MEAN_BBYC": -6.833434, "COMPARE": 0, "GN_ASCII": "Dar es Salaam", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 2698652, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 523, "UN_ADM0": "United Republic of Tanzania", "UN_LAT": -6.81, "UN_LONG": 39.25, "POP1950": 67, "POP1955": 110, "POP1960": 162, "POP1965": 233, "POP1970": 357, "POP1975": 572, "POP1980": 836, "POP1985": 1046, "POP1990": 1316, "POP1995": 1668, "POP2000": 2116, "POP2005": 2679, "POP2010": 2930, "POP2015": 3319, "POP2020": 4020, "POP2025": 4804, "POP2050": 5688, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 310, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -6.800013, "numnum:min:LATITUDE": -13.983295, "numnum:sum:LATITUDE": -20.783307999999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 39.268342, "numnum:min:LONGITUDE": 33.783302, "numnum:sum:LONGITUDE": 73.051644, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2930000, "numnum:min:POP_MAX": 646750, "numnum:sum:POP_MAX": 3576750, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2698652, "numnum:min:POP_MIN": 646750, "numnum:sum:POP_MIN": 3345402, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2757835, "numnum:min:POP_OTHER": 1061388, "numnum:sum:POP_OTHER": 3819223, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 927967, "numnum:min:GEONAMEID": 160263, "numnum:sum:GEONAMEID": 1088230, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2757507, "numnum:min:MAX_POP10": 965164, "numnum:sum:MAX_POP10": 3722671, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2757507, "numnum:min:MAX_POP20": 912521, "numnum:sum:MAX_POP20": 3670028, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 2757507, "numnum:min:MAX_POP50": 989470, "numnum:sum:MAX_POP50": 3746977, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 2757507, "numnum:min:MAX_POP300": 989470, "numnum:sum:MAX_POP300": 3746977, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1100, "numnum:min:MIN_AREAKM": 211, "numnum:sum:MIN_AREAKM": 1311, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1373, "numnum:min:MAX_AREAKM": 211, "numnum:sum:MAX_AREAKM": 1584, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 425, "numnum:min:MIN_AREAMI": 81, "numnum:sum:MIN_AREAMI": 506, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 530, "numnum:min:MAX_AREAMI": 81, "numnum:sum:MAX_AREAMI": 611, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 1360, "numnum:min:MIN_PERKM": 153, "numnum:sum:MIN_PERKM": 1513, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1658, "numnum:min:MAX_PERKM": 153, "numnum:sum:MAX_PERKM": 1811, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 845, "numnum:min:MIN_PERMI": 95, "numnum:sum:MIN_PERMI": 940, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1030, "numnum:min:MAX_PERMI": 95, "numnum:sum:MAX_PERMI": 1125, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 39.15, "numnum:min:MIN_BBXMIN": 33.508333, "numnum:sum:MIN_BBXMIN": 72.658333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 39.15, "numnum:min:MAX_BBXMIN": 33.508333, "numnum:sum:MAX_BBXMIN": 72.658333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 39.325, "numnum:min:MIN_BBXMAX": 34.187755, "numnum:sum:MIN_BBXMAX": 73.512755, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 39.325, "numnum:min:MAX_BBXMAX": 34.608333, "numnum:sum:MAX_BBXMAX": 73.933333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -6.933333, "numnum:min:MIN_BBYMIN": -14.433333, "numnum:sum:MIN_BBYMIN": -21.366666, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -6.933333, "numnum:min:MAX_BBYMIN": -14.408333, "numnum:sum:MAX_BBYMIN": -21.341666, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -6.725, "numnum:min:MIN_BBYMAX": -13.691667, "numnum:sum:MIN_BBYMAX": -20.416667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -6.725, "numnum:min:MAX_BBYMAX": -13.641667, "numnum:sum:MAX_BBYMAX": -20.366667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 39.23918, "numnum:min:MEAN_BBXC": 33.888699, "numnum:sum:MEAN_BBXC": 73.12787900000001, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -6.833434, "numnum:min:MEAN_BBYC": -14.028166, "numnum:sum:MEAN_BBYC": -20.8616, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 23, "numnum:min:ADMIN1_COD": 11, "numnum:sum:ADMIN1_COD": 34, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2698652, "numnum:min:GN_POP": 646750, "numnum:sum:GN_POP": 3345402, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1025, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8974, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 523, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 523, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -6.81, "numnum:sum:UN_LAT": -6.81, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 39.25, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 39.25, "numnum:count:POP1950": 2, "numnum:max:POP1950": 67, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 67, "numnum:count:POP1955": 2, "numnum:max:POP1955": 110, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 110, "numnum:count:POP1960": 2, "numnum:max:POP1960": 162, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 162, "numnum:count:POP1965": 2, "numnum:max:POP1965": 233, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 233, "numnum:count:POP1970": 2, "numnum:max:POP1970": 357, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 357, "numnum:count:POP1975": 2, "numnum:max:POP1975": 572, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 572, "numnum:count:POP1980": 2, "numnum:max:POP1980": 836, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 836, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1046, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1046, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1316, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1316, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1668, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1668, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2116, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2116, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2679, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2679, "numnum:count:POP2010": 2, "numnum:max:POP2010": 2930, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2930, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3319, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3319, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4020, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4020, "numnum:count:POP2025": 2, "numnum:max:POP2025": 4804, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 4804, "numnum:count:POP2050": 2, "numnum:max:POP2050": 5688, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5688, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 39.287109, -6.795535 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 650, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 10, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -1.283347, "numnum:min:LATITUDE": -6.183306, "numnum:sum:LATITUDE": -7.466653, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 36.816657, "numnum:min:LONGITUDE": 35.750004, "numnum:sum:LONGITUDE": 72.566661, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3010000, "numnum:min:POP_MAX": 218269, "numnum:sum:POP_MAX": 3228269, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2750547, "numnum:min:POP_MIN": 180541, "numnum:sum:POP_MIN": 2931088, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3400962, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 3400962, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 184745, "numnum:min:GEONAMEID": 160196, "numnum:sum:GEONAMEID": 344941, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3401842, "numnum:min:MAX_POP10": 218269, "numnum:sum:MAX_POP10": 3620111, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3401842, "numnum:min:MAX_POP20": 218269, "numnum:sum:MAX_POP20": 3620111, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3418532, "numnum:min:MAX_POP50": 218269, "numnum:sum:MAX_POP50": 3636801, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3418532, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 3418532, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 150, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 698, "numnum:min:MIN_AREAKM": 55, "numnum:sum:MIN_AREAKM": 753, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 719, "numnum:min:MAX_AREAKM": 55, "numnum:sum:MAX_AREAKM": 774, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 269, "numnum:min:MIN_AREAMI": 21, "numnum:sum:MIN_AREAMI": 290, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 277, "numnum:min:MAX_AREAMI": 21, "numnum:sum:MAX_AREAMI": 298, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 554, "numnum:min:MIN_PERKM": 61, "numnum:sum:MIN_PERKM": 615, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 571, "numnum:min:MAX_PERKM": 61, "numnum:sum:MAX_PERKM": 632, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 344, "numnum:min:MIN_PERMI": 38, "numnum:sum:MIN_PERMI": 382, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 355, "numnum:min:MAX_PERMI": 38, "numnum:sum:MAX_PERMI": 393, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 36.608333, "numnum:min:MIN_BBXMIN": 35.691667, "numnum:sum:MIN_BBXMIN": 72.30000000000001, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 36.608333, "numnum:min:MAX_BBXMIN": 35.691667, "numnum:sum:MAX_BBXMIN": 72.30000000000001, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 37.066667, "numnum:min:MIN_BBXMAX": 35.808333, "numnum:sum:MIN_BBXMAX": 72.875, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 37.066667, "numnum:min:MAX_BBXMAX": 35.808333, "numnum:sum:MAX_BBXMAX": 72.875, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -1.433333, "numnum:min:MIN_BBYMIN": -6.208333, "numnum:sum:MIN_BBYMIN": -7.641666, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -1.433333, "numnum:min:MAX_BBYMIN": -6.208333, "numnum:sum:MAX_BBYMIN": -7.641666, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -1.083333, "numnum:min:MIN_BBYMAX": -6.116667, "numnum:sum:MIN_BBYMAX": -7.199999999999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -1.083333, "numnum:min:MAX_BBYMAX": -6.116667, "numnum:sum:MAX_BBYMAX": -7.199999999999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 36.804283, "numnum:min:MEAN_BBXC": 35.7475, "numnum:sum:MEAN_BBXC": 72.551783, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -1.249679, "numnum:min:MEAN_BBYC": -6.162244, "numnum:sum:MEAN_BBYC": -7.411923, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 5, "numnum:min:ADMIN1_COD": 3, "numnum:sum:ADMIN1_COD": 8, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2750547, "numnum:min:GN_POP": 180541, "numnum:sum:GN_POP": 2931088, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1724, "numnum:min:GTOPO30": 1129, "numnum:sum:GTOPO30": 2853, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 324, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 324, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -1.26, "numnum:sum:UN_LAT": -1.26, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 36.8, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 36.8, "numnum:count:POP1950": 2, "numnum:max:POP1950": 137, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 137, "numnum:count:POP1955": 2, "numnum:max:POP1955": 201, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 201, "numnum:count:POP1960": 2, "numnum:max:POP1960": 293, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 293, "numnum:count:POP1965": 2, "numnum:max:POP1965": 404, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 404, "numnum:count:POP1970": 2, "numnum:max:POP1970": 531, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 531, "numnum:count:POP1975": 2, "numnum:max:POP1975": 677, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 677, "numnum:count:POP1980": 2, "numnum:max:POP1980": 862, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 862, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1090, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1090, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1380, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1380, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1755, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1755, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2233, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2233, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2787, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2787, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3010, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3010, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3363, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3363, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4052, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4052, "numnum:count:POP2025": 2, "numnum:max:POP2025": 4881, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 4881, "numnum:count:POP2050": 2, "numnum:max:POP2050": 5871, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5871, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.274309 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 440, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 10, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -11.704158, "numnum:min:LATITUDE": -26.170044999999999, "numnum:sum:LATITUDE": -62.520516, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 43.240244, "numnum:min:LONGITUDE": 25.911948, "numnum:sum:LONGITUDE": 97.182202, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3435000, "numnum:min:POP_MAX": 128698, "numnum:sum:POP_MAX": 3772109, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 2026469, "numnum:min:POP_MIN": 42872, "numnum:sum:POP_MIN": 2228584, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3852246, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 4011142, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 31, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 28, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 993800, "numnum:min:GEONAMEID": 921772, "numnum:sum:GEONAMEID": 2849345, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3887168, "numnum:min:MAX_POP10": 128698, "numnum:sum:MAX_POP10": 4175109, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 5413549, "numnum:min:MAX_POP20": 128698, "numnum:sum:MAX_POP20": 5701490, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 5413549, "numnum:min:MAX_POP50": 128698, "numnum:sum:MAX_POP50": 5701490, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 5413549, "numnum:min:MAX_POP300": 128698, "numnum:sum:MAX_POP300": 5701490, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 5451385, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 5451385, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1124, "numnum:min:MIN_AREAKM": 60, "numnum:sum:MIN_AREAKM": 1256, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1614, "numnum:min:MAX_AREAKM": 60, "numnum:sum:MAX_AREAKM": 1746, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 434, "numnum:min:MIN_AREAMI": 23, "numnum:sum:MIN_AREAMI": 485, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 623, "numnum:min:MAX_AREAMI": 23, "numnum:sum:MAX_AREAMI": 674, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 497, "numnum:min:MIN_PERKM": 59, "numnum:sum:MIN_PERKM": 654, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 828, "numnum:min:MAX_PERKM": 59, "numnum:sum:MAX_PERKM": 985, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 309, "numnum:min:MIN_PERMI": 37, "numnum:sum:MIN_PERMI": 407, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 514, "numnum:min:MAX_PERMI": 37, "numnum:sum:MAX_PERMI": 612, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 43.225, "numnum:min:MIN_BBXMIN": 25.858333, "numnum:sum:MIN_BBXMIN": 96.816666, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 43.225, "numnum:min:MAX_BBXMIN": 25.858333, "numnum:sum:MAX_BBXMIN": 96.816666, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 43.291667, "numnum:min:MIN_BBXMAX": 25.991667, "numnum:sum:MIN_BBXMAX": 97.47702699999999, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 43.291667, "numnum:min:MAX_BBXMAX": 25.991667, "numnum:sum:MAX_BBXMAX": 97.775001, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -11.758333, "numnum:min:MIN_BBYMIN": -26.4, "numnum:sum:MIN_BBYMIN": -62.858332999999998, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -11.758333, "numnum:min:MAX_BBYMIN": -26.4, "numnum:sum:MAX_BBYMIN": -62.858332999999998, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -11.475, "numnum:min:MIN_BBYMAX": -25.991667, "numnum:sum:MIN_BBYMAX": -62.066667, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -11.475, "numnum:min:MAX_BBYMAX": -25.941667, "numnum:sum:MAX_BBYMAX": -62.016667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 43.264352, "numnum:min:MEAN_BBXC": 25.925091, "numnum:sum:MEAN_BBXC": 97.25315499999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -11.639931, "numnum:min:MEAN_BBYC": -26.187259, "numnum:sum:MEAN_BBYC": -62.483982999999998, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 9, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 17, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 2026469, "numnum:min:GN_POP": 42872, "numnum:sum:GN_POP": 2277752, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1775, "numnum:min:GTOPO30": 35, "numnum:sum:GTOPO30": 2816, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 458, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 458, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -26.17, "numnum:sum:UN_LAT": -26.17, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 28, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 28, "numnum:count:POP1950": 3, "numnum:max:POP1950": 900, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 900, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1016, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1016, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1147, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1147, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1288, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1288, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1444, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1444, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1547, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1547, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1656, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1656, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1773, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1773, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1898, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1898, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2265, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2265, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2732, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2732, "numnum:count:POP2005": 3, "numnum:max:POP2005": 3258, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3258, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3435, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3435, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3618, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3618, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3785, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3785, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3916, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3916, "numnum:count:POP2050": 3, "numnum:max:POP2050": 4041, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4041, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Dar es Salaam", "DIFFASCII": 0, "NAMEASCII": "Dar es Salaam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dar-Es-Salaam", "ISO_A2": "TZ", "LATITUDE": -6.800013, "LONGITUDE": 39.268342, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2930000, "POP_MIN": 2698652, "POP_OTHER": 2757835, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 160263, "MEGANAME": "Dar es Salaam", "LS_NAME": "Dar es Salaam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2757507, "MAX_POP20": 2757507, "MAX_POP50": 2757507, "MAX_POP300": 2757507, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 153, "MAX_PERKM": 153, "MIN_PERMI": 95, "MAX_PERMI": 95, "MIN_BBXMIN": 39.15, "MAX_BBXMIN": 39.15, "MIN_BBXMAX": 39.325, "MAX_BBXMAX": 39.325, "MIN_BBYMIN": -6.933333, "MAX_BBYMIN": -6.933333, "MIN_BBYMAX": -6.725, "MAX_BBYMAX": -6.725, "MEAN_BBXC": 39.23918, "MEAN_BBYC": -6.833434, "COMPARE": 0, "GN_ASCII": "Dar es Salaam", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 2698652, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 523, "UN_ADM0": "United Republic of Tanzania", "UN_LAT": -6.81, "UN_LONG": 39.25, "POP1950": 67, "POP1955": 110, "POP1960": 162, "POP1965": 233, "POP1970": 357, "POP1975": 572, "POP1980": 836, "POP1985": 1046, "POP1990": 1316, "POP1995": 1668, "POP2000": 2116, "POP2005": 2679, "POP2010": 2930, "POP2015": 3319, "POP2020": 4020, "POP2025": 4804, "POP2050": 5688, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 39.287109, -6.795535 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Bloemfontein", "DIFFASCII": 0, "NAMEASCII": "Bloemfontein", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Judicial capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Orange Free State", "ISO_A2": "ZA", "LATITUDE": -29.119994, "LONGITUDE": 26.229913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 463064, "POP_MIN": 456669, "POP_OTHER": 456513, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1018725, "LS_NAME": "Bloemfontein", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 456669, "MAX_POP20": 456669, "MAX_POP50": 456669, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 105, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 26.166667, "MAX_BBXMIN": 26.166667, "MIN_BBXMAX": 26.3, "MAX_BBXMAX": 26.3, "MIN_BBYMIN": -29.2, "MAX_BBYMIN": -29.2, "MIN_BBYMAX": -29.058333, "MAX_BBYMAX": -29.058333, "MEAN_BBXC": 26.225714, "MEAN_BBYC": -29.128155, "COMPARE": 0, "GN_ASCII": "Bloemfontein", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 463064, "ELEVATION": 0, "GTOPO30": 1398, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 11, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -29.119994, "numnum:min:LATITUDE": -29.316674, "numnum:sum:LATITUDE": -58.436668, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 27.483273, "numnum:min:LONGITUDE": 26.229913, "numnum:sum:LONGITUDE": 53.713186, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 463064, "numnum:min:POP_MAX": 361324, "numnum:sum:POP_MAX": 824388, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 456669, "numnum:min:POP_MIN": 118355, "numnum:sum:POP_MIN": 575024, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 456513, "numnum:min:POP_OTHER": 356225, "numnum:sum:POP_OTHER": 812738, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 10, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 20, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1018725, "numnum:min:GEONAMEID": 932505, "numnum:sum:GEONAMEID": 1951230, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 456669, "numnum:min:MAX_POP10": 361324, "numnum:sum:MAX_POP10": 817993, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 456669, "numnum:min:MAX_POP20": 361324, "numnum:sum:MAX_POP20": 817993, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 456669, "numnum:min:MAX_POP50": 361324, "numnum:sum:MAX_POP50": 817993, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 361324, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 361324, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 150, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 141, "numnum:min:MIN_AREAKM": 105, "numnum:sum:MIN_AREAKM": 246, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 141, "numnum:min:MAX_AREAKM": 105, "numnum:sum:MAX_AREAKM": 246, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 54, "numnum:min:MIN_AREAMI": 40, "numnum:sum:MIN_AREAMI": 94, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 54, "numnum:min:MAX_AREAMI": 40, "numnum:sum:MAX_AREAMI": 94, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 177, "numnum:min:MIN_PERKM": 78, "numnum:sum:MIN_PERKM": 255, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 177, "numnum:min:MAX_PERKM": 78, "numnum:sum:MAX_PERKM": 255, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 110, "numnum:min:MIN_PERMI": 48, "numnum:sum:MIN_PERMI": 158, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 110, "numnum:min:MAX_PERMI": 48, "numnum:sum:MAX_PERMI": 158, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 27.458333, "numnum:min:MIN_BBXMIN": 26.166667, "numnum:sum:MIN_BBXMIN": 53.625, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 27.458333, "numnum:min:MAX_BBXMIN": 26.166667, "numnum:sum:MAX_BBXMIN": 53.625, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 27.616667, "numnum:min:MIN_BBXMAX": 26.3, "numnum:sum:MIN_BBXMAX": 53.916667000000007, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 27.616667, "numnum:min:MAX_BBXMAX": 26.3, "numnum:sum:MAX_BBXMAX": 53.916667000000007, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -29.2, "numnum:min:MIN_BBYMIN": -29.525, "numnum:sum:MIN_BBYMIN": -58.724999999999997, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -29.2, "numnum:min:MAX_BBYMIN": -29.525, "numnum:sum:MAX_BBYMIN": -58.724999999999997, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -29.058333, "numnum:min:MIN_BBYMAX": -29.241667, "numnum:sum:MIN_BBYMAX": -58.3, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -29.058333, "numnum:min:MAX_BBYMAX": -29.241667, "numnum:sum:MAX_BBYMAX": -58.3, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 27.536702, "numnum:min:MEAN_BBXC": 26.225714, "numnum:sum:MEAN_BBXC": 53.762416, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -29.128155, "numnum:min:MEAN_BBYC": -29.350222, "numnum:sum:MEAN_BBYC": -58.478376999999998, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 14, "numnum:min:ADMIN1_COD": 3, "numnum:sum:ADMIN1_COD": 17, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 463064, "numnum:min:GN_POP": 118355, "numnum:sum:GN_POP": 581419, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1482, "numnum:min:GTOPO30": 1398, "numnum:sum:GTOPO30": 2880, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.113775 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 13, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 550, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 18, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": -11.704158, "numnum:min:LATITUDE": -26.170044999999999, "numnum:sum:LATITUDE": -76.503811, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 43.240244, "numnum:min:LONGITUDE": 25.911948, "numnum:sum:LONGITUDE": 130.96550399999999, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 3435000, "numnum:min:POP_MAX": 128698, "numnum:sum:POP_MAX": 4418859, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 2026469, "numnum:min:POP_MIN": 42872, "numnum:sum:POP_MIN": 2875334, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 3852246, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 5072530, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 42, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 39, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 993800, "numnum:min:GEONAMEID": 921772, "numnum:sum:GEONAMEID": 3777312, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 3887168, "numnum:min:MAX_POP10": 128698, "numnum:sum:MAX_POP10": 5140273, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 5413549, "numnum:min:MAX_POP20": 128698, "numnum:sum:MAX_POP20": 6614011, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 5413549, "numnum:min:MAX_POP50": 128698, "numnum:sum:MAX_POP50": 6690960, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 5413549, "numnum:min:MAX_POP300": 128698, "numnum:sum:MAX_POP300": 6690960, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 5451385, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 5451385, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 1124, "numnum:min:MIN_AREAKM": 60, "numnum:sum:MIN_AREAKM": 2356, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 1614, "numnum:min:MAX_AREAKM": 60, "numnum:sum:MAX_AREAKM": 3119, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 434, "numnum:min:MIN_AREAMI": 23, "numnum:sum:MIN_AREAMI": 910, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 623, "numnum:min:MAX_AREAMI": 23, "numnum:sum:MAX_AREAMI": 1204, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 1360, "numnum:min:MIN_PERKM": 59, "numnum:sum:MIN_PERKM": 2014, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 1658, "numnum:min:MAX_PERKM": 59, "numnum:sum:MAX_PERKM": 2643, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 845, "numnum:min:MIN_PERMI": 37, "numnum:sum:MIN_PERMI": 1252, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 1030, "numnum:min:MAX_PERMI": 37, "numnum:sum:MAX_PERMI": 1642, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 43.225, "numnum:min:MIN_BBXMIN": 25.858333, "numnum:sum:MIN_BBXMIN": 130.324999, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 43.225, "numnum:min:MAX_BBXMIN": 25.858333, "numnum:sum:MAX_BBXMIN": 130.324999, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 43.291667, "numnum:min:MIN_BBXMAX": 25.991667, "numnum:sum:MIN_BBXMAX": 131.664782, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 43.291667, "numnum:min:MAX_BBXMAX": 25.991667, "numnum:sum:MAX_BBXMAX": 132.38333400000003, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": -11.758333, "numnum:min:MIN_BBYMIN": -26.4, "numnum:sum:MIN_BBYMIN": -77.29166599999999, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": -11.758333, "numnum:min:MAX_BBYMIN": -26.4, "numnum:sum:MAX_BBYMIN": -77.26666599999999, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": -11.475, "numnum:min:MIN_BBYMAX": -25.991667, "numnum:sum:MIN_BBYMAX": -75.75833399999999, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": -11.475, "numnum:min:MAX_BBYMAX": -25.941667, "numnum:sum:MAX_BBYMAX": -75.658334, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 43.264352, "numnum:min:MEAN_BBXC": 25.925091, "numnum:sum:MEAN_BBXC": 131.141854, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": -11.639931, "numnum:min:MEAN_BBYC": -26.187259, "numnum:sum:MEAN_BBYC": -76.51214900000001, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 28, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 2026469, "numnum:min:GN_POP": 42872, "numnum:sum:GN_POP": 2924502, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 1775, "numnum:min:GTOPO30": 35, "numnum:sum:GTOPO30": 3841, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 458, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 458, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -26.17, "numnum:sum:UN_LAT": -26.17, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 28, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 28, "numnum:count:POP1950": 4, "numnum:max:POP1950": 900, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 900, "numnum:count:POP1955": 4, "numnum:max:POP1955": 1016, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1016, "numnum:count:POP1960": 4, "numnum:max:POP1960": 1147, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1147, "numnum:count:POP1965": 4, "numnum:max:POP1965": 1288, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1288, "numnum:count:POP1970": 4, "numnum:max:POP1970": 1444, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1444, "numnum:count:POP1975": 4, "numnum:max:POP1975": 1547, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1547, "numnum:count:POP1980": 4, "numnum:max:POP1980": 1656, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1656, "numnum:count:POP1985": 4, "numnum:max:POP1985": 1773, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1773, "numnum:count:POP1990": 4, "numnum:max:POP1990": 1898, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1898, "numnum:count:POP1995": 4, "numnum:max:POP1995": 2265, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2265, "numnum:count:POP2000": 4, "numnum:max:POP2000": 2732, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2732, "numnum:count:POP2005": 4, "numnum:max:POP2005": 3258, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3258, "numnum:count:POP2010": 4, "numnum:max:POP2010": 3435, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3435, "numnum:count:POP2015": 4, "numnum:max:POP2015": 3618, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3618, "numnum:count:POP2020": 4, "numnum:max:POP2020": 3785, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3785, "numnum:count:POP2025": 4, "numnum:max:POP2025": 3916, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3916, "numnum:count:POP2050": 4, "numnum:max:POP2050": 4041, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4041, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -14.008696 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Pretoria", "DIFFASCII": 0, "NAMEASCII": "Pretoria", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "LATITUDE": -25.706921, "LONGITUDE": 28.229429, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1338000, "POP_MIN": 1338000, "POP_OTHER": 1443084, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 964137, "MEGANAME": "Pretoria", "LS_NAME": "Pretoria", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1444949, "MAX_POP20": 1444949, "MAX_POP50": 1444949, "MAX_POP300": 1444949, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 502, "MAX_AREAKM": 502, "MIN_AREAMI": 194, "MAX_AREAMI": 194, "MIN_PERKM": 256, "MAX_PERKM": 256, "MIN_PERMI": 159, "MAX_PERMI": 159, "MIN_BBXMIN": 28.041667, "MAX_BBXMIN": 28.041667, "MIN_BBXMAX": 28.4, "MAX_BBXMAX": 28.4, "MIN_BBYMIN": -25.891667, "MAX_BBYMIN": -25.891667, "MIN_BBYMAX": -25.641667, "MAX_BBYMAX": -25.641667, "MEAN_BBXC": 28.214676, "MEAN_BBYC": -25.755716, "COMPARE": 0, "GN_ASCII": "Pretoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 1619438, "ELEVATION": 0, "GTOPO30": 1282, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 460, "UN_ADM0": "South Africa", "UN_LAT": -25.73, "UN_LONG": 28.21, "POP1950": 275, "POP1955": 340, "POP1960": 419, "POP1965": 488, "POP1970": 565, "POP1975": 624, "POP1980": 688, "POP1985": 763, "POP1990": 911, "POP1995": 951, "POP2000": 1084, "POP2005": 1273, "POP2010": 1338, "POP2015": 1409, "POP2020": 1482, "POP2025": 1544, "POP2050": 1604, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 13, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 190, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 19, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -25.706921, "numnum:min:LATITUDE": -26.466667, "numnum:sum:LATITUDE": -78.490239, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 31.199997, "numnum:min:LONGITUDE": 28.229429, "numnum:sum:LONGITUDE": 90.562761, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1338000, "numnum:min:POP_MAX": 9782, "numnum:sum:POP_MAX": 1437920, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1338000, "numnum:min:POP_MIN": 4557, "numnum:sum:POP_MIN": 1418775, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1443084, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 1533063, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 5, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 964137, "numnum:min:GEONAMEID": 934985, "numnum:sum:GEONAMEID": 2834170, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1444949, "numnum:min:MAX_POP10": 9782, "numnum:sum:MAX_POP10": 1544869, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1444949, "numnum:min:MAX_POP20": 9782, "numnum:sum:MAX_POP20": 1544869, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1444949, "numnum:min:MAX_POP50": 9782, "numnum:sum:MAX_POP50": 1544869, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1444949, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 1535087, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 502, "numnum:min:MIN_AREAKM": 18, "numnum:sum:MIN_AREAKM": 548, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 502, "numnum:min:MAX_AREAKM": 18, "numnum:sum:MAX_AREAKM": 548, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 194, "numnum:min:MIN_AREAMI": 7, "numnum:sum:MIN_AREAMI": 212, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 194, "numnum:min:MAX_AREAMI": 7, "numnum:sum:MAX_AREAMI": 212, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 256, "numnum:min:MIN_PERKM": 32, "numnum:sum:MIN_PERKM": 325, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 256, "numnum:min:MAX_PERKM": 32, "numnum:sum:MAX_PERKM": 325, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 159, "numnum:min:MIN_PERMI": 20, "numnum:sum:MIN_PERMI": 202, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 159, "numnum:min:MAX_PERMI": 20, "numnum:sum:MAX_PERMI": 202, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 31.183333, "numnum:min:MIN_BBXMIN": 28.041667, "numnum:sum:MIN_BBXMIN": 90.325, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 31.183333, "numnum:min:MAX_BBXMIN": 28.041667, "numnum:sum:MAX_BBXMIN": 90.325, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 31.233333, "numnum:min:MIN_BBXMAX": 28.4, "numnum:sum:MIN_BBXMAX": 90.79166599999999, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 31.233333, "numnum:min:MAX_BBXMAX": 28.4, "numnum:sum:MAX_BBXMAX": 90.79166599999999, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -25.891667, "numnum:min:MIN_BBYMIN": -26.458333, "numnum:sum:MIN_BBYMIN": -78.7, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -25.891667, "numnum:min:MAX_BBYMIN": -26.458333, "numnum:sum:MAX_BBYMIN": -78.7, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -25.641667, "numnum:min:MIN_BBYMAX": -26.391667, "numnum:sum:MIN_BBYMAX": -78.316667, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -25.641667, "numnum:min:MAX_BBYMAX": -26.391667, "numnum:sum:MAX_BBYMAX": -78.316667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 31.201993, "numnum:min:MEAN_BBXC": 28.214676, "numnum:sum:MEAN_BBXC": 90.54651100000001, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -25.755716, "numnum:min:MEAN_BBYC": -26.430254, "numnum:sum:MEAN_BBYC": -78.50139800000001, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 6, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 7, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1619438, "numnum:min:GN_POP": 4557, "numnum:sum:GN_POP": 1700213, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1282, "numnum:min:GTOPO30": 651, "numnum:sum:GTOPO30": 3089, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 460, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 460, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -25.73, "numnum:sum:UN_LAT": -25.73, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 28.21, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 28.21, "numnum:count:POP1950": 3, "numnum:max:POP1950": 275, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 275, "numnum:count:POP1955": 3, "numnum:max:POP1955": 340, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 340, "numnum:count:POP1960": 3, "numnum:max:POP1960": 419, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 419, "numnum:count:POP1965": 3, "numnum:max:POP1965": 488, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 488, "numnum:count:POP1970": 3, "numnum:max:POP1970": 565, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 565, "numnum:count:POP1975": 3, "numnum:max:POP1975": 624, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 624, "numnum:count:POP1980": 3, "numnum:max:POP1980": 688, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 688, "numnum:count:POP1985": 3, "numnum:max:POP1985": 763, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 763, "numnum:count:POP1990": 3, "numnum:max:POP1990": 911, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 911, "numnum:count:POP1995": 3, "numnum:max:POP1995": 951, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 951, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1084, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1084, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1273, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1273, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1338, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1338, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1409, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1409, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1482, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1482, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1544, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1544, "numnum:count:POP2050": 3, "numnum:max:POP2050": 1604, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1604, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 28.212891, -25.720735 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Bloemfontein", "DIFFASCII": 0, "NAMEASCII": "Bloemfontein", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Judicial capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Orange Free State", "ISO_A2": "ZA", "LATITUDE": -29.119994, "LONGITUDE": 26.229913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 463064, "POP_MIN": 456669, "POP_OTHER": 456513, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1018725, "LS_NAME": "Bloemfontein", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 456669, "MAX_POP20": 456669, "MAX_POP50": 456669, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 105, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 26.166667, "MAX_BBXMIN": 26.166667, "MIN_BBXMAX": 26.3, "MAX_BBXMAX": 26.3, "MIN_BBYMIN": -29.2, "MAX_BBYMIN": -29.2, "MIN_BBYMAX": -29.058333, "MAX_BBYMAX": -29.058333, "MEAN_BBXC": 26.225714, "MEAN_BBYC": -29.128155, "COMPARE": 0, "GN_ASCII": "Bloemfontein", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 463064, "ELEVATION": 0, "GTOPO30": 1398, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -25.706921, "numnum:min:LATITUDE": -29.316674, "numnum:sum:LATITUDE": -84.14358899999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 28.229429, "numnum:min:LONGITUDE": 26.229913, "numnum:sum:LONGITUDE": 81.942615, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1338000, "numnum:min:POP_MAX": 361324, "numnum:sum:POP_MAX": 2162388, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1338000, "numnum:min:POP_MIN": 118355, "numnum:sum:POP_MIN": 1913024, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1443084, "numnum:min:POP_OTHER": 356225, "numnum:sum:POP_OTHER": 2255822, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 32, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 31, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1018725, "numnum:min:GEONAMEID": 932505, "numnum:sum:GEONAMEID": 2915367, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1444949, "numnum:min:MAX_POP10": 361324, "numnum:sum:MAX_POP10": 2262942, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1444949, "numnum:min:MAX_POP20": 361324, "numnum:sum:MAX_POP20": 2262942, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1444949, "numnum:min:MAX_POP50": 361324, "numnum:sum:MAX_POP50": 2262942, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1444949, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 1806273, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 502, "numnum:min:MIN_AREAKM": 105, "numnum:sum:MIN_AREAKM": 748, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 502, "numnum:min:MAX_AREAKM": 105, "numnum:sum:MAX_AREAKM": 748, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 194, "numnum:min:MIN_AREAMI": 40, "numnum:sum:MIN_AREAMI": 288, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 194, "numnum:min:MAX_AREAMI": 40, "numnum:sum:MAX_AREAMI": 288, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 256, "numnum:min:MIN_PERKM": 78, "numnum:sum:MIN_PERKM": 511, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 256, "numnum:min:MAX_PERKM": 78, "numnum:sum:MAX_PERKM": 511, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 159, "numnum:min:MIN_PERMI": 48, "numnum:sum:MIN_PERMI": 317, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 159, "numnum:min:MAX_PERMI": 48, "numnum:sum:MAX_PERMI": 317, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 28.041667, "numnum:min:MIN_BBXMIN": 26.166667, "numnum:sum:MIN_BBXMIN": 81.666667, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 28.041667, "numnum:min:MAX_BBXMIN": 26.166667, "numnum:sum:MAX_BBXMIN": 81.666667, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 28.4, "numnum:min:MIN_BBXMAX": 26.3, "numnum:sum:MIN_BBXMAX": 82.316667, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 28.4, "numnum:min:MAX_BBXMAX": 26.3, "numnum:sum:MAX_BBXMAX": 82.316667, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -25.891667, "numnum:min:MIN_BBYMIN": -29.525, "numnum:sum:MIN_BBYMIN": -84.61666699999999, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -25.891667, "numnum:min:MAX_BBYMIN": -29.525, "numnum:sum:MAX_BBYMIN": -84.61666699999999, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -25.641667, "numnum:min:MIN_BBYMAX": -29.241667, "numnum:sum:MIN_BBYMAX": -83.941667, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -25.641667, "numnum:min:MAX_BBYMAX": -29.241667, "numnum:sum:MAX_BBYMAX": -83.941667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 28.214676, "numnum:min:MEAN_BBXC": 26.225714, "numnum:sum:MEAN_BBXC": 81.977092, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -25.755716, "numnum:min:MEAN_BBYC": -29.350222, "numnum:sum:MEAN_BBYC": -84.234093, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 14, "numnum:min:ADMIN1_COD": 3, "numnum:sum:ADMIN1_COD": 23, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1619438, "numnum:min:GN_POP": 118355, "numnum:sum:GN_POP": 2200857, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1482, "numnum:min:GTOPO30": 1282, "numnum:sum:GTOPO30": 4162, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 460, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 460, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -25.73, "numnum:sum:UN_LAT": -25.73, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 28.21, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 28.21, "numnum:count:POP1950": 3, "numnum:max:POP1950": 275, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 275, "numnum:count:POP1955": 3, "numnum:max:POP1955": 340, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 340, "numnum:count:POP1960": 3, "numnum:max:POP1960": 419, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 419, "numnum:count:POP1965": 3, "numnum:max:POP1965": 488, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 488, "numnum:count:POP1970": 3, "numnum:max:POP1970": 565, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 565, "numnum:count:POP1975": 3, "numnum:max:POP1975": 624, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 624, "numnum:count:POP1980": 3, "numnum:max:POP1980": 688, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 688, "numnum:count:POP1985": 3, "numnum:max:POP1985": 763, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 763, "numnum:count:POP1990": 3, "numnum:max:POP1990": 911, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 911, "numnum:count:POP1995": 3, "numnum:max:POP1995": 951, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 951, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1084, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1084, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1273, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1273, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1338, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1338, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1409, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1409, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1482, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1482, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1544, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1544, "numnum:count:POP2050": 3, "numnum:max:POP2050": 1604, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1604, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.113775 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 6, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -4.616632, "numnum:min:LATITUDE": -25.955277, "numnum:sum:LATITUDE": -30.571908999999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 55.44999, "numnum:min:LONGITUDE": 32.589163, "numnum:sum:LONGITUDE": 88.039153, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1446000, "numnum:min:POP_MAX": 33576, "numnum:sum:POP_MAX": 1479576, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1191613, "numnum:min:POP_MIN": 22881, "numnum:sum:POP_MIN": 1214494, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1365454, "numnum:min:POP_OTHER": 33737, "numnum:sum:POP_OTHER": 1399191, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 19, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1040652, "numnum:min:GEONAMEID": 241131, "numnum:sum:GEONAMEID": 1281783, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1369629, "numnum:min:MAX_POP10": 33576, "numnum:sum:MAX_POP10": 1403205, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1823845, "numnum:min:MAX_POP20": 33576, "numnum:sum:MAX_POP20": 1857421, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1822603, "numnum:min:MAX_POP50": 33576, "numnum:sum:MAX_POP50": 1856179, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1823845, "numnum:min:MAX_POP300": 33576, "numnum:sum:MAX_POP300": 1857421, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 187, "numnum:min:MIN_AREAKM": 15, "numnum:sum:MIN_AREAKM": 202, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 313, "numnum:min:MAX_AREAKM": 15, "numnum:sum:MAX_AREAKM": 328, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 72, "numnum:min:MIN_AREAMI": 6, "numnum:sum:MIN_AREAMI": 78, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 121, "numnum:min:MAX_AREAMI": 6, "numnum:sum:MAX_AREAMI": 127, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 160, "numnum:min:MIN_PERKM": 26, "numnum:sum:MIN_PERKM": 186, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 234, "numnum:min:MAX_PERKM": 26, "numnum:sum:MAX_PERKM": 260, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 100, "numnum:min:MIN_PERMI": 16, "numnum:sum:MIN_PERMI": 116, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 145, "numnum:min:MAX_PERMI": 16, "numnum:sum:MAX_PERMI": 161, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 55.416667, "numnum:min:MIN_BBXMIN": 32.425, "numnum:sum:MIN_BBXMIN": 87.841667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 55.416667, "numnum:min:MAX_BBXMIN": 32.506986, "numnum:sum:MAX_BBXMIN": 87.923653, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 55.475, "numnum:min:MIN_BBXMAX": 32.65, "numnum:sum:MIN_BBXMAX": 88.125, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 55.475, "numnum:min:MAX_BBXMAX": 32.65, "numnum:sum:MAX_BBXMAX": 88.125, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -4.65, "numnum:min:MIN_BBYMIN": -25.991667, "numnum:sum:MIN_BBYMIN": -30.641666999999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -4.65, "numnum:min:MAX_BBYMIN": -25.983333, "numnum:sum:MAX_BBYMIN": -30.633333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -4.6, "numnum:min:MIN_BBYMAX": -25.75, "numnum:sum:MIN_BBYMAX": -30.35, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -4.6, "numnum:min:MAX_BBYMAX": -25.75, "numnum:sum:MAX_BBYMAX": -30.35, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 55.45, "numnum:min:MEAN_BBXC": 32.543778, "numnum:sum:MEAN_BBXC": 87.993778, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -4.626389, "numnum:min:MEAN_BBYC": -25.880831, "numnum:sum:MEAN_BBYC": -30.50722, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1191613, "numnum:min:GN_POP": 22881, "numnum:sum:GN_POP": 1214494, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 47, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9952, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 376, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 376, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -25.96, "numnum:sum:UN_LAT": -25.96, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 32.57, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 32.57, "numnum:count:POP1950": 2, "numnum:max:POP1950": 92, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 92, "numnum:count:POP1955": 2, "numnum:max:POP1955": 129, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 129, "numnum:count:POP1960": 2, "numnum:max:POP1960": 181, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 181, "numnum:count:POP1965": 2, "numnum:max:POP1965": 259, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 259, "numnum:count:POP1970": 2, "numnum:max:POP1970": 371, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 371, "numnum:count:POP1975": 2, "numnum:max:POP1975": 456, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 456, "numnum:count:POP1980": 2, "numnum:max:POP1980": 550, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 550, "numnum:count:POP1985": 2, "numnum:max:POP1985": 653, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 653, "numnum:count:POP1990": 2, "numnum:max:POP1990": 776, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 776, "numnum:count:POP1995": 2, "numnum:max:POP1995": 921, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 921, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1096, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1096, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1334, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1334, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1446, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1446, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1621, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1621, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1921, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1921, "numnum:count:POP2025": 2, "numnum:max:POP2025": 2235, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2235, "numnum:count:POP2050": 2, "numnum:max:POP2050": 2560, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2560, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 31.157227, -26.313113 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Antananarivo", "DIFFASCII": 0, "NAMEASCII": "Antananarivo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Madagascar", "SOV_A3": "MDG", "ADM0NAME": "Madagascar", "ADM0_A3": "MDG", "ADM1NAME": "Antananarivo", "ISO_A2": "MG", "LATITUDE": -18.916637, "LONGITUDE": 47.516624, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1697000, "POP_MIN": 1391433, "POP_OTHER": 1844658, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1070940, "MEGANAME": "Antananarivo", "LS_NAME": "Antananarivo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1727538, "MAX_POP20": 1727538, "MAX_POP50": 1727538, "MAX_POP300": 1727538, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 700, "MAX_AREAKM": 700, "MIN_AREAMI": 270, "MAX_AREAMI": 270, "MIN_PERKM": 699, "MAX_PERKM": 699, "MIN_PERMI": 434, "MAX_PERMI": 434, "MIN_BBXMIN": 47.233333, "MAX_BBXMIN": 47.233333, "MIN_BBXMAX": 47.625, "MAX_BBXMAX": 47.625, "MIN_BBYMIN": -19.166667, "MAX_BBYMIN": -19.166667, "MIN_BBYMAX": -18.625, "MAX_BBYMAX": -18.625, "MEAN_BBXC": 47.476707, "MEAN_BBYC": -18.875473, "COMPARE": 0, "GN_ASCII": "Antananarivo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1391433, "ELEVATION": 0, "GTOPO30": 1289, "TIMEZONE": "Indian/Antananarivo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 345, "UN_ADM0": "Madagascar", "UN_LAT": -18.9, "UN_LONG": 47.52, "POP1950": 177, "POP1955": 189, "POP1960": 252, "POP1965": 298, "POP1970": 363, "POP1975": 454, "POP1980": 580, "POP1985": 742, "POP1990": 948, "POP1995": 1169, "POP2000": 1361, "POP2005": 1590, "POP2010": 1697, "POP2015": 1877, "POP2020": 2229, "POP2025": 2642, "POP2050": 3118, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 760, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 7, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -6.174418, "numnum:min:LATITUDE": -20.166639, "numnum:sum:LATITUDE": -45.257694, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 106.829438, "numnum:min:LONGITUDE": 47.516624, "numnum:sum:LONGITUDE": 211.84605599999999, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 9125000, "numnum:min:POP_MAX": 595491, "numnum:sum:POP_MAX": 11417491, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 8540121, "numnum:min:POP_MIN": 148416, "numnum:sum:POP_MIN": 10079970, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 9129613, "numnum:min:POP_OTHER": 304613, "numnum:sum:POP_OTHER": 11278884, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 34, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1642911, "numnum:min:GEONAMEID": 934154, "numnum:sum:GEONAMEID": 3648005, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 9664972, "numnum:min:MAX_POP10": 291837, "numnum:sum:MAX_POP10": 11684347, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 15074060, "numnum:min:MAX_POP20": 595491, "numnum:sum:MAX_POP20": 17397089, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 22017580, "numnum:min:MAX_POP50": 595491, "numnum:sum:MAX_POP50": 24340609, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 22031364, "numnum:min:MAX_POP300": 595491, "numnum:sum:MAX_POP300": 24354393, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 44354170, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 44354170, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1303, "numnum:min:MIN_AREAKM": 70, "numnum:sum:MIN_AREAKM": 2073, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 19435, "numnum:min:MAX_AREAKM": 152, "numnum:sum:MAX_AREAKM": 20287, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 503, "numnum:min:MIN_AREAMI": 27, "numnum:sum:MIN_AREAMI": 800, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 7504, "numnum:min:MAX_AREAMI": 59, "numnum:sum:MAX_AREAMI": 7833, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 699, "numnum:min:MIN_PERKM": 85, "numnum:sum:MIN_PERKM": 1102, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 10224, "numnum:min:MAX_PERKM": 154, "numnum:sum:MAX_PERKM": 11077, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 434, "numnum:min:MIN_PERMI": 53, "numnum:sum:MIN_PERMI": 684, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 6353, "numnum:min:MAX_PERMI": 96, "numnum:sum:MAX_PERMI": 6883, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 105.891667, "numnum:min:MIN_BBXMIN": 47.233333, "numnum:sum:MIN_BBXMIN": 210.55, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 106.473854, "numnum:min:MAX_BBXMIN": 47.233333, "numnum:sum:MAX_BBXMIN": 211.132187, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 106.932506, "numnum:min:MIN_BBXMAX": 47.625, "numnum:sum:MIN_BBXMAX": 212.099173, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 109.808333, "numnum:min:MAX_BBXMAX": 47.625, "numnum:sum:MAX_BBXMAX": 215.008333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -7.716667, "numnum:min:MIN_BBYMIN": -20.333333, "numnum:sum:MIN_BBYMIN": -47.216667, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -6.383127, "numnum:min:MAX_BBYMIN": -20.248073, "numnum:sum:MAX_BBYMIN": -45.797867000000007, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -6.016667, "numnum:min:MIN_BBYMAX": -20.108333, "numnum:sum:MIN_BBYMAX": -44.75, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -5.875, "numnum:min:MAX_BBYMAX": -20.108333, "numnum:sum:MAX_BBYMAX": -44.608333, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 106.989399, "numnum:min:MEAN_BBXC": 47.476707, "numnum:sum:MEAN_BBXC": 211.957717, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -6.313824, "numnum:min:MEAN_BBYC": -20.221833, "numnum:sum:MEAN_BBYC": -45.41113, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 18, "numnum:min:ADMIN1_COD": 4, "numnum:sum:ADMIN1_COD": 27, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 8540121, "numnum:min:GN_POP": 155226, "numnum:sum:GN_POP": 10086780, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1289, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 1424, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 345, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 625, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -18.9, "numnum:sum:UN_LAT": -25.06, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 106.8, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 154.32, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1452, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1629, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1972, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2161, "numnum:count:POP1960": 3, "numnum:max:POP1960": 2679, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2931, "numnum:count:POP1965": 3, "numnum:max:POP1965": 3297, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3595, "numnum:count:POP1970": 3, "numnum:max:POP1970": 3915, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 4278, "numnum:count:POP1975": 3, "numnum:max:POP1975": 4813, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5267, "numnum:count:POP1980": 3, "numnum:max:POP1980": 5984, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 6564, "numnum:count:POP1985": 3, "numnum:max:POP1985": 7009, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 7751, "numnum:count:POP1990": 3, "numnum:max:POP1990": 8175, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 9123, "numnum:count:POP1995": 3, "numnum:max:POP1995": 8322, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9491, "numnum:count:POP2000": 3, "numnum:max:POP2000": 8390, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 9751, "numnum:count:POP2005": 3, "numnum:max:POP2005": 8843, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 10433, "numnum:count:POP2010": 3, "numnum:max:POP2010": 9125, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 10822, "numnum:count:POP2015": 3, "numnum:max:POP2015": 9703, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 11580, "numnum:count:POP2020": 3, "numnum:max:POP2020": 10792, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 13021, "numnum:count:POP2025": 3, "numnum:max:POP2025": 11689, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 14331, "numnum:count:POP2050": 3, "numnum:max:POP2050": 12363, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 15481, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 47.504883, -18.937464 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -8.559388, "numnum:min:LATITUDE": -9.464708, "numnum:sum:LATITUDE": -18.024096, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 147.192504, "numnum:min:LONGITUDE": 125.579456, "numnum:sum:LONGITUDE": 272.77196000000006, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 283733, "numnum:min:POP_MAX": 234331, "numnum:sum:POP_MAX": 518064, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 251136, "numnum:min:POP_MIN": 193563, "numnum:sum:POP_MIN": 444699, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 251304, "numnum:min:POP_OTHER": 55154, "numnum:sum:POP_OTHER": 306458, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 10, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 20, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2088122, "numnum:min:GEONAMEID": 1645457, "numnum:sum:GEONAMEID": 3733579, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 251136, "numnum:min:MAX_POP10": 55154, "numnum:sum:MAX_POP10": 306290, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 251136, "numnum:min:MAX_POP20": 55154, "numnum:sum:MAX_POP20": 306290, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 251136, "numnum:min:MAX_POP50": 55154, "numnum:sum:MAX_POP50": 306290, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 251136, "numnum:min:MAX_POP300": 55154, "numnum:sum:MAX_POP300": 306290, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 89, "numnum:min:MIN_AREAKM": 27, "numnum:sum:MIN_AREAKM": 116, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 89, "numnum:min:MAX_AREAKM": 27, "numnum:sum:MAX_AREAKM": 116, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 35, "numnum:min:MIN_AREAMI": 10, "numnum:sum:MIN_AREAMI": 45, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 35, "numnum:min:MAX_AREAMI": 10, "numnum:sum:MAX_AREAMI": 45, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 92, "numnum:min:MIN_PERKM": 31, "numnum:sum:MIN_PERKM": 123, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 92, "numnum:min:MAX_PERKM": 31, "numnum:sum:MAX_PERKM": 123, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 57, "numnum:min:MIN_PERMI": 19, "numnum:sum:MIN_PERMI": 76, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 57, "numnum:min:MAX_PERMI": 19, "numnum:sum:MAX_PERMI": 76, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 147.141667, "numnum:min:MIN_BBXMIN": 125.516667, "numnum:sum:MIN_BBXMIN": 272.658334, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 147.141667, "numnum:min:MAX_BBXMIN": 125.516667, "numnum:sum:MAX_BBXMIN": 272.658334, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 147.241667, "numnum:min:MIN_BBXMAX": 125.608333, "numnum:sum:MIN_BBXMAX": 272.85, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 147.241667, "numnum:min:MAX_BBXMAX": 125.608333, "numnum:sum:MAX_BBXMAX": 272.85, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -8.583333, "numnum:min:MIN_BBYMIN": -9.508333, "numnum:sum:MIN_BBYMIN": -18.091666, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -8.583333, "numnum:min:MAX_BBYMIN": -9.508333, "numnum:sum:MAX_BBYMIN": -18.091666, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -8.541667, "numnum:min:MIN_BBYMAX": -9.358333, "numnum:sum:MIN_BBYMAX": -17.9, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -8.541667, "numnum:min:MAX_BBYMAX": -9.358333, "numnum:sum:MAX_BBYMAX": -17.9, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 147.185377, "numnum:min:MEAN_BBXC": 125.565104, "numnum:sum:MEAN_BBXC": 272.750481, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -8.559115, "numnum:min:MEAN_BBYC": -9.433491, "numnum:sum:MEAN_BBYC": -17.992606000000003, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 20, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 20, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 283733, "numnum:min:GN_POP": 150000, "numnum:sum:GN_POP": 433733, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 50, "numnum:min:GTOPO30": 9, "numnum:sum:GTOPO30": 59, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lobamba", "DIFFASCII": 0, "NAMEASCII": "Lobamba", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative and", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Manzini", "ISO_A2": "SZ", "LATITUDE": -26.466667, "LONGITUDE": 31.199997, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 9782, "POP_MIN": 4557, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 4, "GEONAMEID": 935048, "LS_NAME": "Lobamba", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 9782, "MAX_POP20": 9782, "MAX_POP50": 9782, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": 31.183333, "MAX_BBXMIN": 31.183333, "MIN_BBXMAX": 31.233333, "MAX_BBXMAX": 31.233333, "MIN_BBYMIN": -26.458333, "MAX_BBYMIN": -26.458333, "MIN_BBYMAX": -26.391667, "MAX_BBYMAX": -26.391667, "MEAN_BBXC": 31.201993, "MEAN_BBYC": -26.430254, "COMPARE": 0, "GN_ASCII": "Lobamba", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4557, "ELEVATION": 0, "GTOPO30": 651, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.201172, -26.470573 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 1, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 900, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 3, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 6, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -33.920011, "numnum:min:LATITUDE": -37.820031, "numnum:sum:LATITUDE": -71.740042, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 151.18518, "numnum:min:LONGITUDE": 144.975016, "numnum:sum:LONGITUDE": 296.16019600000007, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 4630000, "numnum:min:POP_MAX": 4170000, "numnum:sum:POP_MAX": 8800000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3641422, "numnum:min:POP_MIN": 93625, "numnum:sum:POP_MIN": 3735047, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2669348, "numnum:min:POP_OTHER": 1805353, "numnum:sum:POP_OTHER": 4474701, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 20, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2158177, "numnum:min:GEONAMEID": 2147714, "numnum:sum:GEONAMEID": 4305891, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2731457, "numnum:min:MAX_POP10": 1904377, "numnum:sum:MAX_POP10": 4635834, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2731457, "numnum:min:MAX_POP20": 2545035, "numnum:sum:MAX_POP20": 5276492, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3164008, "numnum:min:MAX_POP50": 2564188, "numnum:sum:MAX_POP50": 5728196, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3164008, "numnum:min:MAX_POP300": 2564188, "numnum:sum:MAX_POP300": 5728196, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 3164008, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3164008, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1078, "numnum:min:MIN_AREAKM": 1010, "numnum:sum:MIN_AREAKM": 2088, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1554, "numnum:min:MAX_AREAKM": 1409, "numnum:sum:MAX_AREAKM": 2963, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 416, "numnum:min:MIN_AREAMI": 390, "numnum:sum:MIN_AREAMI": 806, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 600, "numnum:min:MAX_AREAMI": 544, "numnum:sum:MAX_AREAMI": 1144, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 468, "numnum:min:MIN_PERKM": 360, "numnum:sum:MIN_PERKM": 828, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 843, "numnum:min:MAX_PERKM": 717, "numnum:sum:MAX_PERKM": 1560, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 291, "numnum:min:MIN_PERMI": 224, "numnum:sum:MIN_PERMI": 515, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 524, "numnum:min:MAX_PERMI": 445, "numnum:sum:MAX_PERMI": 969, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 150.533333, "numnum:min:MIN_BBXMIN": 144.608333, "numnum:sum:MIN_BBXMIN": 295.141666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 150.831963, "numnum:min:MAX_BBXMIN": 144.728637, "numnum:sum:MAX_BBXMIN": 295.5606, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 151.308333, "numnum:min:MIN_BBXMAX": 145.327432, "numnum:sum:MIN_BBXMAX": 296.635765, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 151.341667, "numnum:min:MAX_BBXMAX": 145.4, "numnum:sum:MAX_BBXMAX": 296.741667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -34.091667, "numnum:min:MIN_BBYMIN": -38.208333, "numnum:sum:MIN_BBYMIN": -72.30000000000001, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -34.091667, "numnum:min:MAX_BBYMIN": -38.0105, "numnum:sum:MAX_BBYMIN": -72.10216700000001, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -33.641667, "numnum:min:MIN_BBYMAX": -37.589905, "numnum:sum:MIN_BBYMAX": -71.231572, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -33.6, "numnum:min:MAX_BBYMAX": -37.566667, "numnum:sum:MAX_BBYMAX": -71.166667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 151.051024, "numnum:min:MEAN_BBXC": 145.053821, "numnum:sum:MEAN_BBXC": 296.104845, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -33.846724, "numnum:min:MEAN_BBYC": -37.835257, "numnum:sum:MEAN_BBYC": -71.68198100000001, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 0, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 0, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 4394576, "numnum:min:GN_POP": 3730206, "numnum:sum:GN_POP": 8124782, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 0, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 0, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 276, "numnum:min:UN_FID": 274, "numnum:sum:UN_FID": 550, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": -33.88, "numnum:min:UN_LAT": -37.85, "numnum:sum:UN_LAT": -71.73, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 151.02, "numnum:min:UN_LONG": 145.07, "numnum:sum:UN_LONG": 296.09000000000006, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1690, "numnum:min:POP1950": 1332, "numnum:sum:POP1950": 3022, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1906, "numnum:min:POP1955": 1574, "numnum:sum:POP1955": 3480, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2135, "numnum:min:POP1960": 1851, "numnum:sum:POP1960": 3986, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2390, "numnum:min:POP1965": 2068, "numnum:sum:POP1965": 4458, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2667, "numnum:min:POP1970": 2334, "numnum:sum:POP1970": 5001, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2960, "numnum:min:POP1975": 2561, "numnum:sum:POP1975": 5521, "numnum:count:POP1980": 2, "numnum:max:POP1980": 3227, "numnum:min:POP1980": 2765, "numnum:sum:POP1980": 5992, "numnum:count:POP1985": 2, "numnum:max:POP1985": 3432, "numnum:min:POP1985": 2935, "numnum:sum:POP1985": 6367, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3632, "numnum:min:POP1990": 3117, "numnum:sum:POP1990": 6749, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3839, "numnum:min:POP1995": 3257, "numnum:sum:POP1995": 7096, "numnum:count:POP2000": 2, "numnum:max:POP2000": 4078, "numnum:min:POP2000": 3433, "numnum:sum:POP2000": 7511, "numnum:count:POP2005": 2, "numnum:max:POP2005": 4260, "numnum:min:POP2005": 3641, "numnum:sum:POP2005": 7901, "numnum:count:POP2010": 2, "numnum:max:POP2010": 4327, "numnum:min:POP2010": 3728, "numnum:sum:POP2010": 8055, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4427, "numnum:min:POP2015": 3851, "numnum:sum:POP2015": 8278, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4582, "numnum:min:POP2020": 4013, "numnum:sum:POP2020": 8595, "numnum:count:POP2025": 2, "numnum:max:POP2025": 4716, "numnum:min:POP2025": 4137, "numnum:sum:POP2025": 8853, "numnum:count:POP2050": 2, "numnum:max:POP2050": 4826, "numnum:min:POP2050": 4238, "numnum:sum:POP2050": 9064, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560, "accum2": 1, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 13, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 380, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 12, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": -4.616632, "numnum:min:LATITUDE": -25.955277, "numnum:sum:LATITUDE": -69.655185, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 57.499994, "numnum:min:LONGITUDE": 32.589163, "numnum:sum:LONGITUDE": 193.055771, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 1697000, "numnum:min:POP_MAX": 33576, "numnum:sum:POP_MAX": 3772067, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 1391433, "numnum:min:POP_MIN": 22881, "numnum:sum:POP_MIN": 2754343, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 1844658, "numnum:min:POP_OTHER": 33737, "numnum:sum:POP_OTHER": 3548462, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 42, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 40, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 1070940, "numnum:min:GEONAMEID": 241131, "numnum:sum:GEONAMEID": 3286877, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 1727538, "numnum:min:MAX_POP10": 33576, "numnum:sum:MAX_POP10": 3422580, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 1823845, "numnum:min:MAX_POP20": 33576, "numnum:sum:MAX_POP20": 4180450, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 1822603, "numnum:min:MAX_POP50": 33576, "numnum:sum:MAX_POP50": 4179208, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 1823845, "numnum:min:MAX_POP300": 33576, "numnum:sum:MAX_POP300": 4180450, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 700, "numnum:min:MIN_AREAKM": 15, "numnum:sum:MIN_AREAKM": 972, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 700, "numnum:min:MAX_AREAKM": 15, "numnum:sum:MAX_AREAKM": 1180, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 270, "numnum:min:MIN_AREAMI": 6, "numnum:sum:MIN_AREAMI": 375, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 270, "numnum:min:MAX_AREAMI": 6, "numnum:sum:MAX_AREAMI": 456, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 699, "numnum:min:MIN_PERKM": 26, "numnum:sum:MIN_PERKM": 970, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 699, "numnum:min:MAX_PERKM": 26, "numnum:sum:MAX_PERKM": 1113, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 434, "numnum:min:MIN_PERMI": 16, "numnum:sum:MIN_PERMI": 603, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 434, "numnum:min:MAX_PERMI": 16, "numnum:sum:MAX_PERMI": 691, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 57.425, "numnum:min:MIN_BBXMIN": 32.425, "numnum:sum:MIN_BBXMIN": 192.5, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 57.425, "numnum:min:MAX_BBXMIN": 32.506986, "numnum:sum:MAX_BBXMIN": 192.58198600000004, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 57.541667, "numnum:min:MIN_BBXMAX": 32.65, "numnum:sum:MIN_BBXMAX": 193.291667, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 57.575, "numnum:min:MAX_BBXMAX": 32.65, "numnum:sum:MAX_BBXMAX": 193.325, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": -4.65, "numnum:min:MIN_BBYMIN": -25.991667, "numnum:sum:MIN_BBYMIN": -70.141667, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": -4.65, "numnum:min:MAX_BBYMIN": -25.983333, "numnum:sum:MAX_BBYMIN": -70.048073, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": -4.6, "numnum:min:MIN_BBYMAX": -25.75, "numnum:sum:MIN_BBYMAX": -69.083333, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": -4.6, "numnum:min:MAX_BBYMAX": -25.75, "numnum:sum:MAX_BBYMAX": -69.083333, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 57.491611, "numnum:min:MEAN_BBXC": 32.543778, "numnum:sum:MEAN_BBXC": 192.962096, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": -4.626389, "numnum:min:MEAN_BBYC": -25.880831, "numnum:sum:MEAN_BBYC": -69.604526, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 18, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 34, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 1391433, "numnum:min:GN_POP": 22881, "numnum:sum:GN_POP": 2761153, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 1289, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8530, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 376, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 721, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -25.96, "numnum:sum:UN_LAT": -44.86, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 47.52, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 80.09, "numnum:count:POP1950": 4, "numnum:max:POP1950": 177, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 269, "numnum:count:POP1955": 4, "numnum:max:POP1955": 189, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 318, "numnum:count:POP1960": 4, "numnum:max:POP1960": 252, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 433, "numnum:count:POP1965": 4, "numnum:max:POP1965": 298, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 557, "numnum:count:POP1970": 4, "numnum:max:POP1970": 371, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 734, "numnum:count:POP1975": 4, "numnum:max:POP1975": 456, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 910, "numnum:count:POP1980": 4, "numnum:max:POP1980": 580, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1130, "numnum:count:POP1985": 4, "numnum:max:POP1985": 742, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1395, "numnum:count:POP1990": 4, "numnum:max:POP1990": 948, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1724, "numnum:count:POP1995": 4, "numnum:max:POP1995": 1169, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2090, "numnum:count:POP2000": 4, "numnum:max:POP2000": 1361, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2457, "numnum:count:POP2005": 4, "numnum:max:POP2005": 1590, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2924, "numnum:count:POP2010": 4, "numnum:max:POP2010": 1697, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3143, "numnum:count:POP2015": 4, "numnum:max:POP2015": 1877, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3498, "numnum:count:POP2020": 4, "numnum:max:POP2020": 2229, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4150, "numnum:count:POP2025": 4, "numnum:max:POP2025": 2642, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 4877, "numnum:count:POP2050": 4, "numnum:max:POP2050": 3118, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5678, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Canberra", "DIFFASCII": 0, "NAMEASCII": "Canberra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Australian Capital Territory", "ISO_A2": "AU", "LATITUDE": -35.283029, "LONGITUDE": 149.129026, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 327700, "POP_MIN": 234032, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2172517, "LS_NAME": "Canberra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 234032, "MAX_POP20": 244896, "MAX_POP50": 244896, "MAX_POP300": 244896, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 226, "MAX_AREAKM": 251, "MIN_AREAMI": 87, "MAX_AREAMI": 97, "MIN_PERKM": 175, "MAX_PERKM": 202, "MIN_PERMI": 109, "MAX_PERMI": 126, "MIN_BBXMIN": 149, "MAX_BBXMIN": 149, "MIN_BBXMAX": 149.2, "MAX_BBXMAX": 149.2, "MIN_BBYMIN": -35.483333, "MAX_BBYMIN": -35.455764, "MIN_BBYMAX": -35.183333, "MAX_BBYMAX": -35.183333, "MEAN_BBXC": 149.094107, "MEAN_BBYC": -35.309627, "COMPARE": 0, "GN_ASCII": "Canberra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 327700, "ELEVATION": 0, "GTOPO30": 609, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 149.150391, -35.281501 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 820, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 17, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -6.174418, "numnum:min:LATITUDE": -9.464708, "numnum:sum:LATITUDE": -24.198514000000004, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 147.192504, "numnum:min:LONGITUDE": 106.829438, "numnum:sum:LONGITUDE": 379.601398, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 9125000, "numnum:min:POP_MAX": 234331, "numnum:sum:POP_MAX": 9643064, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 8540121, "numnum:min:POP_MIN": 193563, "numnum:sum:POP_MIN": 8984820, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 9129613, "numnum:min:POP_OTHER": 55154, "numnum:sum:POP_OTHER": 9436071, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 33, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 32, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2088122, "numnum:min:GEONAMEID": 1642911, "numnum:sum:GEONAMEID": 5376490, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 9664972, "numnum:min:MAX_POP10": 55154, "numnum:sum:MAX_POP10": 9971262, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 15074060, "numnum:min:MAX_POP20": 55154, "numnum:sum:MAX_POP20": 15380350, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 22017580, "numnum:min:MAX_POP50": 55154, "numnum:sum:MAX_POP50": 22323870, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 22031364, "numnum:min:MAX_POP300": 55154, "numnum:sum:MAX_POP300": 22337654, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 44354170, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 44354170, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1303, "numnum:min:MIN_AREAKM": 27, "numnum:sum:MIN_AREAKM": 1419, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 19435, "numnum:min:MAX_AREAKM": 27, "numnum:sum:MAX_AREAKM": 19551, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 503, "numnum:min:MIN_AREAMI": 10, "numnum:sum:MIN_AREAMI": 548, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 7504, "numnum:min:MAX_AREAMI": 10, "numnum:sum:MAX_AREAMI": 7549, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 318, "numnum:min:MIN_PERKM": 31, "numnum:sum:MIN_PERKM": 441, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 10224, "numnum:min:MAX_PERKM": 31, "numnum:sum:MAX_PERKM": 10347, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 197, "numnum:min:MIN_PERMI": 19, "numnum:sum:MIN_PERMI": 273, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 6353, "numnum:min:MAX_PERMI": 19, "numnum:sum:MAX_PERMI": 6429, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 147.141667, "numnum:min:MIN_BBXMIN": 105.891667, "numnum:sum:MIN_BBXMIN": 378.550001, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 147.141667, "numnum:min:MAX_BBXMIN": 106.473854, "numnum:sum:MAX_BBXMIN": 379.13218800000007, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 147.241667, "numnum:min:MIN_BBXMAX": 106.932506, "numnum:sum:MIN_BBXMAX": 379.782506, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 147.241667, "numnum:min:MAX_BBXMAX": 109.808333, "numnum:sum:MAX_BBXMAX": 382.658333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -7.716667, "numnum:min:MIN_BBYMIN": -9.508333, "numnum:sum:MIN_BBYMIN": -25.808333, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -6.383127, "numnum:min:MAX_BBYMIN": -9.508333, "numnum:sum:MAX_BBYMIN": -24.474793, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -6.016667, "numnum:min:MIN_BBYMAX": -9.358333, "numnum:sum:MIN_BBYMAX": -23.916667, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -5.875, "numnum:min:MAX_BBYMAX": -9.358333, "numnum:sum:MAX_BBYMAX": -23.775, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 147.185377, "numnum:min:MEAN_BBXC": 106.989399, "numnum:sum:MEAN_BBXC": 379.73987999999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -6.313824, "numnum:min:MEAN_BBYC": -9.433491, "numnum:sum:MEAN_BBYC": -24.30643, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 20, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 24, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 8540121, "numnum:min:GN_POP": 150000, "numnum:sum:GN_POP": 8973854, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 50, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 61, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 280, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 280, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -6.16, "numnum:sum:UN_LAT": -6.16, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 106.8, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 106.8, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1452, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1452, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1972, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1972, "numnum:count:POP1960": 3, "numnum:max:POP1960": 2679, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2679, "numnum:count:POP1965": 3, "numnum:max:POP1965": 3297, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3297, "numnum:count:POP1970": 3, "numnum:max:POP1970": 3915, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3915, "numnum:count:POP1975": 3, "numnum:max:POP1975": 4813, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4813, "numnum:count:POP1980": 3, "numnum:max:POP1980": 5984, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5984, "numnum:count:POP1985": 3, "numnum:max:POP1985": 7009, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 7009, "numnum:count:POP1990": 3, "numnum:max:POP1990": 8175, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 8175, "numnum:count:POP1995": 3, "numnum:max:POP1995": 8322, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 8322, "numnum:count:POP2000": 3, "numnum:max:POP2000": 8390, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 8390, "numnum:count:POP2005": 3, "numnum:max:POP2005": 8843, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 8843, "numnum:count:POP2010": 3, "numnum:max:POP2010": 9125, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 9125, "numnum:count:POP2015": 3, "numnum:max:POP2015": 9703, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9703, "numnum:count:POP2020": 3, "numnum:max:POP2020": 10792, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 10792, "numnum:count:POP2025": 3, "numnum:max:POP2025": 11689, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 11689, "numnum:count:POP2050": 3, "numnum:max:POP2050": 12363, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 12363, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 1, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 900, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 3, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 6, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -33.920011, "numnum:min:LATITUDE": -37.820031, "numnum:sum:LATITUDE": -71.740042, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 151.18518, "numnum:min:LONGITUDE": 144.975016, "numnum:sum:LONGITUDE": 296.16019600000007, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 4630000, "numnum:min:POP_MAX": 4170000, "numnum:sum:POP_MAX": 8800000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3641422, "numnum:min:POP_MIN": 93625, "numnum:sum:POP_MIN": 3735047, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2669348, "numnum:min:POP_OTHER": 1805353, "numnum:sum:POP_OTHER": 4474701, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 20, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2158177, "numnum:min:GEONAMEID": 2147714, "numnum:sum:GEONAMEID": 4305891, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2731457, "numnum:min:MAX_POP10": 1904377, "numnum:sum:MAX_POP10": 4635834, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2731457, "numnum:min:MAX_POP20": 2545035, "numnum:sum:MAX_POP20": 5276492, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3164008, "numnum:min:MAX_POP50": 2564188, "numnum:sum:MAX_POP50": 5728196, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3164008, "numnum:min:MAX_POP300": 2564188, "numnum:sum:MAX_POP300": 5728196, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 3164008, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3164008, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1078, "numnum:min:MIN_AREAKM": 1010, "numnum:sum:MIN_AREAKM": 2088, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1554, "numnum:min:MAX_AREAKM": 1409, "numnum:sum:MAX_AREAKM": 2963, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 416, "numnum:min:MIN_AREAMI": 390, "numnum:sum:MIN_AREAMI": 806, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 600, "numnum:min:MAX_AREAMI": 544, "numnum:sum:MAX_AREAMI": 1144, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 468, "numnum:min:MIN_PERKM": 360, "numnum:sum:MIN_PERKM": 828, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 843, "numnum:min:MAX_PERKM": 717, "numnum:sum:MAX_PERKM": 1560, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 291, "numnum:min:MIN_PERMI": 224, "numnum:sum:MIN_PERMI": 515, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 524, "numnum:min:MAX_PERMI": 445, "numnum:sum:MAX_PERMI": 969, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 150.533333, "numnum:min:MIN_BBXMIN": 144.608333, "numnum:sum:MIN_BBXMIN": 295.141666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 150.831963, "numnum:min:MAX_BBXMIN": 144.728637, "numnum:sum:MAX_BBXMIN": 295.5606, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 151.308333, "numnum:min:MIN_BBXMAX": 145.327432, "numnum:sum:MIN_BBXMAX": 296.635765, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 151.341667, "numnum:min:MAX_BBXMAX": 145.4, "numnum:sum:MAX_BBXMAX": 296.741667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -34.091667, "numnum:min:MIN_BBYMIN": -38.208333, "numnum:sum:MIN_BBYMIN": -72.30000000000001, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -34.091667, "numnum:min:MAX_BBYMIN": -38.0105, "numnum:sum:MAX_BBYMIN": -72.10216700000001, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -33.641667, "numnum:min:MIN_BBYMAX": -37.589905, "numnum:sum:MIN_BBYMAX": -71.231572, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -33.6, "numnum:min:MAX_BBYMAX": -37.566667, "numnum:sum:MAX_BBYMAX": -71.166667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 151.051024, "numnum:min:MEAN_BBXC": 145.053821, "numnum:sum:MEAN_BBXC": 296.104845, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -33.846724, "numnum:min:MEAN_BBYC": -37.835257, "numnum:sum:MEAN_BBYC": -71.68198100000001, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 0, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 0, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 4394576, "numnum:min:GN_POP": 3730206, "numnum:sum:GN_POP": 8124782, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 0, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 0, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 276, "numnum:min:UN_FID": 274, "numnum:sum:UN_FID": 550, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": -33.88, "numnum:min:UN_LAT": -37.85, "numnum:sum:UN_LAT": -71.73, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 151.02, "numnum:min:UN_LONG": 145.07, "numnum:sum:UN_LONG": 296.09000000000006, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1690, "numnum:min:POP1950": 1332, "numnum:sum:POP1950": 3022, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1906, "numnum:min:POP1955": 1574, "numnum:sum:POP1955": 3480, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2135, "numnum:min:POP1960": 1851, "numnum:sum:POP1960": 3986, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2390, "numnum:min:POP1965": 2068, "numnum:sum:POP1965": 4458, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2667, "numnum:min:POP1970": 2334, "numnum:sum:POP1970": 5001, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2960, "numnum:min:POP1975": 2561, "numnum:sum:POP1975": 5521, "numnum:count:POP1980": 2, "numnum:max:POP1980": 3227, "numnum:min:POP1980": 2765, "numnum:sum:POP1980": 5992, "numnum:count:POP1985": 2, "numnum:max:POP1985": 3432, "numnum:min:POP1985": 2935, "numnum:sum:POP1985": 6367, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3632, "numnum:min:POP1990": 3117, "numnum:sum:POP1990": 6749, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3839, "numnum:min:POP1995": 3257, "numnum:sum:POP1995": 7096, "numnum:count:POP2000": 2, "numnum:max:POP2000": 4078, "numnum:min:POP2000": 3433, "numnum:sum:POP2000": 7511, "numnum:count:POP2005": 2, "numnum:max:POP2005": 4260, "numnum:min:POP2005": 3641, "numnum:sum:POP2005": 7901, "numnum:count:POP2010": 2, "numnum:max:POP2010": 4327, "numnum:min:POP2010": 3728, "numnum:sum:POP2010": 8055, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4427, "numnum:min:POP2015": 3851, "numnum:sum:POP2015": 8278, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4582, "numnum:min:POP2020": 4013, "numnum:sum:POP2020": 8595, "numnum:count:POP2025": 2, "numnum:max:POP2025": 4716, "numnum:min:POP2025": 4137, "numnum:sum:POP2025": 8853, "numnum:count:POP2050": 2, "numnum:max:POP2050": 4826, "numnum:min:POP2050": 4238, "numnum:sum:POP2050": 9064, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Vila", "DIFFASCII": 0, "NAMEASCII": "Port-Vila", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Vanuatu", "SOV_A3": "VUT", "ADM0NAME": "Vanuatu", "ADM0_A3": "VUT", "ADM1NAME": "Shefa", "ISO_A2": "VU", "LATITUDE": -17.73335, "LONGITUDE": 168.316641, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 44040, "POP_MIN": 35901, "POP_OTHER": 7702, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2135171, "LS_NAME": "Port-Vila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7702, "MAX_POP20": 7702, "MAX_POP50": 7702, "MAX_POP300": 7702, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": 168.3, "MAX_BBXMIN": 168.3, "MIN_BBXMAX": 168.325, "MAX_BBXMAX": 168.325, "MIN_BBYMIN": -17.758333, "MAX_BBYMIN": -17.758333, "MIN_BBYMAX": -17.708333, "MAX_BBYMAX": -17.708333, "MEAN_BBXC": 168.3125, "MEAN_BBYC": -17.728125, "COMPARE": 0, "GN_ASCII": "Port-Vila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 35901, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Pacific/Efate", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 168.310547, -17.727759 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Canberra", "DIFFASCII": 0, "NAMEASCII": "Canberra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Australian Capital Territory", "ISO_A2": "AU", "LATITUDE": -35.283029, "LONGITUDE": 149.129026, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 327700, "POP_MIN": 234032, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2172517, "LS_NAME": "Canberra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 234032, "MAX_POP20": 244896, "MAX_POP50": 244896, "MAX_POP300": 244896, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 226, "MAX_AREAKM": 251, "MIN_AREAMI": 87, "MAX_AREAMI": 97, "MIN_PERKM": 175, "MAX_PERKM": 202, "MIN_PERMI": 109, "MAX_PERMI": 126, "MIN_BBXMIN": 149, "MAX_BBXMIN": 149, "MIN_BBXMAX": 149.2, "MAX_BBXMAX": 149.2, "MIN_BBYMIN": -35.483333, "MAX_BBYMIN": -35.455764, "MIN_BBYMAX": -35.183333, "MAX_BBYMAX": -35.183333, "MEAN_BBXC": 149.094107, "MEAN_BBYC": -35.309627, "COMPARE": 0, "GN_ASCII": "Canberra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 327700, "ELEVATION": 0, "GTOPO30": 609, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 149.150391, -35.281501 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 13, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 550, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 24, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": -8.516652, "numnum:min:LATITUDE": -41.299974, "numnum:sum:LATITUDE": -104.799655, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 179.216647, "numnum:min:LONGITUDE": 174.764981, "numnum:sum:LONGITUDE": 707.2066090000001, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 1245000, "numnum:min:POP_MAX": 4749, "numnum:sum:POP_MAX": 1818548, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 274020, "numnum:min:POP_MIN": 4749, "numnum:sum:POP_MIN": 566240, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 243794, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 384388, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 4, "numnum:sum:RANK_MAX": 35, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 31, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 2198148, "numnum:min:GEONAMEID": 2110394, "numnum:sum:GEONAMEID": 8646443, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 0, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 274020, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 561414, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 354233, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 641627, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 350364, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 637758, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 638000, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 925394, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 0, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 169, "numnum:min:MIN_AREAKM": 0, "numnum:sum:MIN_AREAKM": 299, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 399, "numnum:min:MAX_AREAKM": 0, "numnum:sum:MAX_AREAKM": 529, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 65, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 115, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 154, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 204, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 105, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 240, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 266, "numnum:min:MAX_PERKM": 0, "numnum:sum:MAX_PERKM": 401, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 65, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 149, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 166, "numnum:min:MAX_PERMI": 0, "numnum:sum:MAX_PERMI": 250, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 178.425, "numnum:min:MIN_BBXMIN": 0, "numnum:sum:MIN_BBXMIN": 527.733333, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 178.425, "numnum:min:MAX_BBXMIN": 0, "numnum:sum:MAX_BBXMIN": 527.807483, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 178.533333, "numnum:min:MIN_BBXMAX": 0, "numnum:sum:MIN_BBXMAX": 528.258333, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 178.533333, "numnum:min:MAX_BBXMAX": 0, "numnum:sum:MAX_BBXMAX": 528.358333, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 0, "numnum:min:MIN_BBYMIN": -41.35, "numnum:sum:MIN_BBYMIN": -96.60833400000002, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 0, "numnum:min:MAX_BBYMIN": -41.35, "numnum:sum:MAX_BBYMIN": -96.48162500000001, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 0, "numnum:min:MIN_BBYMAX": -41.2, "numnum:sum:MIN_BBYMAX": -96.05000000000001, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 0, "numnum:min:MAX_BBYMAX": -41.2, "numnum:sum:MAX_BBYMAX": -96.025, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 178.472885, "numnum:min:MEAN_BBXC": 0, "numnum:sum:MEAN_BBXC": 528.01585, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 0, "numnum:min:MEAN_BBYC": -41.285539, "numnum:sum:MEAN_BBYC": -96.289088, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 3, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 417910, "numnum:min:GN_POP": 4749, "numnum:sum:GN_POP": 505453, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 304, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -19668, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 381, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 381, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -36.9, "numnum:sum:UN_LAT": -36.9, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 174.76, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 174.76, "numnum:count:POP1950": 4, "numnum:max:POP1950": 319, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 319, "numnum:count:POP1955": 4, "numnum:max:POP1955": 387, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 387, "numnum:count:POP1960": 4, "numnum:max:POP1960": 440, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 440, "numnum:count:POP1965": 4, "numnum:max:POP1965": 532, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 532, "numnum:count:POP1970": 4, "numnum:max:POP1970": 635, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 635, "numnum:count:POP1975": 4, "numnum:max:POP1975": 729, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 729, "numnum:count:POP1980": 4, "numnum:max:POP1980": 774, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 774, "numnum:count:POP1985": 4, "numnum:max:POP1985": 812, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 812, "numnum:count:POP1990": 4, "numnum:max:POP1990": 870, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 870, "numnum:count:POP1995": 4, "numnum:max:POP1995": 976, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 976, "numnum:count:POP2000": 4, "numnum:max:POP2000": 1063, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1063, "numnum:count:POP2005": 4, "numnum:max:POP2005": 1189, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1189, "numnum:count:POP2010": 4, "numnum:max:POP2010": 1245, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1245, "numnum:count:POP2015": 4, "numnum:max:POP2015": 1321, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1321, "numnum:count:POP2020": 4, "numnum:max:POP2020": 1398, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1398, "numnum:count:POP2025": 4, "numnum:max:POP2025": 1441, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1441, "numnum:count:POP2050": 4, "numnum:max:POP2050": 1475, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1475, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.537565 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 19, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 770, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 40, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": -8.516652, "numnum:min:LATITUDE": -41.299974, "numnum:sum:LATITUDE": -131.97099899999999, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 179.216647, "numnum:min:LONGITUDE": 159.949766, "numnum:sum:LONGITUDE": 1035.473016, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 1245000, "numnum:min:POP_MAX": 4749, "numnum:sum:POP_MAX": 1938916, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 274020, "numnum:min:POP_MIN": 4749, "numnum:sum:POP_MIN": 658439, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 243794, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 468418, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 4, "numnum:sum:RANK_MAX": 50, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 46, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 2198148, "numnum:min:GEONAMEID": 2108502, "numnum:sum:GEONAMEID": 12890116, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 0, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 274020, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 645444, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 354233, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 725657, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 350364, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 721788, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 638000, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 1009424, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 0, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 169, "numnum:min:MIN_AREAKM": 0, "numnum:sum:MIN_AREAKM": 324, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 399, "numnum:min:MAX_AREAKM": 0, "numnum:sum:MAX_AREAKM": 554, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 65, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 125, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 154, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 214, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 105, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 289, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 266, "numnum:min:MAX_PERKM": 0, "numnum:sum:MAX_PERKM": 450, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 65, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 180, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 166, "numnum:min:MAX_PERMI": 0, "numnum:sum:MAX_PERMI": 281, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 178.425, "numnum:min:MIN_BBXMIN": 0, "numnum:sum:MIN_BBXMIN": 855.95, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 178.425, "numnum:min:MAX_BBXMIN": 0, "numnum:sum:MAX_BBXMIN": 856.0241500000001, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 178.533333, "numnum:min:MIN_BBXMAX": 0, "numnum:sum:MIN_BBXMAX": 856.6, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 178.533333, "numnum:min:MAX_BBXMAX": 0, "numnum:sum:MAX_BBXMAX": 856.7, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 0, "numnum:min:MIN_BBYMIN": -41.35, "numnum:sum:MIN_BBYMIN": -123.808334, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 0, "numnum:min:MAX_BBYMIN": -41.35, "numnum:sum:MAX_BBYMIN": -123.681625, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 0, "numnum:min:MIN_BBYMAX": -41.2, "numnum:sum:MIN_BBYMAX": -123.166666, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 0, "numnum:min:MAX_BBYMAX": -41.2, "numnum:sum:MAX_BBYMAX": -123.141666, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 178.472885, "numnum:min:MEAN_BBXC": 0, "numnum:sum:MEAN_BBXC": 856.295215, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 0, "numnum:min:MEAN_BBYC": -41.285539, "numnum:sum:MEAN_BBYC": -123.44717299999999, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 417910, "numnum:min:GN_POP": 4749, "numnum:sum:GN_POP": 597652, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 304, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -19649, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 381, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 381, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -36.9, "numnum:sum:UN_LAT": -36.9, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 174.76, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 174.76, "numnum:count:POP1950": 6, "numnum:max:POP1950": 319, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 319, "numnum:count:POP1955": 6, "numnum:max:POP1955": 387, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 387, "numnum:count:POP1960": 6, "numnum:max:POP1960": 440, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 440, "numnum:count:POP1965": 6, "numnum:max:POP1965": 532, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 532, "numnum:count:POP1970": 6, "numnum:max:POP1970": 635, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 635, "numnum:count:POP1975": 6, "numnum:max:POP1975": 729, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 729, "numnum:count:POP1980": 6, "numnum:max:POP1980": 774, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 774, "numnum:count:POP1985": 6, "numnum:max:POP1985": 812, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 812, "numnum:count:POP1990": 6, "numnum:max:POP1990": 870, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 870, "numnum:count:POP1995": 6, "numnum:max:POP1995": 976, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 976, "numnum:count:POP2000": 6, "numnum:max:POP2000": 1063, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1063, "numnum:count:POP2005": 6, "numnum:max:POP2005": 1189, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1189, "numnum:count:POP2010": 6, "numnum:max:POP2010": 1245, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1245, "numnum:count:POP2015": 6, "numnum:max:POP2015": 1321, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1321, "numnum:count:POP2020": 6, "numnum:max:POP2020": 1398, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1398, "numnum:count:POP2025": 6, "numnum:max:POP2025": 1441, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1441, "numnum:count:POP2050": 6, "numnum:max:POP2050": 1475, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1475, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 500, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 7, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 59.91669, "numnum:min:LATITUDE": 59.35076, "numnum:sum:LATITUDE": 119.26745, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 18.097335, "numnum:min:LONGITUDE": 10.749979, "numnum:sum:LONGITUDE": 28.847314, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1264000, "numnum:min:POP_MAX": 835000, "numnum:sum:POP_MAX": 2099000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1253309, "numnum:min:POP_MIN": 580000, "numnum:sum:POP_MIN": 1833309, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 701804, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 701804, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3143244, "numnum:min:GEONAMEID": 2673730, "numnum:sum:GEONAMEID": 5816974, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1337078, "numnum:min:MAX_POP10": 731563, "numnum:sum:MAX_POP10": 2068641, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1337078, "numnum:min:MAX_POP20": 731563, "numnum:sum:MAX_POP20": 2068641, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1337078, "numnum:min:MAX_POP50": 762374, "numnum:sum:MAX_POP50": 2099452, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1337078, "numnum:min:MAX_POP300": 762374, "numnum:sum:MAX_POP300": 2099452, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 1337078, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 1337078, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 694, "numnum:min:MIN_AREAKM": 329, "numnum:sum:MIN_AREAKM": 1023, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 694, "numnum:min:MAX_AREAKM": 362, "numnum:sum:MAX_AREAKM": 1056, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 268, "numnum:min:MIN_AREAMI": 127, "numnum:sum:MIN_AREAMI": 395, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 268, "numnum:min:MAX_AREAMI": 140, "numnum:sum:MAX_AREAMI": 408, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 629, "numnum:min:MIN_PERKM": 340, "numnum:sum:MIN_PERKM": 969, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 629, "numnum:min:MAX_PERKM": 390, "numnum:sum:MAX_PERKM": 1019, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 391, "numnum:min:MIN_PERMI": 211, "numnum:sum:MIN_PERMI": 602, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 391, "numnum:min:MAX_PERMI": 243, "numnum:sum:MAX_PERMI": 634, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 17.775, "numnum:min:MIN_BBXMIN": 10.333333, "numnum:sum:MIN_BBXMIN": 28.108333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 17.775, "numnum:min:MAX_BBXMIN": 10.440355, "numnum:sum:MAX_BBXMIN": 28.215355, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 18.408333, "numnum:min:MIN_BBXMAX": 11.091667, "numnum:sum:MIN_BBXMAX": 29.5, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 18.408333, "numnum:min:MAX_BBXMAX": 11.091667, "numnum:sum:MAX_BBXMAX": 29.5, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 59.708333, "numnum:min:MIN_BBYMIN": 59.091667, "numnum:sum:MIN_BBYMIN": 118.80000000000001, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 59.708333, "numnum:min:MAX_BBYMIN": 59.091667, "numnum:sum:MAX_BBYMIN": 118.80000000000001, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 60.066667, "numnum:min:MIN_BBYMAX": 59.558333, "numnum:sum:MIN_BBYMAX": 119.625, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 60.066667, "numnum:min:MAX_BBYMAX": 59.558333, "numnum:sum:MAX_BBYMAX": 119.625, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 18.044982, "numnum:min:MEAN_BBXC": 10.756508, "numnum:sum:MEAN_BBXC": 28.80149, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 59.906118, "numnum:min:MEAN_BBYC": 59.32868, "numnum:sum:MEAN_BBYC": 119.234798, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 26, "numnum:min:ADMIN1_COD": 12, "numnum:sum:ADMIN1_COD": 38, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1253309, "numnum:min:GN_POP": 580000, "numnum:sum:GN_POP": 1833309, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 20, "numnum:min:GTOPO30": 11, "numnum:sum:GTOPO30": 31, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 467, "numnum:min:UN_FID": 397, "numnum:sum:UN_FID": 864, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 59.93, "numnum:min:UN_LAT": 59.33, "numnum:sum:UN_LAT": 119.25999999999999, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 17.99, "numnum:min:UN_LONG": 10.71, "numnum:sum:UN_LONG": 28.7, "numnum:count:POP1950": 2, "numnum:max:POP1950": 741, "numnum:min:POP1950": 468, "numnum:sum:POP1950": 1209, "numnum:count:POP1955": 2, "numnum:max:POP1955": 772, "numnum:min:POP1955": 533, "numnum:sum:POP1955": 1305, "numnum:count:POP1960": 2, "numnum:max:POP1960": 805, "numnum:min:POP1960": 578, "numnum:sum:POP1960": 1383, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1003, "numnum:min:POP1965": 610, "numnum:sum:POP1965": 1613, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1035, "numnum:min:POP1970": 643, "numnum:sum:POP1970": 1678, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1015, "numnum:min:POP1975": 644, "numnum:sum:POP1975": 1659, "numnum:count:POP1980": 2, "numnum:max:POP1980": 992, "numnum:min:POP1980": 643, "numnum:sum:POP1980": 1635, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1012, "numnum:min:POP1985": 662, "numnum:sum:POP1985": 1674, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1038, "numnum:min:POP1990": 684, "numnum:sum:POP1990": 1722, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1138, "numnum:min:POP1995": 729, "numnum:sum:POP1995": 1867, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1206, "numnum:min:POP2000": 774, "numnum:sum:POP2000": 1980, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1248, "numnum:min:POP2005": 816, "numnum:sum:POP2005": 2064, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1264, "numnum:min:POP2010": 835, "numnum:sum:POP2010": 2099, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1285, "numnum:min:POP2015": 858, "numnum:sum:POP2015": 2143, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1308, "numnum:min:POP2020": 885, "numnum:sum:POP2020": 2193, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1326, "numnum:min:POP2025": 909, "numnum:sum:POP2025": 2235, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1343, "numnum:min:POP2050": 936, "numnum:sum:POP2050": 2279, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 10.766602, 59.910976 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ 10.766602, 59.910976 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "The Hague", "DIFFASCII": 0, "NAMEASCII": "The Hague", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official, legis", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Zuid-Holland", "ISO_A2": "NL", "LATITUDE": 52.080037, "LONGITUDE": 4.269961, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1406000, "POP_MIN": 501725, "POP_OTHER": 688599, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2747373, "LS_NAME": "The Hague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 708489, "MAX_POP20": 708489, "MAX_POP50": 2312867, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 195, "MAX_AREAKM": 710, "MIN_AREAMI": 75, "MAX_AREAMI": 274, "MIN_PERKM": 217, "MAX_PERKM": 764, "MIN_PERMI": 135, "MAX_PERMI": 475, "MIN_BBXMIN": 4.15, "MAX_BBXMIN": 4.15, "MIN_BBXMAX": 4.45, "MAX_BBXMAX": 4.749141, "MIN_BBYMIN": 51.766667, "MAX_BBYMIN": 51.958333, "MIN_BBYMAX": 52.158333, "MAX_BBYMAX": 52.158333, "MEAN_BBXC": 4.355912, "MEAN_BBYC": 52.021475, "COMPARE": 0, "GN_ASCII": "Den Haag", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 11, "GN_POP": 474292, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 4.262695, 52.079506 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 500, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 52.349969, "numnum:min:LATITUDE": 50.833317, "numnum:sum:LATITUDE": 103.18328600000001, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 4.91664, "numnum:min:LONGITUDE": 4.333317, "numnum:sum:LONGITUDE": 9.249957, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1743000, "numnum:min:POP_MAX": 1031000, "numnum:sum:POP_MAX": 2774000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1019022, "numnum:min:POP_MIN": 741636, "numnum:sum:POP_MIN": 1760658, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1490164, "numnum:min:POP_OTHER": 962488, "numnum:sum:POP_OTHER": 2452652, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2800866, "numnum:min:GEONAMEID": 2759794, "numnum:sum:GEONAMEID": 5560660, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1759840, "numnum:min:MAX_POP10": 1072902, "numnum:sum:MAX_POP10": 2832742, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1874437, "numnum:min:MAX_POP20": 1072902, "numnum:sum:MAX_POP20": 2947339, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3576473, "numnum:min:MAX_POP50": 1108173, "numnum:sum:MAX_POP50": 4684646, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3576473, "numnum:min:MAX_POP300": 1108173, "numnum:sum:MAX_POP300": 4684646, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 3576473, "numnum:min:MAX_POP310": 1108173, "numnum:sum:MAX_POP310": 4684646, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 300, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 900, "numnum:min:MIN_AREAKM": 275, "numnum:sum:MIN_AREAKM": 1175, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2344, "numnum:min:MAX_AREAKM": 300, "numnum:sum:MAX_AREAKM": 2644, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 347, "numnum:min:MIN_AREAMI": 106, "numnum:sum:MIN_AREAMI": 453, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 905, "numnum:min:MAX_AREAMI": 116, "numnum:sum:MAX_AREAMI": 1021, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 997, "numnum:min:MIN_PERKM": 293, "numnum:sum:MIN_PERKM": 1290, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 2982, "numnum:min:MAX_PERKM": 343, "numnum:sum:MAX_PERKM": 3325, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 620, "numnum:min:MIN_PERMI": 182, "numnum:sum:MIN_PERMI": 802, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1853, "numnum:min:MAX_PERMI": 213, "numnum:sum:MAX_PERMI": 2066, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 4.725, "numnum:min:MIN_BBXMIN": 3.575, "numnum:sum:MIN_BBXMIN": 8.3, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 4.757753, "numnum:min:MAX_BBXMIN": 3.983529, "numnum:sum:MAX_BBXMIN": 8.741282, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 5.058333, "numnum:min:MIN_BBXMAX": 4.666667, "numnum:sum:MIN_BBXMAX": 9.725000000000002, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 5.058333, "numnum:min:MAX_BBXMAX": 5, "numnum:sum:MAX_BBXMAX": 10.058333000000001, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 52.183333, "numnum:min:MIN_BBYMIN": 50.6, "numnum:sum:MIN_BBYMIN": 102.783333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 52.183333, "numnum:min:MAX_BBYMIN": 50.65, "numnum:sum:MAX_BBYMIN": 102.833333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 52.508333, "numnum:min:MIN_BBYMAX": 51.016667, "numnum:sum:MIN_BBYMAX": 103.525, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 52.533333, "numnum:min:MAX_BBYMAX": 51.408333, "numnum:sum:MAX_BBYMAX": 103.941666, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 4.871429, "numnum:min:MEAN_BBXC": 4.329159, "numnum:sum:MEAN_BBXC": 9.200588, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 52.348868, "numnum:min:MEAN_BBYC": 50.919556, "numnum:sum:MEAN_BBYC": 103.26842400000001, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 7, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 7, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1019022, "numnum:min:GN_POP": 741636, "numnum:sum:GN_POP": 1760658, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 48, "numnum:min:GTOPO30": -2, "numnum:sum:GTOPO30": 46, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 384, "numnum:min:UN_FID": 379, "numnum:sum:UN_FID": 763, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 52.37, "numnum:min:UN_LAT": 50.83, "numnum:sum:UN_LAT": 103.19999999999999, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 4.89, "numnum:min:UN_LONG": 4.36, "numnum:sum:UN_LONG": 9.25, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1415, "numnum:min:POP1950": 851, "numnum:sum:POP1950": 2266, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1449, "numnum:min:POP1955": 871, "numnum:sum:POP1955": 2320, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1485, "numnum:min:POP1960": 895, "numnum:sum:POP1960": 2380, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1525, "numnum:min:POP1965": 942, "numnum:sum:POP1965": 2467, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1568, "numnum:min:POP1970": 927, "numnum:sum:POP1970": 2495, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1610, "numnum:min:POP1975": 978, "numnum:sum:POP1975": 2588, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1654, "numnum:min:POP1980": 941, "numnum:sum:POP1980": 2595, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1654, "numnum:min:POP1985": 907, "numnum:sum:POP1985": 2561, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1680, "numnum:min:POP1990": 936, "numnum:sum:POP1990": 2616, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1715, "numnum:min:POP1995": 988, "numnum:sum:POP1995": 2703, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1733, "numnum:min:POP2000": 1005, "numnum:sum:POP2000": 2738, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1742, "numnum:min:POP2005": 1023, "numnum:sum:POP2005": 2765, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1743, "numnum:min:POP2010": 1031, "numnum:sum:POP2010": 2774, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1744, "numnum:min:POP2015": 1044, "numnum:sum:POP2015": 2788, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1744, "numnum:min:POP2020": 1064, "numnum:sum:POP2020": 2808, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1744, "numnum:min:POP2025": 1078, "numnum:sum:POP2025": 2822, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1744, "numnum:min:POP2050": 1089, "numnum:sum:POP2050": 2833, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "The Hague", "DIFFASCII": 0, "NAMEASCII": "The Hague", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official, legis", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Zuid-Holland", "ISO_A2": "NL", "LATITUDE": 52.080037, "LONGITUDE": 4.269961, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1406000, "POP_MIN": 501725, "POP_OTHER": 688599, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2747373, "LS_NAME": "The Hague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 708489, "MAX_POP20": 708489, "MAX_POP50": 2312867, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 195, "MAX_AREAKM": 710, "MIN_AREAMI": 75, "MAX_AREAMI": 274, "MIN_PERKM": 217, "MAX_PERKM": 764, "MIN_PERMI": 135, "MAX_PERMI": 475, "MIN_BBXMIN": 4.15, "MAX_BBXMIN": 4.15, "MIN_BBXMAX": 4.45, "MAX_BBXMAX": 4.749141, "MIN_BBYMIN": 51.766667, "MAX_BBYMIN": 51.958333, "MIN_BBYMAX": 52.158333, "MAX_BBYMAX": 52.158333, "MEAN_BBXC": 4.355912, "MEAN_BBYC": 52.021475, "COMPARE": 0, "GN_ASCII": "Den Haag", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 11, "GN_POP": 474292, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 4.262695, 52.079506 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Luxembourg", "DIFFASCII": 0, "NAMEASCII": "Luxembourg", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Luxembourg", "SOV_A3": "LUX", "ADM0NAME": "Luxembourg", "ADM0_A3": "LUX", "ADM1NAME": "Luxembourg", "ISO_A2": "LU", "LATITUDE": 49.61166, "LONGITUDE": 6.130003, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 107260, "POP_MIN": 76684, "POP_OTHER": 106219, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2960316, "LS_NAME": "Luxembourg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 107260, "MAX_POP20": 107260, "MAX_POP50": 107260, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 71, "MAX_PERKM": 71, "MIN_PERMI": 44, "MAX_PERMI": 44, "MIN_BBXMIN": 6.041667, "MAX_BBXMIN": 6.041667, "MIN_BBXMAX": 6.183333, "MAX_BBXMAX": 6.183333, "MIN_BBYMIN": 49.558333, "MAX_BBYMIN": 49.558333, "MIN_BBYMAX": 49.708333, "MAX_BBYMAX": 49.708333, "MEAN_BBXC": 6.125273, "MEAN_BBYC": 49.620833, "COMPARE": 0, "GN_ASCII": "Luxembourg", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 76684, "ELEVATION": 0, "GTOPO30": 259, "TIMEZONE": "Europe/Luxembourg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 49.610710 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Paris", "DIFFASCII": 0, "NAMEASCII": "Paris", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "French Republic", "SOV_A3": "FRA", "ADM0NAME": "France", "ADM0_A3": "FRA", "ADM1NAME": "Île-de-France", "ISO_A2": "FR", "LATITUDE": 48.866693, "LONGITUDE": 2.333335, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9904000, "POP_MIN": 11177, "POP_OTHER": 7142744, "RANK_MAX": 13, "RANK_MIN": 6, "GEONAMEID": 6942553, "MEGANAME": "Paris", "LS_NAME": "Paris", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7454172, "MAX_POP20": 7970513, "MAX_POP50": 9960588, "MAX_POP300": 9960588, "MAX_POP310": 9960588, "MAX_NATSCA": 300, "MIN_AREAKM": 1121, "MAX_AREAKM": 2415, "MIN_AREAMI": 433, "MAX_AREAMI": 932, "MIN_PERKM": 542, "MAX_PERKM": 1891, "MIN_PERMI": 337, "MAX_PERMI": 1175, "MIN_BBXMIN": 1.658333, "MAX_BBXMIN": 2.152754, "MIN_BBXMAX": 2.658336, "MAX_BBXMAX": 2.925, "MIN_BBYMIN": 48.491667, "MAX_BBYMIN": 48.591667, "MIN_BBYMAX": 49.183333, "MAX_BBYMAX": 49.183333, "MEAN_BBXC": 2.352277, "MEAN_BBYC": 48.839027, "COMPARE": 0, "GN_ASCII": "Paris", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 11177, "ELEVATION": 0, "GTOPO30": 228, "TIMEZONE": "America/Toronto", "GEONAMESNO": "GeoNames match general.", "UN_FID": 189, "UN_ADM0": "France", "UN_LAT": 48.88, "UN_LONG": 2.43, "POP1950": 6522, "POP1955": 6796, "POP1960": 7411, "POP1965": 7968, "POP1970": 8350, "POP1975": 8558, "POP1980": 8669, "POP1985": 8956, "POP1990": 9330, "POP1995": 9510, "POP2000": 9692, "POP2005": 9852, "POP2010": 9904, "POP2015": 9958, "POP2020": 10007, "POP2025": 10031, "POP2050": 10036, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 630, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 3, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 3, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 48.866693, "numnum:min:LATITUDE": 42.500001, "numnum:sum:LATITUDE": 91.366694, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 2.333335, "numnum:min:LONGITUDE": 1.516486, "numnum:sum:LONGITUDE": 3.849821, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 9904000, "numnum:min:POP_MAX": 53998, "numnum:sum:POP_MAX": 9957998, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 22256, "numnum:min:POP_MIN": 11177, "numnum:sum:POP_MIN": 33433, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 7142744, "numnum:min:POP_OTHER": 53371, "numnum:sum:POP_OTHER": 7196115, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 7, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 13, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 6942553, "numnum:min:GEONAMEID": 3130067, "numnum:sum:GEONAMEID": 10072620, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 7454172, "numnum:min:MAX_POP10": 53998, "numnum:sum:MAX_POP10": 7508170, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 7970513, "numnum:min:MAX_POP20": 53998, "numnum:sum:MAX_POP20": 8024511, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 9960588, "numnum:min:MAX_POP50": 53998, "numnum:sum:MAX_POP50": 10014586, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 9960588, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 9960588, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 9960588, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9960588, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1121, "numnum:min:MIN_AREAKM": 23, "numnum:sum:MIN_AREAKM": 1144, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2415, "numnum:min:MAX_AREAKM": 23, "numnum:sum:MAX_AREAKM": 2438, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 433, "numnum:min:MIN_AREAMI": 9, "numnum:sum:MIN_AREAMI": 442, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 932, "numnum:min:MAX_AREAMI": 9, "numnum:sum:MAX_AREAMI": 941, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 542, "numnum:min:MIN_PERKM": 49, "numnum:sum:MIN_PERKM": 591, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1891, "numnum:min:MAX_PERKM": 49, "numnum:sum:MAX_PERKM": 1940, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 337, "numnum:min:MIN_PERMI": 31, "numnum:sum:MIN_PERMI": 368, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1175, "numnum:min:MAX_PERMI": 31, "numnum:sum:MAX_PERMI": 1206, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 1.658333, "numnum:min:MIN_BBXMIN": 1.483333, "numnum:sum:MIN_BBXMIN": 3.141666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 2.152754, "numnum:min:MAX_BBXMIN": 1.483333, "numnum:sum:MAX_BBXMIN": 3.636087, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 2.658336, "numnum:min:MIN_BBXMAX": 1.591667, "numnum:sum:MIN_BBXMAX": 4.2500029999999999, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 2.925, "numnum:min:MAX_BBXMAX": 1.591667, "numnum:sum:MAX_BBXMAX": 4.516667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 48.491667, "numnum:min:MIN_BBYMIN": 42.483333, "numnum:sum:MIN_BBYMIN": 90.975, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 48.591667, "numnum:min:MAX_BBYMIN": 42.483333, "numnum:sum:MAX_BBYMIN": 91.075, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 49.183333, "numnum:min:MIN_BBYMAX": 42.55, "numnum:sum:MIN_BBYMAX": 91.73333299999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 49.183333, "numnum:min:MAX_BBYMAX": 42.55, "numnum:sum:MAX_BBYMAX": 91.73333299999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 2.352277, "numnum:min:MEAN_BBXC": 1.535473, "numnum:sum:MEAN_BBXC": 3.88775, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 48.839027, "numnum:min:MEAN_BBYC": 42.518131, "numnum:sum:MEAN_BBYC": 91.357158, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 52, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 60, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 11177, "numnum:min:GN_POP": 7890, "numnum:sum:GN_POP": 19067, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 687, "numnum:min:GTOPO30": 228, "numnum:sum:GTOPO30": 915, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 189, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 189, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 48.88, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 48.88, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 2.43, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 2.43, "numnum:count:POP1950": 2, "numnum:max:POP1950": 6522, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 6522, "numnum:count:POP1955": 2, "numnum:max:POP1955": 6796, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 6796, "numnum:count:POP1960": 2, "numnum:max:POP1960": 7411, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 7411, "numnum:count:POP1965": 2, "numnum:max:POP1965": 7968, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 7968, "numnum:count:POP1970": 2, "numnum:max:POP1970": 8350, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 8350, "numnum:count:POP1975": 2, "numnum:max:POP1975": 8558, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 8558, "numnum:count:POP1980": 2, "numnum:max:POP1980": 8669, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 8669, "numnum:count:POP1985": 2, "numnum:max:POP1985": 8956, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 8956, "numnum:count:POP1990": 2, "numnum:max:POP1990": 9330, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 9330, "numnum:count:POP1995": 2, "numnum:max:POP1995": 9510, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9510, "numnum:count:POP2000": 2, "numnum:max:POP2000": 9692, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 9692, "numnum:count:POP2005": 2, "numnum:max:POP2005": 9852, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 9852, "numnum:count:POP2010": 2, "numnum:max:POP2010": 9904, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 9904, "numnum:count:POP2015": 2, "numnum:max:POP2015": 9958, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9958, "numnum:count:POP2020": 2, "numnum:max:POP2020": 10007, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 10007, "numnum:count:POP2025": 2, "numnum:max:POP2025": 10031, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 10031, "numnum:count:POP2050": 2, "numnum:max:POP2050": 10036, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 10036, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.864715 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 230, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 50.833317, "numnum:min:LATITUDE": 49.61166, "numnum:sum:LATITUDE": 100.444977, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 6.130003, "numnum:min:LONGITUDE": 4.333317, "numnum:sum:LONGITUDE": 10.46332, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1743000, "numnum:min:POP_MAX": 107260, "numnum:sum:POP_MAX": 1850260, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1019022, "numnum:min:POP_MIN": 76684, "numnum:sum:POP_MIN": 1095706, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1490164, "numnum:min:POP_OTHER": 106219, "numnum:sum:POP_OTHER": 1596383, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 20, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2960316, "numnum:min:GEONAMEID": 2800866, "numnum:sum:GEONAMEID": 5761182, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1759840, "numnum:min:MAX_POP10": 107260, "numnum:sum:MAX_POP10": 1867100, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1874437, "numnum:min:MAX_POP20": 107260, "numnum:sum:MAX_POP20": 1981697, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3576473, "numnum:min:MAX_POP50": 107260, "numnum:sum:MAX_POP50": 3683733, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3576473, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 3576473, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 3576473, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3576473, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 900, "numnum:min:MIN_AREAKM": 60, "numnum:sum:MIN_AREAKM": 960, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2344, "numnum:min:MAX_AREAKM": 60, "numnum:sum:MAX_AREAKM": 2404, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 347, "numnum:min:MIN_AREAMI": 23, "numnum:sum:MIN_AREAMI": 370, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 905, "numnum:min:MAX_AREAMI": 23, "numnum:sum:MAX_AREAMI": 928, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 997, "numnum:min:MIN_PERKM": 71, "numnum:sum:MIN_PERKM": 1068, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 2982, "numnum:min:MAX_PERKM": 71, "numnum:sum:MAX_PERKM": 3053, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 620, "numnum:min:MIN_PERMI": 44, "numnum:sum:MIN_PERMI": 664, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1853, "numnum:min:MAX_PERMI": 44, "numnum:sum:MAX_PERMI": 1897, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 6.041667, "numnum:min:MIN_BBXMIN": 3.575, "numnum:sum:MIN_BBXMIN": 9.616667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 6.041667, "numnum:min:MAX_BBXMIN": 3.983529, "numnum:sum:MAX_BBXMIN": 10.025196000000001, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 6.183333, "numnum:min:MIN_BBXMAX": 4.666667, "numnum:sum:MIN_BBXMAX": 10.850000000000002, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 6.183333, "numnum:min:MAX_BBXMAX": 5, "numnum:sum:MAX_BBXMAX": 11.183333000000001, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 50.6, "numnum:min:MIN_BBYMIN": 49.558333, "numnum:sum:MIN_BBYMIN": 100.158333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 50.65, "numnum:min:MAX_BBYMIN": 49.558333, "numnum:sum:MAX_BBYMIN": 100.208333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 51.016667, "numnum:min:MIN_BBYMAX": 49.708333, "numnum:sum:MIN_BBYMAX": 100.725, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 51.408333, "numnum:min:MAX_BBYMAX": 49.708333, "numnum:sum:MAX_BBYMAX": 101.11666600000001, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 6.125273, "numnum:min:MEAN_BBXC": 4.329159, "numnum:sum:MEAN_BBXC": 10.454432, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 50.919556, "numnum:min:MEAN_BBYC": 49.620833, "numnum:sum:MEAN_BBYC": 100.540389, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 3, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 3, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1019022, "numnum:min:GN_POP": 76684, "numnum:sum:GN_POP": 1095706, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 259, "numnum:min:GTOPO30": 48, "numnum:sum:GTOPO30": 307, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 384, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 384, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 50.83, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 50.83, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 4.36, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 4.36, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1415, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1415, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1449, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1449, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1485, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1485, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1525, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1525, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1568, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1568, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1610, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1610, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1654, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1654, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1654, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1654, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1680, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1680, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1715, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1715, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1733, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1733, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1742, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1742, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1743, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1743, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1744, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1744, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1744, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1744, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1744, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1744, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1744, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1744, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.819818 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genève", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Paris", "DIFFASCII": 0, "NAMEASCII": "Paris", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "French Republic", "SOV_A3": "FRA", "ADM0NAME": "France", "ADM0_A3": "FRA", "ADM1NAME": "Île-de-France", "ISO_A2": "FR", "LATITUDE": 48.866693, "LONGITUDE": 2.333335, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9904000, "POP_MIN": 11177, "POP_OTHER": 7142744, "RANK_MAX": 13, "RANK_MIN": 6, "GEONAMEID": 6942553, "MEGANAME": "Paris", "LS_NAME": "Paris", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7454172, "MAX_POP20": 7970513, "MAX_POP50": 9960588, "MAX_POP300": 9960588, "MAX_POP310": 9960588, "MAX_NATSCA": 300, "MIN_AREAKM": 1121, "MAX_AREAKM": 2415, "MIN_AREAMI": 433, "MAX_AREAMI": 932, "MIN_PERKM": 542, "MAX_PERKM": 1891, "MIN_PERMI": 337, "MAX_PERMI": 1175, "MIN_BBXMIN": 1.658333, "MAX_BBXMIN": 2.152754, "MIN_BBXMAX": 2.658336, "MAX_BBXMAX": 2.925, "MIN_BBYMIN": 48.491667, "MAX_BBYMIN": 48.591667, "MIN_BBYMAX": 49.183333, "MAX_BBYMAX": 49.183333, "MEAN_BBXC": 2.352277, "MEAN_BBYC": 48.839027, "COMPARE": 0, "GN_ASCII": "Paris", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 11177, "ELEVATION": 0, "GTOPO30": 228, "TIMEZONE": "America/Toronto", "GEONAMESNO": "GeoNames match general.", "UN_FID": 189, "UN_ADM0": "France", "UN_LAT": 48.88, "UN_LONG": 2.43, "POP1950": 6522, "POP1955": 6796, "POP1960": 7411, "POP1965": 7968, "POP1970": 8350, "POP1975": 8558, "POP1980": 8669, "POP1985": 8956, "POP1990": 9330, "POP1995": 9510, "POP2000": 9692, "POP2005": 9852, "POP2010": 9904, "POP2015": 9958, "POP2020": 10007, "POP2025": 10031, "POP2050": 10036, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 630, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 3, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 3, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 48.866693, "numnum:min:LATITUDE": 42.500001, "numnum:sum:LATITUDE": 91.366694, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 2.333335, "numnum:min:LONGITUDE": 1.516486, "numnum:sum:LONGITUDE": 3.849821, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 9904000, "numnum:min:POP_MAX": 53998, "numnum:sum:POP_MAX": 9957998, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 22256, "numnum:min:POP_MIN": 11177, "numnum:sum:POP_MIN": 33433, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 7142744, "numnum:min:POP_OTHER": 53371, "numnum:sum:POP_OTHER": 7196115, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 7, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 13, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 6942553, "numnum:min:GEONAMEID": 3130067, "numnum:sum:GEONAMEID": 10072620, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 7454172, "numnum:min:MAX_POP10": 53998, "numnum:sum:MAX_POP10": 7508170, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 7970513, "numnum:min:MAX_POP20": 53998, "numnum:sum:MAX_POP20": 8024511, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 9960588, "numnum:min:MAX_POP50": 53998, "numnum:sum:MAX_POP50": 10014586, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 9960588, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 9960588, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 9960588, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9960588, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1121, "numnum:min:MIN_AREAKM": 23, "numnum:sum:MIN_AREAKM": 1144, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2415, "numnum:min:MAX_AREAKM": 23, "numnum:sum:MAX_AREAKM": 2438, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 433, "numnum:min:MIN_AREAMI": 9, "numnum:sum:MIN_AREAMI": 442, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 932, "numnum:min:MAX_AREAMI": 9, "numnum:sum:MAX_AREAMI": 941, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 542, "numnum:min:MIN_PERKM": 49, "numnum:sum:MIN_PERKM": 591, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1891, "numnum:min:MAX_PERKM": 49, "numnum:sum:MAX_PERKM": 1940, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 337, "numnum:min:MIN_PERMI": 31, "numnum:sum:MIN_PERMI": 368, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1175, "numnum:min:MAX_PERMI": 31, "numnum:sum:MAX_PERMI": 1206, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 1.658333, "numnum:min:MIN_BBXMIN": 1.483333, "numnum:sum:MIN_BBXMIN": 3.141666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 2.152754, "numnum:min:MAX_BBXMIN": 1.483333, "numnum:sum:MAX_BBXMIN": 3.636087, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 2.658336, "numnum:min:MIN_BBXMAX": 1.591667, "numnum:sum:MIN_BBXMAX": 4.2500029999999999, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 2.925, "numnum:min:MAX_BBXMAX": 1.591667, "numnum:sum:MAX_BBXMAX": 4.516667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 48.491667, "numnum:min:MIN_BBYMIN": 42.483333, "numnum:sum:MIN_BBYMIN": 90.975, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 48.591667, "numnum:min:MAX_BBYMIN": 42.483333, "numnum:sum:MAX_BBYMIN": 91.075, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 49.183333, "numnum:min:MIN_BBYMAX": 42.55, "numnum:sum:MIN_BBYMAX": 91.73333299999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 49.183333, "numnum:min:MAX_BBYMAX": 42.55, "numnum:sum:MAX_BBYMAX": 91.73333299999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 2.352277, "numnum:min:MEAN_BBXC": 1.535473, "numnum:sum:MEAN_BBXC": 3.88775, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 48.839027, "numnum:min:MEAN_BBYC": 42.518131, "numnum:sum:MEAN_BBYC": 91.357158, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 52, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 60, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 11177, "numnum:min:GN_POP": 7890, "numnum:sum:GN_POP": 19067, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 687, "numnum:min:GTOPO30": 228, "numnum:sum:GTOPO30": 915, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 189, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 189, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 48.88, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 48.88, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 2.43, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 2.43, "numnum:count:POP1950": 2, "numnum:max:POP1950": 6522, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 6522, "numnum:count:POP1955": 2, "numnum:max:POP1955": 6796, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 6796, "numnum:count:POP1960": 2, "numnum:max:POP1960": 7411, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 7411, "numnum:count:POP1965": 2, "numnum:max:POP1965": 7968, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 7968, "numnum:count:POP1970": 2, "numnum:max:POP1970": 8350, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 8350, "numnum:count:POP1975": 2, "numnum:max:POP1975": 8558, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 8558, "numnum:count:POP1980": 2, "numnum:max:POP1980": 8669, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 8669, "numnum:count:POP1985": 2, "numnum:max:POP1985": 8956, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 8956, "numnum:count:POP1990": 2, "numnum:max:POP1990": 9330, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 9330, "numnum:count:POP1995": 2, "numnum:max:POP1995": 9510, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9510, "numnum:count:POP2000": 2, "numnum:max:POP2000": 9692, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 9692, "numnum:count:POP2005": 2, "numnum:max:POP2005": 9852, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 9852, "numnum:count:POP2010": 2, "numnum:max:POP2010": 9904, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 9904, "numnum:count:POP2015": 2, "numnum:max:POP2015": 9958, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9958, "numnum:count:POP2020": 2, "numnum:max:POP2020": 10007, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 10007, "numnum:count:POP2025": 2, "numnum:max:POP2025": 10031, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 10031, "numnum:count:POP2050": 2, "numnum:max:POP2050": 10036, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 10036, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.864715 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bern", "DIFFASCII": 0, "NAMEASCII": "Bern", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Bern", "ISO_A2": "CH", "LATITUDE": 46.916683, "LONGITUDE": 7.466975, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 275329, "POP_MIN": 121631, "POP_OTHER": 267814, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2661552, "LS_NAME": "Bern", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 275329, "MAX_POP20": 275329, "MAX_POP50": 275329, "MAX_POP300": 275329, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 78, "MAX_AREAKM": 78, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 46.9, "MAX_BBYMIN": 46.9, "MIN_BBYMAX": 47.041667, "MAX_BBYMAX": 47.041667, "MEAN_BBXC": 7.453227, "MEAN_BBYC": 46.958239, "COMPARE": 0, "GN_ASCII": "Bern", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 121631, "ELEVATION": 0, "GTOPO30": 527, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genève", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 7, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 20, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 20, "numnum:sum:NATSCALE": 600, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 22, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 1, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 1, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 55.678564, "numnum:min:LATITUDE": 43.739646, "numnum:sum:LATITUDE": 239.67862499999999, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 12.563486, "numnum:min:LONGITUDE": 6.140028, "numnum:sum:LONGITUDE": 43.094071, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 1240000, "numnum:min:POP_MAX": 36281, "numnum:sum:POP_MAX": 2672981, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 1085000, "numnum:min:POP_MIN": 5342, "numnum:sum:POP_MIN": 1440729, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 1038288, "numnum:min:POP_OTHER": 33009, "numnum:sum:POP_OTHER": 1949766, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 48, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 42, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 3042030, "numnum:min:GEONAMEID": 2618425, "numnum:sum:GEONAMEID": 13976111, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 1124323, "numnum:min:MAX_POP10": 45442, "numnum:sum:MAX_POP10": 2084059, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 1230007, "numnum:min:MAX_POP20": 45442, "numnum:sum:MAX_POP20": 2189743, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 1256924, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 2171218, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 1256924, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 1532253, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 1256924, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 1256924, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 520, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 438, "numnum:min:MIN_AREAKM": 36, "numnum:sum:MIN_AREAKM": 776, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 577, "numnum:min:MAX_AREAKM": 36, "numnum:sum:MAX_AREAKM": 915, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 169, "numnum:min:MIN_AREAMI": 14, "numnum:sum:MIN_AREAMI": 299, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 223, "numnum:min:MAX_AREAMI": 14, "numnum:sum:MAX_AREAMI": 353, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 348, "numnum:min:MIN_PERKM": 57, "numnum:sum:MIN_PERKM": 795, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 542, "numnum:min:MAX_PERKM": 57, "numnum:sum:MAX_PERKM": 989, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 216, "numnum:min:MIN_PERMI": 35, "numnum:sum:MIN_PERMI": 494, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 337, "numnum:min:MAX_PERMI": 35, "numnum:sum:MAX_PERMI": 615, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 12.116667, "numnum:min:MIN_BBXMIN": 5.966667, "numnum:sum:MIN_BBXMIN": 42.241667, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 12.316667, "numnum:min:MAX_BBXMIN": 5.966667, "numnum:sum:MAX_BBXMIN": 42.441667, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 12.658333, "numnum:min:MIN_BBXMAX": 6.325, "numnum:sum:MIN_BBXMAX": 43.608332, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 12.658333, "numnum:min:MAX_BBXMAX": 6.325, "numnum:sum:MAX_BBXMAX": 43.608332, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 55.4, "numnum:min:MIN_BBYMIN": 43.716667, "numnum:sum:MIN_BBYMIN": 239.241667, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 55.583333, "numnum:min:MAX_BBYMIN": 43.716667, "numnum:sum:MAX_BBYMIN": 239.425, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 55.927962, "numnum:min:MIN_BBYMAX": 43.8, "numnum:sum:MIN_BBYMAX": 240.29462900000002, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 56.008333, "numnum:min:MAX_BBYMAX": 43.8, "numnum:sum:MAX_BBYMAX": 240.375, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 12.437175, "numnum:min:MEAN_BBXC": 6.1424, "numnum:sum:MEAN_BBXC": 42.979065000000009, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 55.716213, "numnum:min:MEAN_BBYC": 43.754167, "numnum:sum:MEAN_BBYC": 239.80552400000003, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 17, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 28, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 1153615, "numnum:min:GN_POP": 1020, "numnum:sum:GN_POP": 1465444, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 711, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8382, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 175, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 175, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 55.71, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 55.71, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 12.54, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 12.54, "numnum:count:POP1950": 5, "numnum:max:POP1950": 1216, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1216, "numnum:count:POP1955": 5, "numnum:max:POP1955": 1227, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1227, "numnum:count:POP1960": 5, "numnum:max:POP1960": 1284, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1284, "numnum:count:POP1965": 5, "numnum:max:POP1965": 1373, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1373, "numnum:count:POP1970": 5, "numnum:max:POP1970": 1380, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1380, "numnum:count:POP1975": 5, "numnum:max:POP1975": 1172, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1172, "numnum:count:POP1980": 5, "numnum:max:POP1980": 1096, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1096, "numnum:count:POP1985": 5, "numnum:max:POP1985": 1056, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1056, "numnum:count:POP1990": 5, "numnum:max:POP1990": 1035, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1035, "numnum:count:POP1995": 5, "numnum:max:POP1995": 1048, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1048, "numnum:count:POP2000": 5, "numnum:max:POP2000": 1077, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1077, "numnum:count:POP2005": 5, "numnum:max:POP2005": 1085, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1085, "numnum:count:POP2010": 5, "numnum:max:POP2010": 1085, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1085, "numnum:count:POP2015": 5, "numnum:max:POP2015": 1087, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1087, "numnum:count:POP2020": 5, "numnum:max:POP2020": 1092, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1092, "numnum:count:POP2025": 5, "numnum:max:POP2025": 1095, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1095, "numnum:count:POP2050": 5, "numnum:max:POP2050": 1096, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1096, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 7, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 15, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 20, "numnum:sum:NATSCALE": 250, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 1, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 1, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 55.678564, "numnum:min:LATITUDE": 43.739646, "numnum:sum:LATITUDE": 146.551934, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 12.563486, "numnum:min:LONGITUDE": 7.406913, "numnum:sum:LONGITUDE": 29.487068, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1085000, "numnum:min:POP_MAX": 36281, "numnum:sum:POP_MAX": 1157652, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1085000, "numnum:min:POP_MIN": 5342, "numnum:sum:POP_MIN": 1126713, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1038288, "numnum:min:POP_OTHER": 33009, "numnum:sum:POP_OTHER": 1173668, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3042030, "numnum:min:GEONAMEID": 2618425, "numnum:sum:GEONAMEID": 8653913, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1124323, "numnum:min:MAX_POP10": 45442, "numnum:sum:MAX_POP10": 1278308, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1230007, "numnum:min:MAX_POP20": 45442, "numnum:sum:MAX_POP20": 1383992, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1256924, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 1365467, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1256924, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 1256924, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 1256924, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 1256924, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 370, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 438, "numnum:min:MIN_AREAKM": 36, "numnum:sum:MIN_AREAKM": 519, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 577, "numnum:min:MAX_AREAKM": 36, "numnum:sum:MAX_AREAKM": 658, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 169, "numnum:min:MIN_AREAMI": 14, "numnum:sum:MIN_AREAMI": 200, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 223, "numnum:min:MAX_AREAMI": 14, "numnum:sum:MAX_AREAMI": 254, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 348, "numnum:min:MIN_PERKM": 57, "numnum:sum:MIN_PERKM": 495, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 542, "numnum:min:MAX_PERKM": 57, "numnum:sum:MAX_PERKM": 689, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 216, "numnum:min:MIN_PERMI": 35, "numnum:sum:MIN_PERMI": 307, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 337, "numnum:min:MAX_PERMI": 35, "numnum:sum:MAX_PERMI": 428, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 12.116667, "numnum:min:MIN_BBXMIN": 7.35, "numnum:sum:MIN_BBXMIN": 28.9, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 12.316667, "numnum:min:MAX_BBXMIN": 7.35, "numnum:sum:MAX_BBXMIN": 29.1, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 12.658333, "numnum:min:MIN_BBXMAX": 7.533333, "numnum:sum:MIN_BBXMAX": 29.749999000000004, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 12.658333, "numnum:min:MAX_BBXMAX": 7.533333, "numnum:sum:MAX_BBXMAX": 29.749999000000004, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 55.4, "numnum:min:MIN_BBYMIN": 43.716667, "numnum:sum:MIN_BBYMIN": 146.208334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 55.583333, "numnum:min:MAX_BBYMIN": 43.716667, "numnum:sum:MAX_BBYMIN": 146.391667, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 55.927962, "numnum:min:MIN_BBYMAX": 43.8, "numnum:sum:MIN_BBYMAX": 146.961295, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 56.008333, "numnum:min:MAX_BBYMAX": 43.8, "numnum:sum:MAX_BBYMAX": 147.041666, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 12.437175, "numnum:min:MEAN_BBXC": 7.442529, "numnum:sum:MEAN_BBXC": 29.383438, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 55.716213, "numnum:min:MEAN_BBYC": 43.754167, "numnum:sum:MEAN_BBYC": 146.63785800000003, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 17, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 28, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1153615, "numnum:min:GN_POP": 1020, "numnum:sum:GN_POP": 1159832, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 711, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9284, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 175, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 175, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 55.71, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 55.71, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 12.54, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 12.54, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1216, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1216, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1227, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1227, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1284, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1284, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1373, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1373, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1380, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1380, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1172, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1172, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1096, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1096, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1056, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1056, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1035, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1035, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1048, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1048, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1077, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1077, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1085, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1085, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1085, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1085, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1087, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1087, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1092, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1092, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1095, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1095, "numnum:count:POP2050": 3, "numnum:max:POP2050": 1096, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1096, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 9.536133, 47.129951 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 700, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 15, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 52.521819, "numnum:min:LATITUDE": 50.083337, "numnum:sum:LATITUDE": 154.855157, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 21, "numnum:min:LONGITUDE": 13.401549, "numnum:sum:LONGITUDE": 48.867529, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3406000, "numnum:min:POP_MAX": 1162000, "numnum:sum:POP_MAX": 6275000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 3094014, "numnum:min:POP_MIN": 2087, "numnum:sum:POP_MIN": 4798240, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3013258, "numnum:min:POP_OTHER": 1088042, "numnum:sum:POP_OTHER": 6113731, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 28, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 4548393, "numnum:min:GEONAMEID": 756135, "numnum:sum:GEONAMEID": 8254687, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3094014, "numnum:min:MAX_POP10": 1115771, "numnum:sum:MAX_POP10": 6338948, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3093307, "numnum:min:MAX_POP20": 1115771, "numnum:sum:MAX_POP20": 6338241, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3503466, "numnum:min:MAX_POP50": 1115771, "numnum:sum:MAX_POP50": 6748400, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3503466, "numnum:min:MAX_POP300": 1115771, "numnum:sum:MAX_POP300": 6748400, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 3503466, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3503466, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 811, "numnum:min:MIN_AREAKM": 317, "numnum:sum:MIN_AREAKM": 1930, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1021, "numnum:min:MAX_AREAKM": 317, "numnum:sum:MAX_AREAKM": 2140, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 313, "numnum:min:MIN_AREAMI": 122, "numnum:sum:MIN_AREAMI": 745, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 394, "numnum:min:MAX_AREAMI": 122, "numnum:sum:MAX_AREAMI": 826, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 759, "numnum:min:MIN_PERKM": 249, "numnum:sum:MIN_PERKM": 1490, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 759, "numnum:min:MAX_PERKM": 249, "numnum:sum:MAX_PERKM": 1717, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 471, "numnum:min:MIN_PERMI": 155, "numnum:sum:MIN_PERMI": 926, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 471, "numnum:min:MAX_PERMI": 155, "numnum:sum:MAX_PERMI": 1067, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 20.666667, "numnum:min:MIN_BBXMIN": 12.958333, "numnum:sum:MIN_BBXMIN": 47.891667, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 20.666667, "numnum:min:MAX_BBXMIN": 13.193843, "numnum:sum:MAX_BBXMIN": 48.127177, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 21.358333, "numnum:min:MIN_BBXMAX": 13.925, "numnum:sum:MIN_BBXMAX": 49.9, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 21.358333, "numnum:min:MAX_BBXMAX": 13.925, "numnum:sum:MAX_BBXMAX": 49.9, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 52.275, "numnum:min:MIN_BBYMIN": 49.95, "numnum:sum:MIN_BBYMIN": 154.258333, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 52.275, "numnum:min:MAX_BBYMIN": 49.95, "numnum:sum:MAX_BBYMIN": 154.258333, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 52.708333, "numnum:min:MIN_BBYMAX": 50.183333, "numnum:sum:MIN_BBYMAX": 155.324999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 52.708333, "numnum:min:MAX_BBYMAX": 50.183333, "numnum:sum:MAX_BBYMAX": 155.324999, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 21.031458, "numnum:min:MEAN_BBXC": 13.418329, "numnum:sum:MEAN_BBXC": 48.895344, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 52.503658, "numnum:min:MEAN_BBYC": 50.073451, "numnum:sum:MEAN_BBYC": 154.80802500000002, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 78, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 94, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 3426354, "numnum:min:GN_POP": 2087, "numnum:sum:GN_POP": 5130580, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 308, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 382, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 306, "numnum:min:GTOPO30": 35, "numnum:sum:GTOPO30": 435, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 418, "numnum:min:UN_FID": 173, "numnum:sum:UN_FID": 783, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 52.51, "numnum:min:UN_LAT": 50.1, "numnum:sum:UN_LAT": 154.85, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 21.01, "numnum:min:UN_LONG": 13.32, "numnum:sum:UN_LONG": 48.78, "numnum:count:POP1950": 3, "numnum:max:POP1950": 3352, "numnum:min:POP1950": 768, "numnum:sum:POP1950": 5055, "numnum:count:POP1955": 3, "numnum:max:POP1955": 3299, "numnum:min:POP1955": 942, "numnum:sum:POP1955": 5208, "numnum:count:POP1960": 3, "numnum:max:POP1960": 3260, "numnum:min:POP1960": 1001, "numnum:sum:POP1960": 5380, "numnum:count:POP1965": 3, "numnum:max:POP1965": 3232, "numnum:min:POP1965": 1038, "numnum:sum:POP1965": 5482, "numnum:count:POP1970": 3, "numnum:max:POP1970": 3206, "numnum:min:POP1970": 1076, "numnum:sum:POP1970": 5582, "numnum:count:POP1975": 3, "numnum:max:POP1975": 3130, "numnum:min:POP1975": 1126, "numnum:sum:POP1975": 5700, "numnum:count:POP1980": 3, "numnum:max:POP1980": 3056, "numnum:min:POP1980": 1179, "numnum:sum:POP1980": 5800, "numnum:count:POP1985": 3, "numnum:max:POP1985": 3060, "numnum:min:POP1985": 1197, "numnum:sum:POP1985": 5853, "numnum:count:POP1990": 3, "numnum:max:POP1990": 3422, "numnum:min:POP1990": 1212, "numnum:sum:POP1990": 6262, "numnum:count:POP1995": 3, "numnum:max:POP1995": 3471, "numnum:min:POP1995": 1194, "numnum:sum:POP1995": 6317, "numnum:count:POP2000": 3, "numnum:max:POP2000": 3384, "numnum:min:POP2000": 1172, "numnum:sum:POP2000": 6222, "numnum:count:POP2005": 3, "numnum:max:POP2005": 3391, "numnum:min:POP2005": 1164, "numnum:sum:POP2005": 6248, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3406, "numnum:min:POP2010": 1162, "numnum:sum:POP2010": 6275, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3423, "numnum:min:POP2015": 1160, "numnum:sum:POP2015": 6307, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3434, "numnum:min:POP2020": 1159, "numnum:sum:POP2020": 6328, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3436, "numnum:min:POP2025": 1159, "numnum:sum:POP2025": 6331, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3436, "numnum:min:POP2050": 1159, "numnum:sum:POP2050": 6331, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.509535 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 500, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 10, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 52.521819, "numnum:min:LATITUDE": 50.083337, "numnum:sum:LATITUDE": 102.605156, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 14.46598, "numnum:min:LONGITUDE": 13.401549, "numnum:sum:LONGITUDE": 27.867528999999999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3406000, "numnum:min:POP_MAX": 1162000, "numnum:sum:POP_MAX": 4568000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3094014, "numnum:min:POP_MIN": 2087, "numnum:sum:POP_MIN": 3096101, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3013258, "numnum:min:POP_OTHER": 1088042, "numnum:sum:POP_OTHER": 4101300, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 16, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 4548393, "numnum:min:GEONAMEID": 2950159, "numnum:sum:GEONAMEID": 7498552, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3094014, "numnum:min:MAX_POP10": 1115771, "numnum:sum:MAX_POP10": 4209785, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3093307, "numnum:min:MAX_POP20": 1115771, "numnum:sum:MAX_POP20": 4209078, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3503466, "numnum:min:MAX_POP50": 1115771, "numnum:sum:MAX_POP50": 4619237, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3503466, "numnum:min:MAX_POP300": 1115771, "numnum:sum:MAX_POP300": 4619237, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 3503466, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3503466, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 811, "numnum:min:MIN_AREAKM": 317, "numnum:sum:MIN_AREAKM": 1128, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1021, "numnum:min:MAX_AREAKM": 317, "numnum:sum:MAX_AREAKM": 1338, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 313, "numnum:min:MIN_AREAMI": 122, "numnum:sum:MIN_AREAMI": 435, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 394, "numnum:min:MAX_AREAMI": 122, "numnum:sum:MAX_AREAMI": 516, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 482, "numnum:min:MIN_PERKM": 249, "numnum:sum:MIN_PERKM": 731, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 709, "numnum:min:MAX_PERKM": 249, "numnum:sum:MAX_PERKM": 958, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 300, "numnum:min:MIN_PERMI": 155, "numnum:sum:MIN_PERMI": 455, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 441, "numnum:min:MAX_PERMI": 155, "numnum:sum:MAX_PERMI": 596, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 14.266667, "numnum:min:MIN_BBXMIN": 12.958333, "numnum:sum:MIN_BBXMIN": 27.225, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 14.266667, "numnum:min:MAX_BBXMIN": 13.193843, "numnum:sum:MAX_BBXMIN": 27.46051, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 14.616667, "numnum:min:MIN_BBXMAX": 13.925, "numnum:sum:MIN_BBXMAX": 28.541667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 14.616667, "numnum:min:MAX_BBXMAX": 13.925, "numnum:sum:MAX_BBXMAX": 28.541667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 52.275, "numnum:min:MIN_BBYMIN": 49.95, "numnum:sum:MIN_BBYMIN": 102.225, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 52.275, "numnum:min:MAX_BBYMIN": 49.95, "numnum:sum:MAX_BBYMIN": 102.225, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 52.708333, "numnum:min:MIN_BBYMAX": 50.183333, "numnum:sum:MIN_BBYMAX": 102.891666, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 52.708333, "numnum:min:MAX_BBYMAX": 50.183333, "numnum:sum:MAX_BBYMAX": 102.891666, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 14.445557, "numnum:min:MEAN_BBXC": 13.418329, "numnum:sum:MEAN_BBXC": 27.863886, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 52.503658, "numnum:min:MEAN_BBYC": 50.073451, "numnum:sum:MEAN_BBYC": 102.57710900000001, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 16, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 16, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 3426354, "numnum:min:GN_POP": 2087, "numnum:sum:GN_POP": 3428441, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 308, "numnum:min:ELEVATION": 74, "numnum:sum:ELEVATION": 382, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 306, "numnum:min:GTOPO30": 35, "numnum:sum:GTOPO30": 341, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 192, "numnum:min:UN_FID": 173, "numnum:sum:UN_FID": 365, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 52.51, "numnum:min:UN_LAT": 50.1, "numnum:sum:UN_LAT": 102.61, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 14.45, "numnum:min:UN_LONG": 13.32, "numnum:sum:UN_LONG": 27.77, "numnum:count:POP1950": 2, "numnum:max:POP1950": 3352, "numnum:min:POP1950": 935, "numnum:sum:POP1950": 4287, "numnum:count:POP1955": 2, "numnum:max:POP1955": 3299, "numnum:min:POP1955": 967, "numnum:sum:POP1955": 4266, "numnum:count:POP1960": 2, "numnum:max:POP1960": 3260, "numnum:min:POP1960": 1001, "numnum:sum:POP1960": 4261, "numnum:count:POP1965": 2, "numnum:max:POP1965": 3232, "numnum:min:POP1965": 1038, "numnum:sum:POP1965": 4270, "numnum:count:POP1970": 2, "numnum:max:POP1970": 3206, "numnum:min:POP1970": 1076, "numnum:sum:POP1970": 4282, "numnum:count:POP1975": 2, "numnum:max:POP1975": 3130, "numnum:min:POP1975": 1126, "numnum:sum:POP1975": 4256, "numnum:count:POP1980": 2, "numnum:max:POP1980": 3056, "numnum:min:POP1980": 1179, "numnum:sum:POP1980": 4235, "numnum:count:POP1985": 2, "numnum:max:POP1985": 3060, "numnum:min:POP1985": 1197, "numnum:sum:POP1985": 4257, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3422, "numnum:min:POP1990": 1212, "numnum:sum:POP1990": 4634, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3471, "numnum:min:POP1995": 1194, "numnum:sum:POP1995": 4665, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3384, "numnum:min:POP2000": 1172, "numnum:sum:POP2000": 4556, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3391, "numnum:min:POP2005": 1164, "numnum:sum:POP2005": 4555, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3406, "numnum:min:POP2010": 1162, "numnum:sum:POP2010": 4568, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3423, "numnum:min:POP2015": 1160, "numnum:sum:POP2015": 4583, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3434, "numnum:min:POP2020": 1159, "numnum:sum:POP2020": 4593, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3436, "numnum:min:POP2025": 1159, "numnum:sum:POP2025": 4595, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3436, "numnum:min:POP2050": 1159, "numnum:sum:POP2050": 4595, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.509535 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Vienna", "NAMEPAR": "Wien", "DIFFASCII": 0, "NAMEASCII": "Vienna", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Austria", "SOV_A3": "AUT", "ADM0NAME": "Austria", "ADM0_A3": "AUT", "ADM1NAME": "Wien", "ISO_A2": "AT", "LATITUDE": 48.200015, "LONGITUDE": 16.366639, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2400000, "POP_MIN": 1731000, "POP_OTHER": 1480886, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2761369, "MEGANAME": "Wien", "LS_NAME": "Vienna", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1561335, "MAX_POP20": 1610331, "MAX_POP50": 1610331, "MAX_POP300": 1610331, "MAX_POP310": 1610331, "MAX_NATSCA": 300, "MIN_AREAKM": 488, "MAX_AREAKM": 533, "MIN_AREAMI": 189, "MAX_AREAMI": 206, "MIN_PERKM": 444, "MAX_PERKM": 497, "MIN_PERMI": 276, "MAX_PERMI": 309, "MIN_BBXMIN": 16.133333, "MAX_BBXMIN": 16.133333, "MIN_BBXMAX": 16.583333, "MAX_BBXMAX": 16.583333, "MIN_BBYMIN": 47.916667, "MAX_BBYMIN": 48.008333, "MIN_BBYMAX": 48.383333, "MAX_BBYMAX": 48.383333, "MEAN_BBXC": 16.351672, "MEAN_BBYC": 48.18247, "COMPARE": 0, "GN_ASCII": "Vienna", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1691468, "ELEVATION": 171, "GTOPO30": 164, "TIMEZONE": "Europe/Vienna", "GEONAMESNO": "GeoNames match general.", "UN_FID": 321, "UN_ADM0": "Austria", "UN_LAT": 48.2, "UN_LONG": 16.32, "POP1950": 2086, "POP1955": 2087, "POP1960": 2089, "POP1965": 2080, "POP1970": 2070, "POP1975": 2059, "POP1980": 2049, "POP1985": 2069, "POP1990": 2096, "POP1995": 2127, "POP2000": 2158, "POP2005": 2264, "POP2010": 2315, "POP2015": 2385, "POP2020": 2451, "POP2025": 2476, "POP2050": 2496, "CITYALT": "Vienna", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 350, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 7, "numnum:sum:LABELRANK": 15, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 48.200015, "numnum:min:LATITUDE": 46.055288, "numnum:sum:LATITUDE": 94.255303, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 16.366639, "numnum:min:LONGITUDE": 14.514969, "numnum:sum:LONGITUDE": 30.881608, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2400000, "numnum:min:POP_MAX": 314807, "numnum:sum:POP_MAX": 2714807, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1731000, "numnum:min:POP_MIN": 255115, "numnum:sum:POP_MIN": 1986115, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1480886, "numnum:min:POP_OTHER": 256316, "numnum:sum:POP_OTHER": 1737202, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3196359, "numnum:min:GEONAMEID": 2761369, "numnum:sum:GEONAMEID": 5957728, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1561335, "numnum:min:MAX_POP10": 314807, "numnum:sum:MAX_POP10": 1876142, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1610331, "numnum:min:MAX_POP20": 314807, "numnum:sum:MAX_POP20": 1925138, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1610331, "numnum:min:MAX_POP50": 314807, "numnum:sum:MAX_POP50": 1925138, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1610331, "numnum:min:MAX_POP300": 314807, "numnum:sum:MAX_POP300": 1925138, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 1610331, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 1610331, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 488, "numnum:min:MIN_AREAKM": 145, "numnum:sum:MIN_AREAKM": 633, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 533, "numnum:min:MAX_AREAKM": 145, "numnum:sum:MAX_AREAKM": 678, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 189, "numnum:min:MIN_AREAMI": 56, "numnum:sum:MIN_AREAMI": 245, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 206, "numnum:min:MAX_AREAMI": 56, "numnum:sum:MAX_AREAMI": 262, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 444, "numnum:min:MIN_PERKM": 208, "numnum:sum:MIN_PERKM": 652, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 497, "numnum:min:MAX_PERKM": 208, "numnum:sum:MAX_PERKM": 705, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 276, "numnum:min:MIN_PERMI": 129, "numnum:sum:MIN_PERMI": 405, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 309, "numnum:min:MAX_PERMI": 129, "numnum:sum:MAX_PERMI": 438, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 16.133333, "numnum:min:MIN_BBXMIN": 14.433333, "numnum:sum:MIN_BBXMIN": 30.566665999999999, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 16.133333, "numnum:min:MAX_BBXMIN": 14.433333, "numnum:sum:MAX_BBXMIN": 30.566665999999999, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 16.583333, "numnum:min:MIN_BBXMAX": 14.633333, "numnum:sum:MIN_BBXMAX": 31.216666, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 16.583333, "numnum:min:MAX_BBXMAX": 14.633333, "numnum:sum:MAX_BBXMAX": 31.216666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 47.916667, "numnum:min:MIN_BBYMIN": 46, "numnum:sum:MIN_BBYMIN": 93.91666699999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 48.008333, "numnum:min:MAX_BBYMIN": 46, "numnum:sum:MAX_BBYMIN": 94.008333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 48.383333, "numnum:min:MIN_BBYMAX": 46.241667, "numnum:sum:MIN_BBYMAX": 94.625, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 48.383333, "numnum:min:MAX_BBYMAX": 46.241667, "numnum:sum:MAX_BBYMAX": 94.625, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 16.351672, "numnum:min:MEAN_BBXC": 14.541032, "numnum:sum:MEAN_BBXC": 30.892704000000003, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 48.18247, "numnum:min:MEAN_BBYC": 46.091958, "numnum:sum:MEAN_BBYC": 94.274428, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 61, "numnum:min:ADMIN1_COD": 9, "numnum:sum:ADMIN1_COD": 70, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1691468, "numnum:min:GN_POP": 255115, "numnum:sum:GN_POP": 1946583, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 171, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 171, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 284, "numnum:min:GTOPO30": 164, "numnum:sum:GTOPO30": 448, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 321, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 321, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 48.2, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 48.2, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 16.32, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 16.32, "numnum:count:POP1950": 2, "numnum:max:POP1950": 2086, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2086, "numnum:count:POP1955": 2, "numnum:max:POP1955": 2087, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2087, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2089, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2089, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2080, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2080, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2070, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2070, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2059, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2059, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2049, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2049, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2069, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2069, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2096, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2096, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2127, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2127, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2158, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2158, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2264, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2264, "numnum:count:POP2010": 2, "numnum:max:POP2010": 2315, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2315, "numnum:count:POP2015": 2, "numnum:max:POP2015": 2385, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2385, "numnum:count:POP2020": 2, "numnum:max:POP2020": 2451, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 2451, "numnum:count:POP2025": 2, "numnum:max:POP2025": 2476, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2476, "numnum:count:POP2050": 2, "numnum:max:POP2050": 2496, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2496, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ 16.391602, 48.195387 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Warsaw", "NAMEPAR": "Warszawa", "DIFFASCII": 0, "NAMEASCII": "Warsaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Poland", "SOV_A3": "POL", "ADM0NAME": "Poland", "ADM0_A3": "POL", "ADM1NAME": "Masovian", "ISO_A2": "PL", "LATITUDE": 52.250001, "LONGITUDE": 21, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1707000, "POP_MIN": 1702139, "POP_OTHER": 2012431, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 756135, "MEGANAME": "Warszawa", "LS_NAME": "Warsaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2129163, "MAX_POP20": 2129163, "MAX_POP50": 2129163, "MAX_POP300": 2129163, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 802, "MAX_AREAKM": 802, "MIN_AREAMI": 310, "MAX_AREAMI": 310, "MIN_PERKM": 759, "MAX_PERKM": 759, "MIN_PERMI": 471, "MAX_PERMI": 471, "MIN_BBXMIN": 20.666667, "MAX_BBXMIN": 20.666667, "MIN_BBXMAX": 21.358333, "MAX_BBXMAX": 21.358333, "MIN_BBYMIN": 52.033333, "MAX_BBYMIN": 52.033333, "MIN_BBYMAX": 52.433333, "MAX_BBYMAX": 52.433333, "MEAN_BBXC": 21.031458, "MEAN_BBYC": 52.230916, "COMPARE": 0, "GN_ASCII": "Warsaw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 78, "GN_POP": 1702139, "ELEVATION": 0, "GTOPO30": 94, "TIMEZONE": "Europe/Warsaw", "GEONAMESNO": "GeoNames match general.", "UN_FID": 418, "UN_ADM0": "Poland", "UN_LAT": 52.24, "UN_LONG": 21.01, "POP1950": 768, "POP1955": 942, "POP1960": 1119, "POP1965": 1212, "POP1970": 1300, "POP1975": 1444, "POP1980": 1565, "POP1985": 1596, "POP1990": 1628, "POP1995": 1652, "POP2000": 1666, "POP2005": 1693, "POP2010": 1707, "POP2015": 1724, "POP2020": 1735, "POP2025": 1736, "POP2050": 1736, "CITYALT": "Warsaw", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 550, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 20, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 52.250001, "numnum:min:LATITUDE": 46.055288, "numnum:sum:LATITUDE": 146.505304, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 21, "numnum:min:LONGITUDE": 14.514969, "numnum:sum:LONGITUDE": 51.881608, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 2400000, "numnum:min:POP_MAX": 314807, "numnum:sum:POP_MAX": 4421807, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1731000, "numnum:min:POP_MIN": 255115, "numnum:sum:POP_MIN": 3688254, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2012431, "numnum:min:POP_OTHER": 256316, "numnum:sum:POP_OTHER": 3749633, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 34, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3196359, "numnum:min:GEONAMEID": 756135, "numnum:sum:GEONAMEID": 6713863, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2129163, "numnum:min:MAX_POP10": 314807, "numnum:sum:MAX_POP10": 4005305, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2129163, "numnum:min:MAX_POP20": 314807, "numnum:sum:MAX_POP20": 4054301, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 2129163, "numnum:min:MAX_POP50": 314807, "numnum:sum:MAX_POP50": 4054301, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 2129163, "numnum:min:MAX_POP300": 314807, "numnum:sum:MAX_POP300": 4054301, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 1610331, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 1610331, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 802, "numnum:min:MIN_AREAKM": 145, "numnum:sum:MIN_AREAKM": 1435, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 802, "numnum:min:MAX_AREAKM": 145, "numnum:sum:MAX_AREAKM": 1480, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 310, "numnum:min:MIN_AREAMI": 56, "numnum:sum:MIN_AREAMI": 555, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 310, "numnum:min:MAX_AREAMI": 56, "numnum:sum:MAX_AREAMI": 572, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 759, "numnum:min:MIN_PERKM": 208, "numnum:sum:MIN_PERKM": 1411, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 759, "numnum:min:MAX_PERKM": 208, "numnum:sum:MAX_PERKM": 1464, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 471, "numnum:min:MIN_PERMI": 129, "numnum:sum:MIN_PERMI": 876, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 471, "numnum:min:MAX_PERMI": 129, "numnum:sum:MAX_PERMI": 909, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 20.666667, "numnum:min:MIN_BBXMIN": 14.433333, "numnum:sum:MIN_BBXMIN": 51.233332999999998, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 20.666667, "numnum:min:MAX_BBXMIN": 14.433333, "numnum:sum:MAX_BBXMIN": 51.233332999999998, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 21.358333, "numnum:min:MIN_BBXMAX": 14.633333, "numnum:sum:MIN_BBXMAX": 52.574999, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 21.358333, "numnum:min:MAX_BBXMAX": 14.633333, "numnum:sum:MAX_BBXMAX": 52.574999, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 52.033333, "numnum:min:MIN_BBYMIN": 46, "numnum:sum:MIN_BBYMIN": 145.95, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 52.033333, "numnum:min:MAX_BBYMIN": 46, "numnum:sum:MAX_BBYMIN": 146.041666, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 52.433333, "numnum:min:MIN_BBYMAX": 46.241667, "numnum:sum:MIN_BBYMAX": 147.058333, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 52.433333, "numnum:min:MAX_BBYMAX": 46.241667, "numnum:sum:MAX_BBYMAX": 147.058333, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 21.031458, "numnum:min:MEAN_BBXC": 14.541032, "numnum:sum:MEAN_BBXC": 51.924162, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 52.230916, "numnum:min:MEAN_BBYC": 46.091958, "numnum:sum:MEAN_BBYC": 146.505344, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 78, "numnum:min:ADMIN1_COD": 9, "numnum:sum:ADMIN1_COD": 148, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1702139, "numnum:min:GN_POP": 255115, "numnum:sum:GN_POP": 3648722, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 171, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 171, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 284, "numnum:min:GTOPO30": 94, "numnum:sum:GTOPO30": 542, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 418, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 739, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 52.24, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 100.44, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 21.01, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 37.33, "numnum:count:POP1950": 3, "numnum:max:POP1950": 2086, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2854, "numnum:count:POP1955": 3, "numnum:max:POP1955": 2087, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3029, "numnum:count:POP1960": 3, "numnum:max:POP1960": 2089, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 3208, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2080, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3292, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2070, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3370, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2059, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3503, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2049, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3614, "numnum:count:POP1985": 3, "numnum:max:POP1985": 2069, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3665, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2096, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3724, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2127, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3779, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2158, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3824, "numnum:count:POP2005": 3, "numnum:max:POP2005": 2264, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3957, "numnum:count:POP2010": 3, "numnum:max:POP2010": 2315, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4022, "numnum:count:POP2015": 3, "numnum:max:POP2015": 2385, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4109, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2451, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4186, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2476, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 4212, "numnum:count:POP2050": 3, "numnum:max:POP2050": 2496, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4232, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.241256 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 7, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 20, "numnum:sum:NATSCALE": 130, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 45.800007, "numnum:min:LATITUDE": 43.91715, "numnum:sum:LATITUDE": 89.717157, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 15.999995, "numnum:min:LONGITUDE": 12.46667, "numnum:sum:LONGITUDE": 28.466665, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 722526, "numnum:min:POP_MAX": 29579, "numnum:sum:POP_MAX": 752105, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 698966, "numnum:min:POP_MIN": 29000, "numnum:sum:POP_MIN": 727966, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 690638, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 690638, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 11, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 18, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 18, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3186886, "numnum:min:GEONAMEID": 3168070, "numnum:sum:GEONAMEID": 6354956, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 722526, "numnum:min:MAX_POP10": 29088, "numnum:sum:MAX_POP10": 751614, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 722526, "numnum:min:MAX_POP20": 29579, "numnum:sum:MAX_POP20": 752105, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 722526, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 722526, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 722526, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 722526, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 120, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 244, "numnum:min:MIN_AREAKM": 30, "numnum:sum:MIN_AREAKM": 274, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 244, "numnum:min:MAX_AREAKM": 30, "numnum:sum:MAX_AREAKM": 274, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 94, "numnum:min:MIN_AREAMI": 11, "numnum:sum:MIN_AREAMI": 105, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 94, "numnum:min:MAX_AREAMI": 11, "numnum:sum:MAX_AREAMI": 105, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 223, "numnum:min:MIN_PERKM": 63, "numnum:sum:MIN_PERKM": 286, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 223, "numnum:min:MAX_PERKM": 63, "numnum:sum:MAX_PERKM": 286, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 138, "numnum:min:MIN_PERMI": 39, "numnum:sum:MIN_PERMI": 177, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 138, "numnum:min:MAX_PERMI": 39, "numnum:sum:MAX_PERMI": 177, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 15.825, "numnum:min:MIN_BBXMIN": 12.391667, "numnum:sum:MIN_BBXMIN": 28.216667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 15.825, "numnum:min:MAX_BBXMIN": 12.391667, "numnum:sum:MAX_BBXMIN": 28.216667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 16.191667, "numnum:min:MIN_BBXMAX": 12.541667, "numnum:sum:MIN_BBXMAX": 28.733334, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 16.191667, "numnum:min:MAX_BBXMAX": 12.541667, "numnum:sum:MAX_BBXMAX": 28.733334, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 45.683333, "numnum:min:MIN_BBYMIN": 43.9, "numnum:sum:MIN_BBYMIN": 89.583333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 45.683333, "numnum:min:MAX_BBYMIN": 43.9, "numnum:sum:MAX_BBYMIN": 89.583333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 45.908333, "numnum:min:MIN_BBYMAX": 44, "numnum:sum:MIN_BBYMAX": 89.908333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 45.908333, "numnum:min:MAX_BBYMAX": 44, "numnum:sum:MAX_BBYMAX": 89.908333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 16.005419, "numnum:min:MEAN_BBXC": 12.462153, "numnum:sum:MEAN_BBXC": 28.467572, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 45.803305, "numnum:min:MEAN_BBYC": 43.953472, "numnum:sum:MEAN_BBYC": 89.756777, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 21, "numnum:min:ADMIN1_COD": 7, "numnum:sum:ADMIN1_COD": 28, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 698966, "numnum:min:GN_POP": 29000, "numnum:sum:GN_POP": 727966, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 377, "numnum:min:GTOPO30": 131, "numnum:sum:GTOPO30": 508, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 8, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 19, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 10, "numnum:sum:NATSCALE": 680, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 48.150018, "numnum:min:LATITUDE": 41.895956, "numnum:sum:LATITUDE": 175.863136, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 17.116981, "numnum:min:LONGITUDE": 12.447808, "numnum:sum:LONGITUDE": 54.514717000000008, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 3339000, "numnum:min:POP_MAX": 832, "numnum:sum:POP_MAX": 3793148, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 373687, "numnum:min:POP_MIN": 832, "numnum:sum:POP_MIN": 438971, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 2050212, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 2974131, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 2, "numnum:sum:RANK_MAX": 31, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 2, "numnum:sum:RANK_MIN": 26, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 6691831, "numnum:min:GEONAMEID": 3060972, "numnum:sum:GEONAMEID": 17140635, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 2143900, "numnum:min:MAX_POP10": 29088, "numnum:sum:MAX_POP10": 3183437, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 2143900, "numnum:min:MAX_POP20": 29579, "numnum:sum:MAX_POP20": 3183928, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 2666328, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 3040015, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 2666328, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 3040015, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 2666328, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 2666328, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 440, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 505, "numnum:min:MIN_AREAKM": 30, "numnum:sum:MIN_AREAKM": 825, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 683, "numnum:min:MAX_AREAKM": 30, "numnum:sum:MAX_AREAKM": 1003, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 195, "numnum:min:MIN_AREAMI": 11, "numnum:sum:MIN_AREAMI": 317, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 264, "numnum:min:MAX_AREAMI": 11, "numnum:sum:MAX_AREAMI": 386, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 382, "numnum:min:MIN_PERKM": 63, "numnum:sum:MIN_PERKM": 726, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 500, "numnum:min:MAX_PERKM": 63, "numnum:sum:MAX_PERKM": 844, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 238, "numnum:min:MIN_PERMI": 39, "numnum:sum:MIN_PERMI": 451, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 311, "numnum:min:MAX_PERMI": 39, "numnum:sum:MAX_PERMI": 524, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 17.016667, "numnum:min:MIN_BBXMIN": 12.333333, "numnum:sum:MIN_BBXMIN": 54.075, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 17.016667, "numnum:min:MAX_BBXMIN": 12.333333, "numnum:sum:MAX_BBXMIN": 54.192161, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 17.233333, "numnum:min:MIN_BBXMAX": 12.481009, "numnum:sum:MIN_BBXMAX": 55.022676000000007, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 17.233333, "numnum:min:MAX_BBXMAX": 12.481009, "numnum:sum:MAX_BBXMAX": 55.022676000000007, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 48.091667, "numnum:min:MIN_BBYMIN": 41.666667, "numnum:sum:MIN_BBYMIN": 175.42500099999999, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 48.091667, "numnum:min:MAX_BBYMIN": 41.666667, "numnum:sum:MAX_BBYMIN": 175.42500099999999, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 48.225, "numnum:min:MIN_BBYMAX": 42.033333, "numnum:sum:MIN_BBYMAX": 176.30833299999999, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 48.225, "numnum:min:MAX_BBYMAX": 42.05, "numnum:sum:MAX_BBYMAX": 176.325, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 17.131335, "numnum:min:MEAN_BBXC": 12.419907, "numnum:sum:MEAN_BBXC": 54.574869, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 48.159311, "numnum:min:MEAN_BBYC": 41.864442, "numnum:sum:MEAN_BBYC": 175.88070199999999, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 7, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 9, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 423737, "numnum:min:GN_POP": 826, "numnum:sum:GN_POP": 489015, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 187, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 187, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 377, "numnum:min:GTOPO30": 17, "numnum:sum:GTOPO30": 709, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 308, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 308, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 41.87, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 41.87, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 12.51, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 12.51, "numnum:count:POP1950": 4, "numnum:max:POP1950": 1884, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1884, "numnum:count:POP1955": 4, "numnum:max:POP1955": 2143, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2143, "numnum:count:POP1960": 4, "numnum:max:POP1960": 2456, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2456, "numnum:count:POP1965": 4, "numnum:max:POP1965": 2780, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2780, "numnum:count:POP1970": 4, "numnum:max:POP1970": 3135, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3135, "numnum:count:POP1975": 4, "numnum:max:POP1975": 3300, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3300, "numnum:count:POP1980": 4, "numnum:max:POP1980": 3390, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3390, "numnum:count:POP1985": 4, "numnum:max:POP1985": 3429, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3429, "numnum:count:POP1990": 4, "numnum:max:POP1990": 3450, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3450, "numnum:count:POP1995": 4, "numnum:max:POP1995": 3425, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3425, "numnum:count:POP2000": 4, "numnum:max:POP2000": 3385, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3385, "numnum:count:POP2005": 4, "numnum:max:POP2005": 3348, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3348, "numnum:count:POP2010": 4, "numnum:max:POP2010": 3339, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3339, "numnum:count:POP2015": 4, "numnum:max:POP2015": 3333, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3333, "numnum:count:POP2020": 4, "numnum:max:POP2020": 3330, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3330, "numnum:count:POP2025": 4, "numnum:max:POP2025": 3330, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3330, "numnum:count:POP2050": 4, "numnum:max:POP2050": 3330, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3330, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 8, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 12, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 10, "numnum:sum:NATSCALE": 660, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 48.150018, "numnum:min:LATITUDE": 41.895956, "numnum:sum:LATITUDE": 131.945986, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 17.116981, "numnum:min:LONGITUDE": 12.447808, "numnum:sum:LONGITUDE": 42.048047, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3339000, "numnum:min:POP_MAX": 832, "numnum:sum:POP_MAX": 3763569, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 373687, "numnum:min:POP_MIN": 832, "numnum:sum:POP_MIN": 409971, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2050212, "numnum:min:POP_OTHER": 361489, "numnum:sum:POP_OTHER": 2974131, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 2, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 2, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 6691831, "numnum:min:GEONAMEID": 3060972, "numnum:sum:GEONAMEID": 13972565, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2143900, "numnum:min:MAX_POP10": 373687, "numnum:sum:MAX_POP10": 3154349, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2143900, "numnum:min:MAX_POP20": 373687, "numnum:sum:MAX_POP20": 3154349, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 2666328, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 3040015, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 2666328, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 3040015, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 2666328, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 2666328, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 420, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 505, "numnum:min:MIN_AREAKM": 113, "numnum:sum:MIN_AREAKM": 795, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 683, "numnum:min:MAX_AREAKM": 113, "numnum:sum:MAX_AREAKM": 973, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 195, "numnum:min:MIN_AREAMI": 43, "numnum:sum:MIN_AREAMI": 306, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 264, "numnum:min:MAX_AREAMI": 43, "numnum:sum:MAX_AREAMI": 375, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 382, "numnum:min:MIN_PERKM": 121, "numnum:sum:MIN_PERKM": 663, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 500, "numnum:min:MAX_PERKM": 121, "numnum:sum:MAX_PERKM": 781, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 238, "numnum:min:MIN_PERMI": 75, "numnum:sum:MIN_PERMI": 412, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 311, "numnum:min:MAX_PERMI": 75, "numnum:sum:MAX_PERMI": 485, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 17.016667, "numnum:min:MIN_BBXMIN": 12.333333, "numnum:sum:MIN_BBXMIN": 41.683333000000008, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 17.016667, "numnum:min:MAX_BBXMIN": 12.333333, "numnum:sum:MAX_BBXMIN": 41.800494, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 17.233333, "numnum:min:MIN_BBXMAX": 12.481009, "numnum:sum:MIN_BBXMAX": 42.481009, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 17.233333, "numnum:min:MAX_BBXMAX": 12.481009, "numnum:sum:MAX_BBXMAX": 42.481009, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 48.091667, "numnum:min:MIN_BBYMIN": 41.666667, "numnum:sum:MIN_BBYMIN": 131.525001, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 48.091667, "numnum:min:MAX_BBYMIN": 41.666667, "numnum:sum:MAX_BBYMIN": 131.525001, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 48.225, "numnum:min:MIN_BBYMAX": 42.033333, "numnum:sum:MIN_BBYMAX": 132.308333, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 48.225, "numnum:min:MAX_BBYMAX": 42.05, "numnum:sum:MAX_BBYMAX": 132.325, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 17.131335, "numnum:min:MEAN_BBXC": 12.419907, "numnum:sum:MEAN_BBXC": 42.112716, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 48.159311, "numnum:min:MEAN_BBYC": 41.864442, "numnum:sum:MEAN_BBYC": 131.92723, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 423737, "numnum:min:GN_POP": 826, "numnum:sum:GN_POP": 460015, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 187, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 187, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 183, "numnum:min:GTOPO30": 17, "numnum:sum:GTOPO30": 332, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 308, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 308, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 41.87, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 41.87, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 12.51, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 12.51, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1884, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1884, "numnum:count:POP1955": 3, "numnum:max:POP1955": 2143, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2143, "numnum:count:POP1960": 3, "numnum:max:POP1960": 2456, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2456, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2780, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2780, "numnum:count:POP1970": 3, "numnum:max:POP1970": 3135, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3135, "numnum:count:POP1975": 3, "numnum:max:POP1975": 3300, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3300, "numnum:count:POP1980": 3, "numnum:max:POP1980": 3390, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3390, "numnum:count:POP1985": 3, "numnum:max:POP1985": 3429, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3429, "numnum:count:POP1990": 3, "numnum:max:POP1990": 3450, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3450, "numnum:count:POP1995": 3, "numnum:max:POP1995": 3425, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3425, "numnum:count:POP2000": 3, "numnum:max:POP2000": 3385, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3385, "numnum:count:POP2005": 3, "numnum:max:POP2005": 3348, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3348, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3339, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3339, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3333, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3333, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3330, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3330, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3330, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3330, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3330, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3330, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Budapest", "DIFFASCII": 0, "NAMEASCII": "Budapest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Hungary", "SOV_A3": "HUN", "ADM0NAME": "Hungary", "ADM0_A3": "HUN", "ADM1NAME": "Budapest", "ISO_A2": "HU", "LATITUDE": 47.500006, "LONGITUDE": 19.083321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1679000, "POP_MIN": 1679000, "POP_OTHER": 1718895, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3054643, "MEGANAME": "Budapest", "LS_NAME": "Budapest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1788020, "MAX_POP20": 1788020, "MAX_POP50": 1788020, "MAX_POP300": 1788020, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 556, "MAX_AREAKM": 556, "MIN_AREAMI": 215, "MAX_AREAMI": 215, "MIN_PERKM": 460, "MAX_PERKM": 460, "MIN_PERMI": 286, "MAX_PERMI": 286, "MIN_BBXMIN": 18.85, "MAX_BBXMIN": 18.85, "MIN_BBXMAX": 19.416667, "MAX_BBXMAX": 19.416667, "MIN_BBYMIN": 47.35, "MAX_BBYMIN": 47.35, "MIN_BBYMAX": 47.658333, "MAX_BBYMAX": 47.658333, "MEAN_BBXC": 19.106763, "MEAN_BBYC": 47.478602, "COMPARE": 0, "GN_ASCII": "Budapest", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1696128, "ELEVATION": 0, "GTOPO30": 100, "TIMEZONE": "Europe/Budapest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 211, "UN_ADM0": "Hungary", "UN_LAT": 47.51, "UN_LONG": 19.09, "POP1950": 1618, "POP1955": 1714, "POP1960": 1811, "POP1965": 1878, "POP1970": 1946, "POP1975": 2005, "POP1980": 2057, "POP1985": 2036, "POP1990": 2005, "POP1995": 1893, "POP2000": 1787, "POP2005": 1693, "POP2010": 1679, "POP2015": 1664, "POP2020": 1655, "POP2025": 1655, "POP2050": 1655, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 360, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 22, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 47.500006, "numnum:min:LATITUDE": 42.465973, "numnum:sum:LATITUDE": 133.816001, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 19.266307, "numnum:min:LONGITUDE": 18.383002, "numnum:sum:LONGITUDE": 56.73263, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1679000, "numnum:min:POP_MAX": 145850, "numnum:sum:POP_MAX": 2521581, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1679000, "numnum:min:POP_MIN": 136473, "numnum:sum:POP_MIN": 2444375, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1718895, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 2345960, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 32, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 32, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3193044, "numnum:min:GEONAMEID": 3054643, "numnum:sum:GEONAMEID": 9438968, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1788020, "numnum:min:MAX_POP10": 145850, "numnum:sum:MAX_POP10": 2562772, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1788020, "numnum:min:MAX_POP20": 145850, "numnum:sum:MAX_POP20": 2562772, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1788020, "numnum:min:MAX_POP50": 145850, "numnum:sum:MAX_POP50": 2562772, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1788020, "numnum:min:MAX_POP300": 145850, "numnum:sum:MAX_POP300": 2562772, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 556, "numnum:min:MIN_AREAKM": 41, "numnum:sum:MIN_AREAKM": 701, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 556, "numnum:min:MAX_AREAKM": 41, "numnum:sum:MAX_AREAKM": 701, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 215, "numnum:min:MIN_AREAMI": 16, "numnum:sum:MIN_AREAMI": 271, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 215, "numnum:min:MAX_AREAMI": 16, "numnum:sum:MAX_AREAMI": 271, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 460, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 616, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 460, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 616, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 286, "numnum:min:MIN_PERMI": 27, "numnum:sum:MIN_PERMI": 383, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 286, "numnum:min:MAX_PERMI": 27, "numnum:sum:MAX_PERMI": 383, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 19.208333, "numnum:min:MIN_BBXMIN": 18.216667, "numnum:sum:MIN_BBXMIN": 56.275000000000009, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 19.208333, "numnum:min:MAX_BBXMIN": 18.216667, "numnum:sum:MAX_BBXMIN": 56.275000000000009, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 19.416667, "numnum:min:MIN_BBXMAX": 18.466667, "numnum:sum:MIN_BBXMAX": 57.200001, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 19.416667, "numnum:min:MAX_BBXMAX": 18.466667, "numnum:sum:MAX_BBXMAX": 57.200001, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 47.35, "numnum:min:MIN_BBYMIN": 42.408333, "numnum:sum:MIN_BBYMIN": 133.541666, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 47.35, "numnum:min:MAX_BBYMIN": 42.408333, "numnum:sum:MAX_BBYMIN": 133.541666, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 47.658333, "numnum:min:MIN_BBYMAX": 42.475, "numnum:sum:MIN_BBYMAX": 134.033333, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 47.658333, "numnum:min:MAX_BBYMAX": 42.475, "numnum:sum:MAX_BBYMAX": 134.033333, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 19.263397, "numnum:min:MEAN_BBXC": 18.351272, "numnum:sum:MEAN_BBXC": 56.72143200000001, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 47.478602, "numnum:min:MEAN_BBYC": 42.442115, "numnum:sum:MEAN_BBYC": 133.76690000000003, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 5, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 6, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1696128, "numnum:min:GN_POP": 136473, "numnum:sum:GN_POP": 2529332, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 545, "numnum:min:GTOPO30": 58, "numnum:sum:GTOPO30": 703, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 211, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 211, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 47.51, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 47.51, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 19.09, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 19.09, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1618, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1618, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1714, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1714, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1811, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1811, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1878, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1878, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1946, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1946, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2005, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2005, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2057, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2057, "numnum:count:POP1985": 3, "numnum:max:POP1985": 2036, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2036, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2005, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2005, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1893, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1893, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1787, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1787, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1693, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1693, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1679, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1679, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1664, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1664, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1655, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1655, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1655, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1655, "numnum:count:POP2050": 3, "numnum:max:POP2050": 1655, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1655, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.487513 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Budapest", "DIFFASCII": 0, "NAMEASCII": "Budapest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Hungary", "SOV_A3": "HUN", "ADM0NAME": "Hungary", "ADM0_A3": "HUN", "ADM1NAME": "Budapest", "ISO_A2": "HU", "LATITUDE": 47.500006, "LONGITUDE": 19.083321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1679000, "POP_MIN": 1679000, "POP_OTHER": 1718895, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3054643, "MEGANAME": "Budapest", "LS_NAME": "Budapest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1788020, "MAX_POP20": 1788020, "MAX_POP50": 1788020, "MAX_POP300": 1788020, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 556, "MAX_AREAKM": 556, "MIN_AREAMI": 215, "MAX_AREAMI": 215, "MIN_PERKM": 460, "MAX_PERKM": 460, "MIN_PERMI": 286, "MAX_PERMI": 286, "MIN_BBXMIN": 18.85, "MAX_BBXMIN": 18.85, "MIN_BBXMAX": 19.416667, "MAX_BBXMAX": 19.416667, "MIN_BBYMIN": 47.35, "MAX_BBYMIN": 47.35, "MIN_BBYMAX": 47.658333, "MAX_BBYMAX": 47.658333, "MEAN_BBXC": 19.106763, "MEAN_BBYC": 47.478602, "COMPARE": 0, "GN_ASCII": "Budapest", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1696128, "ELEVATION": 0, "GTOPO30": 100, "TIMEZONE": "Europe/Budapest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 211, "UN_ADM0": "Hungary", "UN_LAT": 47.51, "UN_LONG": 19.09, "POP1950": 1618, "POP1955": 1714, "POP1960": 1811, "POP1965": 1878, "POP1970": 1946, "POP1975": 2005, "POP1980": 2057, "POP1985": 2036, "POP1990": 2005, "POP1995": 1893, "POP2000": 1787, "POP2005": 1693, "POP2010": 1679, "POP2015": 1664, "POP2020": 1655, "POP2025": 1655, "POP2050": 1655, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 310, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 47.500006, "numnum:min:LATITUDE": 43.850022, "numnum:sum:LATITUDE": 91.35002800000001, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 19.083321, "numnum:min:LONGITUDE": 18.383002, "numnum:sum:LONGITUDE": 37.466323, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1679000, "numnum:min:POP_MAX": 696731, "numnum:sum:POP_MAX": 2375731, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1679000, "numnum:min:POP_MIN": 628902, "numnum:sum:POP_MIN": 2307902, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1718895, "numnum:min:POP_OTHER": 627065, "numnum:sum:POP_OTHER": 2345960, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3191281, "numnum:min:GEONAMEID": 3054643, "numnum:sum:GEONAMEID": 6245924, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1788020, "numnum:min:MAX_POP10": 628902, "numnum:sum:MAX_POP10": 2416922, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1788020, "numnum:min:MAX_POP20": 628902, "numnum:sum:MAX_POP20": 2416922, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1788020, "numnum:min:MAX_POP50": 628902, "numnum:sum:MAX_POP50": 2416922, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1788020, "numnum:min:MAX_POP300": 628902, "numnum:sum:MAX_POP300": 2416922, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 556, "numnum:min:MIN_AREAKM": 104, "numnum:sum:MIN_AREAKM": 660, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 556, "numnum:min:MAX_AREAKM": 104, "numnum:sum:MAX_AREAKM": 660, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 215, "numnum:min:MIN_AREAMI": 40, "numnum:sum:MIN_AREAMI": 255, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 215, "numnum:min:MAX_AREAMI": 40, "numnum:sum:MAX_AREAMI": 255, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 460, "numnum:min:MIN_PERKM": 112, "numnum:sum:MIN_PERKM": 572, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 460, "numnum:min:MAX_PERKM": 112, "numnum:sum:MAX_PERKM": 572, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 286, "numnum:min:MIN_PERMI": 70, "numnum:sum:MIN_PERMI": 356, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 286, "numnum:min:MAX_PERMI": 70, "numnum:sum:MAX_PERMI": 356, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 18.85, "numnum:min:MIN_BBXMIN": 18.216667, "numnum:sum:MIN_BBXMIN": 37.066667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 18.85, "numnum:min:MAX_BBXMIN": 18.216667, "numnum:sum:MAX_BBXMIN": 37.066667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 19.416667, "numnum:min:MIN_BBXMAX": 18.466667, "numnum:sum:MIN_BBXMAX": 37.883334000000008, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 19.416667, "numnum:min:MAX_BBXMAX": 18.466667, "numnum:sum:MAX_BBXMAX": 37.883334000000008, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 47.35, "numnum:min:MIN_BBYMIN": 43.783333, "numnum:sum:MIN_BBYMIN": 91.133333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 47.35, "numnum:min:MAX_BBYMIN": 43.783333, "numnum:sum:MAX_BBYMIN": 91.133333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 47.658333, "numnum:min:MIN_BBYMAX": 43.9, "numnum:sum:MIN_BBYMAX": 91.558333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 47.658333, "numnum:min:MAX_BBYMAX": 43.9, "numnum:sum:MAX_BBYMAX": 91.558333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 19.106763, "numnum:min:MEAN_BBXC": 18.351272, "numnum:sum:MEAN_BBXC": 37.458035, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 47.478602, "numnum:min:MEAN_BBYC": 43.846183, "numnum:sum:MEAN_BBYC": 91.324785, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 5, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 6, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1696128, "numnum:min:GN_POP": 696731, "numnum:sum:GN_POP": 2392859, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 545, "numnum:min:GTOPO30": 100, "numnum:sum:GTOPO30": 645, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 211, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 211, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 47.51, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 47.51, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 19.09, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 19.09, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1618, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1618, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1714, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1714, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1811, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1811, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1878, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1878, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1946, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1946, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2005, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2005, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2057, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2057, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2036, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2036, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2005, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2005, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1893, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1893, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1787, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1787, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1693, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1693, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1679, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1679, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1664, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1664, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1655, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1655, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1655, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1655, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1655, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1655, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.487513 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 44.818645, "numnum:min:LATITUDE": 41.327541, "numnum:sum:LATITUDE": 86.146186, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 20.467991, "numnum:min:LONGITUDE": 19.818883, "numnum:sum:LONGITUDE": 40.286874, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1099000, "numnum:min:POP_MAX": 895350, "numnum:sum:POP_MAX": 1994350, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1099000, "numnum:min:POP_MIN": 421286, "numnum:sum:POP_MIN": 1520286, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1271541, "numnum:min:POP_OTHER": 517792, "numnum:sum:POP_OTHER": 1789333, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3183875, "numnum:min:GEONAMEID": 792680, "numnum:sum:GEONAMEID": 3976555, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1291613, "numnum:min:MAX_POP10": 530241, "numnum:sum:MAX_POP10": 1821854, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1291613, "numnum:min:MAX_POP20": 530241, "numnum:sum:MAX_POP20": 1821854, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1291613, "numnum:min:MAX_POP50": 530241, "numnum:sum:MAX_POP50": 1821854, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1291613, "numnum:min:MAX_POP300": 530241, "numnum:sum:MAX_POP300": 1821854, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 209, "numnum:min:MIN_AREAKM": 74, "numnum:sum:MIN_AREAKM": 283, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 209, "numnum:min:MAX_AREAKM": 74, "numnum:sum:MAX_AREAKM": 283, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 81, "numnum:min:MIN_AREAMI": 28, "numnum:sum:MIN_AREAMI": 109, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 81, "numnum:min:MAX_AREAMI": 28, "numnum:sum:MAX_AREAMI": 109, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 184, "numnum:min:MIN_PERKM": 80, "numnum:sum:MIN_PERKM": 264, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 184, "numnum:min:MAX_PERKM": 80, "numnum:sum:MAX_PERKM": 264, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 114, "numnum:min:MIN_PERMI": 50, "numnum:sum:MIN_PERMI": 164, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 114, "numnum:min:MAX_PERMI": 50, "numnum:sum:MAX_PERMI": 164, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 20.316667, "numnum:min:MIN_BBXMIN": 19.733333, "numnum:sum:MIN_BBXMIN": 40.05, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 20.316667, "numnum:min:MAX_BBXMIN": 19.733333, "numnum:sum:MAX_BBXMIN": 40.05, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 20.575, "numnum:min:MIN_BBXMAX": 19.875, "numnum:sum:MIN_BBXMAX": 40.45, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 20.575, "numnum:min:MAX_BBXMAX": 19.875, "numnum:sum:MAX_BBXMAX": 40.45, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 44.691667, "numnum:min:MIN_BBYMIN": 41.275, "numnum:sum:MIN_BBYMIN": 85.966667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 44.691667, "numnum:min:MAX_BBYMIN": 41.275, "numnum:sum:MAX_BBYMIN": 85.966667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 44.9, "numnum:min:MIN_BBYMAX": 41.4, "numnum:sum:MIN_BBYMAX": 86.3, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 44.9, "numnum:min:MAX_BBYMAX": 41.4, "numnum:sum:MAX_BBYMAX": 86.3, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 20.449561, "numnum:min:MEAN_BBXC": 19.805556, "numnum:sum:MEAN_BBXC": 40.255117, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 44.794615, "numnum:min:MEAN_BBYC": 41.339474, "numnum:sum:MEAN_BBYC": 86.134089, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 50, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 50, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1273651, "numnum:min:GN_POP": 374801, "numnum:sum:GN_POP": 1648452, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 103, "numnum:min:GTOPO30": 90, "numnum:sum:GTOPO30": 193, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 448, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 448, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 44.79, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 44.79, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 20.41, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 20.41, "numnum:count:POP1950": 2, "numnum:max:POP1950": 411, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 411, "numnum:count:POP1955": 2, "numnum:max:POP1955": 501, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 501, "numnum:count:POP1960": 2, "numnum:max:POP1960": 576, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 576, "numnum:count:POP1965": 2, "numnum:max:POP1965": 649, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 649, "numnum:count:POP1970": 2, "numnum:max:POP1970": 729, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 729, "numnum:count:POP1975": 2, "numnum:max:POP1975": 873, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 873, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1057, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1057, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1121, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1121, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1162, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1162, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1149, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1149, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1127, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1127, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1106, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1106, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1099, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1099, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1096, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1096, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1108, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1108, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1132, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1132, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1163, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1163, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.809122 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Podgorica", "DIFFASCII": 0, "NAMEASCII": "Podgorica", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Montenegro", "SOV_A3": "MNE", "ADM0NAME": "Montenegro", "ADM0_A3": "MNE", "ADM1NAME": "Podgorica", "ISO_A2": "ME", "LATITUDE": 42.465973, "LONGITUDE": 19.266307, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 145850, "POP_MIN": 136473, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3193044, "LS_NAME": "Podgorica", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 145850, "MAX_POP20": 145850, "MAX_POP50": 145850, "MAX_POP300": 145850, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 19.208333, "MAX_BBXMIN": 19.208333, "MIN_BBXMAX": 19.316667, "MAX_BBXMAX": 19.316667, "MIN_BBYMIN": 42.408333, "MAX_BBYMIN": 42.408333, "MIN_BBYMAX": 42.475, "MAX_BBYMAX": 42.475, "MEAN_BBXC": 19.263397, "MEAN_BBYC": 42.442115, "COMPARE": 0, "GN_ASCII": "Podgorica", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 136473, "ELEVATION": 0, "GTOPO30": 58, "TIMEZONE": "Europe/Podgorica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 270, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 24, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 44.818645, "numnum:min:LATITUDE": 41.327541, "numnum:sum:LATITUDE": 128.612159, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 20.467991, "numnum:min:LONGITUDE": 19.266307, "numnum:sum:LONGITUDE": 59.553181, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1099000, "numnum:min:POP_MAX": 145850, "numnum:sum:POP_MAX": 2140200, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1099000, "numnum:min:POP_MIN": 136473, "numnum:sum:POP_MIN": 1656759, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1271541, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 1789333, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 32, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 31, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3193044, "numnum:min:GEONAMEID": 792680, "numnum:sum:GEONAMEID": 7169599, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1291613, "numnum:min:MAX_POP10": 145850, "numnum:sum:MAX_POP10": 1967704, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1291613, "numnum:min:MAX_POP20": 145850, "numnum:sum:MAX_POP20": 1967704, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1291613, "numnum:min:MAX_POP50": 145850, "numnum:sum:MAX_POP50": 1967704, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1291613, "numnum:min:MAX_POP300": 145850, "numnum:sum:MAX_POP300": 1967704, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 209, "numnum:min:MIN_AREAKM": 41, "numnum:sum:MIN_AREAKM": 324, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 209, "numnum:min:MAX_AREAKM": 41, "numnum:sum:MAX_AREAKM": 324, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 81, "numnum:min:MIN_AREAMI": 16, "numnum:sum:MIN_AREAMI": 125, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 81, "numnum:min:MAX_AREAMI": 16, "numnum:sum:MAX_AREAMI": 125, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 184, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 308, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 184, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 308, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 114, "numnum:min:MIN_PERMI": 27, "numnum:sum:MIN_PERMI": 191, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 114, "numnum:min:MAX_PERMI": 27, "numnum:sum:MAX_PERMI": 191, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 20.316667, "numnum:min:MIN_BBXMIN": 19.208333, "numnum:sum:MIN_BBXMIN": 59.25833299999999, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 20.316667, "numnum:min:MAX_BBXMIN": 19.208333, "numnum:sum:MAX_BBXMIN": 59.25833299999999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 20.575, "numnum:min:MIN_BBXMAX": 19.316667, "numnum:sum:MIN_BBXMAX": 59.766667, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 20.575, "numnum:min:MAX_BBXMAX": 19.316667, "numnum:sum:MAX_BBXMAX": 59.766667, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 44.691667, "numnum:min:MIN_BBYMIN": 41.275, "numnum:sum:MIN_BBYMIN": 128.375, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 44.691667, "numnum:min:MAX_BBYMIN": 41.275, "numnum:sum:MAX_BBYMIN": 128.375, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 44.9, "numnum:min:MIN_BBYMAX": 41.4, "numnum:sum:MIN_BBYMAX": 128.775, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 44.9, "numnum:min:MAX_BBYMAX": 41.4, "numnum:sum:MAX_BBYMAX": 128.775, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 20.449561, "numnum:min:MEAN_BBXC": 19.263397, "numnum:sum:MEAN_BBXC": 59.518513999999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 44.794615, "numnum:min:MEAN_BBYC": 41.339474, "numnum:sum:MEAN_BBYC": 128.576204, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 50, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 50, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1273651, "numnum:min:GN_POP": 136473, "numnum:sum:GN_POP": 1784925, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 103, "numnum:min:GTOPO30": 58, "numnum:sum:GTOPO30": 251, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 448, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 448, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 44.79, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 44.79, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 20.41, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 20.41, "numnum:count:POP1950": 3, "numnum:max:POP1950": 411, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 411, "numnum:count:POP1955": 3, "numnum:max:POP1955": 501, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 501, "numnum:count:POP1960": 3, "numnum:max:POP1960": 576, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 576, "numnum:count:POP1965": 3, "numnum:max:POP1965": 649, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 649, "numnum:count:POP1970": 3, "numnum:max:POP1970": 729, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 729, "numnum:count:POP1975": 3, "numnum:max:POP1975": 873, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 873, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1057, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1057, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1121, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1121, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1162, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1162, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1149, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1149, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1127, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1127, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1106, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1106, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1099, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1099, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1096, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1096, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1108, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1108, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1132, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1132, "numnum:count:POP2050": 3, "numnum:max:POP2050": 1163, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1163, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 19.291992, 42.455888 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 4, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 50, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 100, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 42.66671, "numnum:min:LATITUDE": 42.000006, "numnum:sum:LATITUDE": 84.66671600000001, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 21.433461, "numnum:min:LONGITUDE": 21.165984, "numnum:sum:LONGITUDE": 42.599445, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 494087, "numnum:min:POP_MAX": 465186, "numnum:sum:POP_MAX": 959273, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 474889, "numnum:min:POP_MIN": 198214, "numnum:sum:POP_MIN": 673103, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 491890, "numnum:min:POP_OTHER": 261783, "numnum:sum:POP_OTHER": 753673, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 10, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 20, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 786714, "numnum:min:GEONAMEID": 785842, "numnum:sum:GEONAMEID": 1572556, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 494087, "numnum:min:MAX_POP10": 265361, "numnum:sum:MAX_POP10": 759448, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 494087, "numnum:min:MAX_POP20": 265361, "numnum:sum:MAX_POP20": 759448, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 494087, "numnum:min:MAX_POP50": 265361, "numnum:sum:MAX_POP50": 759448, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 494087, "numnum:min:MAX_POP300": 265361, "numnum:sum:MAX_POP300": 759448, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 114, "numnum:min:MIN_AREAKM": 41, "numnum:sum:MIN_AREAKM": 155, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 114, "numnum:min:MAX_AREAKM": 41, "numnum:sum:MAX_AREAKM": 155, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 44, "numnum:min:MIN_AREAMI": 16, "numnum:sum:MIN_AREAMI": 60, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 44, "numnum:min:MAX_AREAMI": 16, "numnum:sum:MAX_AREAMI": 60, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 98, "numnum:min:MIN_PERKM": 69, "numnum:sum:MIN_PERKM": 167, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 98, "numnum:min:MAX_PERKM": 69, "numnum:sum:MAX_PERKM": 167, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 61, "numnum:min:MIN_PERMI": 43, "numnum:sum:MIN_PERMI": 104, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 61, "numnum:min:MAX_PERMI": 43, "numnum:sum:MAX_PERMI": 104, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 21.3, "numnum:min:MIN_BBXMIN": 21.066667, "numnum:sum:MIN_BBXMIN": 42.366667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 21.3, "numnum:min:MAX_BBXMIN": 21.066667, "numnum:sum:MAX_BBXMIN": 42.366667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 21.533333, "numnum:min:MIN_BBXMAX": 21.208333, "numnum:sum:MIN_BBXMAX": 42.741665999999998, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 21.533333, "numnum:min:MAX_BBXMAX": 21.208333, "numnum:sum:MAX_BBXMAX": 42.741665999999998, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 42.625, "numnum:min:MIN_BBYMIN": 41.95, "numnum:sum:MIN_BBYMIN": 84.575, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 42.625, "numnum:min:MAX_BBYMIN": 41.95, "numnum:sum:MAX_BBYMIN": 84.575, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 42.733333, "numnum:min:MIN_BBYMAX": 42.066667, "numnum:sum:MIN_BBYMAX": 84.80000000000001, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 42.733333, "numnum:min:MAX_BBYMAX": 42.066667, "numnum:sum:MAX_BBYMAX": 84.80000000000001, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 21.430243, "numnum:min:MEAN_BBXC": 21.146346, "numnum:sum:MEAN_BBXC": 42.576589, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 42.666218, "numnum:min:MEAN_BBYC": 42.007257, "numnum:sum:MEAN_BBYC": 84.673475, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 1, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 1, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 550000, "numnum:min:GN_POP": 474889, "numnum:sum:GN_POP": 1024889, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 668, "numnum:min:GTOPO30": 246, "numnum:sum:GTOPO30": 914, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.650122 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 4, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 50, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 100, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 42.66671, "numnum:min:LATITUDE": 42.000006, "numnum:sum:LATITUDE": 84.66671600000001, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 21.433461, "numnum:min:LONGITUDE": 21.165984, "numnum:sum:LONGITUDE": 42.599445, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 494087, "numnum:min:POP_MAX": 465186, "numnum:sum:POP_MAX": 959273, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 474889, "numnum:min:POP_MIN": 198214, "numnum:sum:POP_MIN": 673103, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 491890, "numnum:min:POP_OTHER": 261783, "numnum:sum:POP_OTHER": 753673, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 10, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 20, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 786714, "numnum:min:GEONAMEID": 785842, "numnum:sum:GEONAMEID": 1572556, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 494087, "numnum:min:MAX_POP10": 265361, "numnum:sum:MAX_POP10": 759448, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 494087, "numnum:min:MAX_POP20": 265361, "numnum:sum:MAX_POP20": 759448, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 494087, "numnum:min:MAX_POP50": 265361, "numnum:sum:MAX_POP50": 759448, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 494087, "numnum:min:MAX_POP300": 265361, "numnum:sum:MAX_POP300": 759448, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 114, "numnum:min:MIN_AREAKM": 41, "numnum:sum:MIN_AREAKM": 155, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 114, "numnum:min:MAX_AREAKM": 41, "numnum:sum:MAX_AREAKM": 155, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 44, "numnum:min:MIN_AREAMI": 16, "numnum:sum:MIN_AREAMI": 60, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 44, "numnum:min:MAX_AREAMI": 16, "numnum:sum:MAX_AREAMI": 60, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 98, "numnum:min:MIN_PERKM": 69, "numnum:sum:MIN_PERKM": 167, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 98, "numnum:min:MAX_PERKM": 69, "numnum:sum:MAX_PERKM": 167, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 61, "numnum:min:MIN_PERMI": 43, "numnum:sum:MIN_PERMI": 104, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 61, "numnum:min:MAX_PERMI": 43, "numnum:sum:MAX_PERMI": 104, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 21.3, "numnum:min:MIN_BBXMIN": 21.066667, "numnum:sum:MIN_BBXMIN": 42.366667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 21.3, "numnum:min:MAX_BBXMIN": 21.066667, "numnum:sum:MAX_BBXMIN": 42.366667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 21.533333, "numnum:min:MIN_BBXMAX": 21.208333, "numnum:sum:MIN_BBXMAX": 42.741665999999998, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 21.533333, "numnum:min:MAX_BBXMAX": 21.208333, "numnum:sum:MAX_BBXMAX": 42.741665999999998, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 42.625, "numnum:min:MIN_BBYMIN": 41.95, "numnum:sum:MIN_BBYMIN": 84.575, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 42.625, "numnum:min:MAX_BBYMIN": 41.95, "numnum:sum:MAX_BBYMIN": 84.575, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 42.733333, "numnum:min:MIN_BBYMAX": 42.066667, "numnum:sum:MIN_BBYMAX": 84.80000000000001, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 42.733333, "numnum:min:MAX_BBYMAX": 42.066667, "numnum:sum:MAX_BBYMAX": 84.80000000000001, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 21.430243, "numnum:min:MEAN_BBXC": 21.146346, "numnum:sum:MEAN_BBXC": 42.576589, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 42.666218, "numnum:min:MEAN_BBYC": 42.007257, "numnum:sum:MEAN_BBYC": 84.673475, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 1, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 1, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 550000, "numnum:min:GN_POP": 474889, "numnum:sum:GN_POP": 1024889, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 668, "numnum:min:GTOPO30": 246, "numnum:sum:GTOPO30": 914, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.650122 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 310, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 7, "numnum:sum:LABELRANK": 15, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 60.175563, "numnum:min:LATITUDE": 59.433877, "numnum:sum:LATITUDE": 119.60944, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 24.934126, "numnum:min:LONGITUDE": 24.728041, "numnum:sum:LONGITUDE": 49.662167, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1115000, "numnum:min:POP_MAX": 394024, "numnum:sum:POP_MAX": 1509024, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 558457, "numnum:min:POP_MIN": 340027, "numnum:sum:POP_MIN": 898484, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 762958, "numnum:min:POP_OTHER": 317949, "numnum:sum:POP_OTHER": 1080907, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 658225, "numnum:min:GEONAMEID": 588409, "numnum:sum:GEONAMEID": 1246634, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 852233, "numnum:min:MAX_POP10": 340027, "numnum:sum:MAX_POP10": 1192260, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 852233, "numnum:min:MAX_POP20": 340027, "numnum:sum:MAX_POP20": 1192260, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 852233, "numnum:min:MAX_POP50": 340027, "numnum:sum:MAX_POP50": 1192260, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 852233, "numnum:min:MAX_POP300": 340027, "numnum:sum:MAX_POP300": 1192260, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 513, "numnum:min:MIN_AREAKM": 130, "numnum:sum:MIN_AREAKM": 643, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 513, "numnum:min:MAX_AREAKM": 130, "numnum:sum:MAX_AREAKM": 643, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 198, "numnum:min:MIN_AREAMI": 50, "numnum:sum:MIN_AREAMI": 248, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 198, "numnum:min:MAX_AREAMI": 50, "numnum:sum:MAX_AREAMI": 248, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 550, "numnum:min:MIN_PERKM": 164, "numnum:sum:MIN_PERKM": 714, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 550, "numnum:min:MAX_PERKM": 164, "numnum:sum:MAX_PERKM": 714, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 342, "numnum:min:MIN_PERMI": 102, "numnum:sum:MIN_PERMI": 444, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 342, "numnum:min:MAX_PERMI": 102, "numnum:sum:MAX_PERMI": 444, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 24.591667, "numnum:min:MIN_BBXMIN": 24.558333, "numnum:sum:MIN_BBXMIN": 49.150000000000009, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 24.591667, "numnum:min:MAX_BBXMIN": 24.558333, "numnum:sum:MAX_BBXMIN": 49.150000000000009, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 25.191667, "numnum:min:MIN_BBXMAX": 24.916667, "numnum:sum:MIN_BBXMAX": 50.108334, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 25.191667, "numnum:min:MAX_BBXMAX": 24.916667, "numnum:sum:MAX_BBXMAX": 50.108334, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 60.116667, "numnum:min:MIN_BBYMIN": 59.333333, "numnum:sum:MIN_BBYMIN": 119.45, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 60.116667, "numnum:min:MAX_BBYMIN": 59.333333, "numnum:sum:MAX_BBYMIN": 119.45, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 60.433333, "numnum:min:MIN_BBYMAX": 59.525, "numnum:sum:MIN_BBYMAX": 119.958333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 60.433333, "numnum:min:MAX_BBYMAX": 59.525, "numnum:sum:MAX_BBYMAX": 119.958333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 24.910042, "numnum:min:MEAN_BBXC": 24.746591, "numnum:sum:MEAN_BBXC": 49.656633, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 60.254779, "numnum:min:MEAN_BBYC": 59.42709, "numnum:sum:MEAN_BBYC": 119.681869, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 13, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 14, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 558457, "numnum:min:GN_POP": 394024, "numnum:sum:GN_POP": 952481, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 23, "numnum:min:GTOPO30": 22, "numnum:sum:GTOPO30": 45, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 183, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 183, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 60.19, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 60.19, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 24.97, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 24.97, "numnum:count:POP1950": 2, "numnum:max:POP1950": 366, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 366, "numnum:count:POP1955": 2, "numnum:max:POP1955": 405, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 405, "numnum:count:POP1960": 2, "numnum:max:POP1960": 448, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 448, "numnum:count:POP1965": 2, "numnum:max:POP1965": 478, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 478, "numnum:count:POP1970": 2, "numnum:max:POP1970": 507, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 507, "numnum:count:POP1975": 2, "numnum:max:POP1975": 582, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 582, "numnum:count:POP1980": 2, "numnum:max:POP1980": 674, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 674, "numnum:count:POP1985": 2, "numnum:max:POP1985": 724, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 724, "numnum:count:POP1990": 2, "numnum:max:POP1990": 872, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 872, "numnum:count:POP1995": 2, "numnum:max:POP1995": 943, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 943, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1019, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1019, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1094, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1094, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1115, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1115, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1139, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1139, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1169, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1169, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1195, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1195, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1220, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1220, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 24.916992, 60.174306 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 420, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 7, "numnum:sum:LABELRANK": 23, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 60.175563, "numnum:min:LATITUDE": 56.950024, "numnum:sum:LATITUDE": 176.559464, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 24.934126, "numnum:min:LONGITUDE": 24.099965, "numnum:sum:LONGITUDE": 73.762132, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1115000, "numnum:min:POP_MAX": 394024, "numnum:sum:POP_MAX": 2251596, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 705033, "numnum:min:POP_MIN": 340027, "numnum:sum:POP_MIN": 1603517, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 762958, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 1080907, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 33, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 32, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 658225, "numnum:min:GEONAMEID": 456172, "numnum:sum:GEONAMEID": 1702806, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 852233, "numnum:min:MAX_POP10": 340027, "numnum:sum:MAX_POP10": 1897293, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 852233, "numnum:min:MAX_POP20": 340027, "numnum:sum:MAX_POP20": 1897293, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 852233, "numnum:min:MAX_POP50": 340027, "numnum:sum:MAX_POP50": 1897293, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 852233, "numnum:min:MAX_POP300": 340027, "numnum:sum:MAX_POP300": 1897293, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 513, "numnum:min:MIN_AREAKM": 130, "numnum:sum:MIN_AREAKM": 814, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 513, "numnum:min:MAX_AREAKM": 130, "numnum:sum:MAX_AREAKM": 814, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 198, "numnum:min:MIN_AREAMI": 50, "numnum:sum:MIN_AREAMI": 314, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 198, "numnum:min:MAX_AREAMI": 50, "numnum:sum:MAX_AREAMI": 314, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 550, "numnum:min:MIN_PERKM": 164, "numnum:sum:MIN_PERKM": 887, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 550, "numnum:min:MAX_PERKM": 164, "numnum:sum:MAX_PERKM": 887, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 342, "numnum:min:MIN_PERMI": 102, "numnum:sum:MIN_PERMI": 552, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 342, "numnum:min:MAX_PERMI": 102, "numnum:sum:MAX_PERMI": 552, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 24.591667, "numnum:min:MIN_BBXMIN": 23.975, "numnum:sum:MIN_BBXMIN": 73.125, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 24.591667, "numnum:min:MAX_BBXMIN": 23.975, "numnum:sum:MAX_BBXMIN": 73.125, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 25.191667, "numnum:min:MIN_BBXMAX": 24.266667, "numnum:sum:MIN_BBXMAX": 74.375001, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 25.191667, "numnum:min:MAX_BBXMAX": 24.266667, "numnum:sum:MAX_BBXMAX": 74.375001, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 60.116667, "numnum:min:MIN_BBYMIN": 56.875, "numnum:sum:MIN_BBYMIN": 176.325, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 60.116667, "numnum:min:MAX_BBYMIN": 56.875, "numnum:sum:MAX_BBYMIN": 176.325, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 60.433333, "numnum:min:MIN_BBYMAX": 57.083333, "numnum:sum:MIN_BBYMAX": 177.041666, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 60.433333, "numnum:min:MAX_BBYMAX": 57.083333, "numnum:sum:MAX_BBYMAX": 177.041666, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 24.910042, "numnum:min:MEAN_BBXC": 24.127656, "numnum:sum:MEAN_BBXC": 73.784289, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 60.254779, "numnum:min:MEAN_BBYC": 56.953571, "numnum:sum:MEAN_BBYC": 176.63544000000003, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 25, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 39, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 742572, "numnum:min:GN_POP": 394024, "numnum:sum:GN_POP": 1695053, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 23, "numnum:min:GTOPO30": 9, "numnum:sum:GTOPO30": 54, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 183, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 183, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 60.19, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 60.19, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 24.97, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 24.97, "numnum:count:POP1950": 3, "numnum:max:POP1950": 366, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 366, "numnum:count:POP1955": 3, "numnum:max:POP1955": 405, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 405, "numnum:count:POP1960": 3, "numnum:max:POP1960": 448, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 448, "numnum:count:POP1965": 3, "numnum:max:POP1965": 478, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 478, "numnum:count:POP1970": 3, "numnum:max:POP1970": 507, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 507, "numnum:count:POP1975": 3, "numnum:max:POP1975": 582, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 582, "numnum:count:POP1980": 3, "numnum:max:POP1980": 674, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 674, "numnum:count:POP1985": 3, "numnum:max:POP1985": 724, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 724, "numnum:count:POP1990": 3, "numnum:max:POP1990": 872, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 872, "numnum:count:POP1995": 3, "numnum:max:POP1995": 943, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 943, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1019, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1019, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1094, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1094, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1115, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1115, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1139, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1139, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1169, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1169, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1195, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1195, "numnum:count:POP2050": 3, "numnum:max:POP2050": 1220, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1220, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ 24.916992, 60.174306 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 56.950024, "numnum:min:LATITUDE": 54.683366, "numnum:sum:LATITUDE": 111.63338999999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 25.316635, "numnum:min:LONGITUDE": 24.099965, "numnum:sum:LONGITUDE": 49.4166, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 742572, "numnum:min:POP_MAX": 542366, "numnum:sum:POP_MAX": 1284938, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 705033, "numnum:min:POP_MIN": 507029, "numnum:sum:POP_MIN": 1212062, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 494356, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 494356, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 11, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 593116, "numnum:min:GEONAMEID": 456172, "numnum:sum:GEONAMEID": 1049288, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 705033, "numnum:min:MAX_POP10": 507029, "numnum:sum:MAX_POP10": 1212062, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 705033, "numnum:min:MAX_POP20": 507029, "numnum:sum:MAX_POP20": 1212062, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 705033, "numnum:min:MAX_POP50": 507029, "numnum:sum:MAX_POP50": 1212062, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 705033, "numnum:min:MAX_POP300": 507029, "numnum:sum:MAX_POP300": 1212062, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 171, "numnum:min:MIN_AREAKM": 126, "numnum:sum:MIN_AREAKM": 297, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 171, "numnum:min:MAX_AREAKM": 126, "numnum:sum:MAX_AREAKM": 297, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 66, "numnum:min:MIN_AREAMI": 49, "numnum:sum:MIN_AREAMI": 115, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 66, "numnum:min:MAX_AREAMI": 49, "numnum:sum:MAX_AREAMI": 115, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 173, "numnum:min:MIN_PERKM": 162, "numnum:sum:MIN_PERKM": 335, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 173, "numnum:min:MAX_PERKM": 162, "numnum:sum:MAX_PERKM": 335, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 108, "numnum:min:MIN_PERMI": 101, "numnum:sum:MIN_PERMI": 209, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 108, "numnum:min:MAX_PERMI": 101, "numnum:sum:MAX_PERMI": 209, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 25.166667, "numnum:min:MIN_BBXMIN": 23.975, "numnum:sum:MIN_BBXMIN": 49.141667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 25.166667, "numnum:min:MAX_BBXMIN": 23.975, "numnum:sum:MAX_BBXMIN": 49.141667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 25.391667, "numnum:min:MIN_BBXMAX": 24.266667, "numnum:sum:MIN_BBXMAX": 49.658334, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 25.391667, "numnum:min:MAX_BBXMAX": 24.266667, "numnum:sum:MAX_BBXMAX": 49.658334, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 56.875, "numnum:min:MIN_BBYMIN": 54.575, "numnum:sum:MIN_BBYMIN": 111.45, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 56.875, "numnum:min:MAX_BBYMIN": 54.575, "numnum:sum:MAX_BBYMIN": 111.45, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 57.083333, "numnum:min:MIN_BBYMAX": 54.775, "numnum:sum:MIN_BBYMAX": 111.858333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 57.083333, "numnum:min:MAX_BBYMAX": 54.775, "numnum:sum:MAX_BBYMAX": 111.858333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 25.259623, "numnum:min:MEAN_BBXC": 24.127656, "numnum:sum:MEAN_BBXC": 49.38727900000001, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 56.953571, "numnum:min:MEAN_BBYC": 54.692063, "numnum:sum:MEAN_BBYC": 111.645634, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 65, "numnum:min:ADMIN1_COD": 25, "numnum:sum:ADMIN1_COD": 90, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 742572, "numnum:min:GN_POP": 542366, "numnum:sum:GN_POP": 1284938, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 125, "numnum:min:GTOPO30": 9, "numnum:sum:GTOPO30": 134, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 24.125977, 56.944974 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.673831 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Minsk", "DIFFASCII": 0, "NAMEASCII": "Minsk", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Belarus", "SOV_A3": "BLR", "ADM0NAME": "Belarus", "ADM0_A3": "BLR", "ADM1NAME": "Minsk", "ISO_A2": "BY", "LATITUDE": 53.899977, "LONGITUDE": 27.566627, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1577138, "POP_OTHER": 1557919, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 625144, "MEGANAME": "Minsk", "LS_NAME": "Minsk", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1577138, "MAX_POP20": 1577138, "MAX_POP50": 1577138, "MAX_POP300": 1577138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 82, "MAX_AREAMI": 82, "MIN_PERKM": 196, "MAX_PERKM": 196, "MIN_PERMI": 122, "MAX_PERMI": 122, "MIN_BBXMIN": 27.408333, "MAX_BBXMIN": 27.408333, "MIN_BBXMAX": 27.716667, "MAX_BBXMAX": 27.716667, "MIN_BBYMIN": 53.8, "MAX_BBYMIN": 53.8, "MIN_BBYMAX": 53.983333, "MAX_BBYMAX": 53.983333, "MEAN_BBXC": 27.562159, "MEAN_BBYC": 53.893169, "COMPARE": 0, "GN_ASCII": "Minsk", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1742124, "ELEVATION": 0, "GTOPO30": 199, "TIMEZONE": "Europe/Minsk", "GEONAMESNO": "GeoNames match general.", "UN_FID": 4, "UN_ADM0": "Belarus", "UN_LAT": 53.89, "UN_LONG": 27.57, "POP1950": 284, "POP1955": 414, "POP1960": 551, "POP1965": 719, "POP1970": 932, "POP1975": 1120, "POP1980": 1318, "POP1985": 1474, "POP1990": 1607, "POP1995": 1649, "POP2000": 1700, "POP2005": 1775, "POP2010": 1805, "POP2015": 1846, "POP2020": 1879, "POP2025": 1883, "POP2050": 1883, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 27.553711, 53.904338 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Minsk", "DIFFASCII": 0, "NAMEASCII": "Minsk", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Belarus", "SOV_A3": "BLR", "ADM0NAME": "Belarus", "ADM0_A3": "BLR", "ADM1NAME": "Minsk", "ISO_A2": "BY", "LATITUDE": 53.899977, "LONGITUDE": 27.566627, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1577138, "POP_OTHER": 1557919, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 625144, "MEGANAME": "Minsk", "LS_NAME": "Minsk", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1577138, "MAX_POP20": 1577138, "MAX_POP50": 1577138, "MAX_POP300": 1577138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 82, "MAX_AREAMI": 82, "MIN_PERKM": 196, "MAX_PERKM": 196, "MIN_PERMI": 122, "MAX_PERMI": 122, "MIN_BBXMIN": 27.408333, "MAX_BBXMIN": 27.408333, "MIN_BBXMAX": 27.716667, "MAX_BBXMAX": 27.716667, "MIN_BBYMIN": 53.8, "MAX_BBYMIN": 53.8, "MIN_BBYMAX": 53.983333, "MAX_BBYMAX": 53.983333, "MEAN_BBXC": 27.562159, "MEAN_BBYC": 53.893169, "COMPARE": 0, "GN_ASCII": "Minsk", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1742124, "ELEVATION": 0, "GTOPO30": 199, "TIMEZONE": "Europe/Minsk", "GEONAMESNO": "GeoNames match general.", "UN_FID": 4, "UN_ADM0": "Belarus", "UN_LAT": 53.89, "UN_LONG": 27.57, "POP1950": 284, "POP1955": 414, "POP1960": 551, "POP1965": 719, "POP1970": 932, "POP1975": 1120, "POP1980": 1318, "POP1985": 1474, "POP1990": 1607, "POP1995": 1649, "POP2000": 1700, "POP2005": 1775, "POP2010": 1805, "POP2015": 1846, "POP2020": 1879, "POP2025": 1883, "POP2050": 1883, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ 27.553711, 53.904338 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 610, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 18, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 50.433367, "numnum:min:LATITUDE": 42.683349, "numnum:sum:LATITUDE": 137.550088, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 30.516628, "numnum:min:LONGITUDE": 23.316654, "numnum:sum:LONGITUDE": 79.933229, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 2709000, "numnum:min:POP_MAX": 1185000, "numnum:sum:POP_MAX": 5836000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1742194, "numnum:min:POP_MIN": 874827, "numnum:sum:POP_MIN": 4279529, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1636574, "numnum:min:POP_OTHER": 871735, "numnum:sum:POP_OTHER": 4120001, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 35, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 727011, "numnum:min:GEONAMEID": 683506, "numnum:sum:GEONAMEID": 2113965, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1742194, "numnum:min:MAX_POP10": 874827, "numnum:sum:MAX_POP10": 4279529, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1742194, "numnum:min:MAX_POP20": 874827, "numnum:sum:MAX_POP20": 4279529, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1742194, "numnum:min:MAX_POP50": 874827, "numnum:sum:MAX_POP50": 4279529, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1742194, "numnum:min:MAX_POP300": 874827, "numnum:sum:MAX_POP300": 4279529, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 345, "numnum:min:MIN_AREAKM": 217, "numnum:sum:MIN_AREAKM": 779, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 345, "numnum:min:MAX_AREAKM": 217, "numnum:sum:MAX_AREAKM": 779, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 133, "numnum:min:MIN_AREAMI": 84, "numnum:sum:MIN_AREAMI": 301, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 133, "numnum:min:MAX_AREAMI": 84, "numnum:sum:MAX_AREAMI": 301, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 357, "numnum:min:MIN_PERKM": 120, "numnum:sum:MIN_PERKM": 651, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 357, "numnum:min:MAX_PERKM": 120, "numnum:sum:MAX_PERKM": 651, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 222, "numnum:min:MIN_PERMI": 75, "numnum:sum:MIN_PERMI": 405, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 222, "numnum:min:MAX_PERMI": 75, "numnum:sum:MAX_PERMI": 405, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 30.325, "numnum:min:MIN_BBXMIN": 23.208333, "numnum:sum:MIN_BBXMIN": 79.4, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 30.325, "numnum:min:MAX_BBXMIN": 23.208333, "numnum:sum:MAX_BBXMIN": 79.4, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 30.575, "numnum:min:MIN_BBXMAX": 23.45, "numnum:sum:MIN_BBXMAX": 80.275, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 30.575, "numnum:min:MAX_BBXMAX": 23.45, "numnum:sum:MAX_BBXMAX": 80.275, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 50.366667, "numnum:min:MIN_BBYMIN": 42.575, "numnum:sum:MIN_BBYMIN": 137.258334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 50.366667, "numnum:min:MAX_BBYMIN": 42.575, "numnum:sum:MAX_BBYMIN": 137.258334, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 50.541667, "numnum:min:MIN_BBYMAX": 42.8, "numnum:sum:MIN_BBYMAX": 137.983334, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 50.541667, "numnum:min:MAX_BBYMAX": 42.8, "numnum:sum:MAX_BBYMAX": 137.983334, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 30.45263, "numnum:min:MEAN_BBXC": 23.328319, "numnum:sum:MEAN_BBXC": 79.863131, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 50.451094, "numnum:min:MEAN_BBYC": 42.68234, "numnum:sum:MEAN_BBYC": 137.577544, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 42, "numnum:min:ADMIN1_COD": 10, "numnum:sum:ADMIN1_COD": 64, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 2514227, "numnum:min:GN_POP": 1152556, "numnum:sum:GN_POP": 5543938, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 558, "numnum:min:GTOPO30": 71, "numnum:sum:GTOPO30": 798, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 511, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 933, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 50.44, "numnum:min:UN_LAT": 42.7, "numnum:sum:UN_LAT": 137.57, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 30.5, "numnum:min:UN_LONG": 23.33, "numnum:sum:UN_LONG": 79.95, "numnum:count:POP1950": 3, "numnum:max:POP1950": 815, "numnum:min:POP1950": 522, "numnum:sum:POP1950": 1989, "numnum:count:POP1955": 3, "numnum:max:POP1955": 974, "numnum:min:POP1955": 616, "numnum:sum:POP1955": 2446, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1163, "numnum:min:POP1960": 708, "numnum:sum:POP1960": 2873, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1389, "numnum:min:POP1965": 806, "numnum:sum:POP1965": 3349, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1655, "numnum:min:POP1970": 888, "numnum:sum:POP1970": 3939, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1926, "numnum:min:POP1975": 977, "numnum:sum:POP1975": 4605, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2201, "numnum:min:POP1980": 1074, "numnum:sum:POP1980": 5140, "numnum:count:POP1985": 3, "numnum:max:POP1985": 2410, "numnum:min:POP1985": 1181, "numnum:sum:POP1985": 5541, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2574, "numnum:min:POP1990": 1191, "numnum:sum:POP1990": 5805, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2590, "numnum:min:POP1995": 1168, "numnum:sum:POP1995": 5776, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2606, "numnum:min:POP2000": 1128, "numnum:sum:POP2000": 5683, "numnum:count:POP2005": 3, "numnum:max:POP2005": 2672, "numnum:min:POP2005": 1166, "numnum:sum:POP2005": 5774, "numnum:count:POP2010": 3, "numnum:max:POP2010": 2709, "numnum:min:POP2010": 1185, "numnum:sum:POP2010": 5836, "numnum:count:POP2015": 3, "numnum:max:POP2015": 2748, "numnum:min:POP2015": 1212, "numnum:sum:POP2015": 5907, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2770, "numnum:min:POP2020": 1233, "numnum:sum:POP2020": 5952, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2772, "numnum:min:POP2025": 1236, "numnum:sum:POP2025": 5957, "numnum:count:POP2050": 3, "numnum:max:POP2050": 2772, "numnum:min:POP2050": 1236, "numnum:sum:POP2050": 5957, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ 30.541992, 50.429518 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 610, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 18, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 50.433367, "numnum:min:LATITUDE": 42.683349, "numnum:sum:LATITUDE": 137.550088, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 30.516628, "numnum:min:LONGITUDE": 23.316654, "numnum:sum:LONGITUDE": 79.933229, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 2709000, "numnum:min:POP_MAX": 1185000, "numnum:sum:POP_MAX": 5836000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1742194, "numnum:min:POP_MIN": 874827, "numnum:sum:POP_MIN": 4279529, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1636574, "numnum:min:POP_OTHER": 871735, "numnum:sum:POP_OTHER": 4120001, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 35, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 727011, "numnum:min:GEONAMEID": 683506, "numnum:sum:GEONAMEID": 2113965, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1742194, "numnum:min:MAX_POP10": 874827, "numnum:sum:MAX_POP10": 4279529, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1742194, "numnum:min:MAX_POP20": 874827, "numnum:sum:MAX_POP20": 4279529, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1742194, "numnum:min:MAX_POP50": 874827, "numnum:sum:MAX_POP50": 4279529, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1742194, "numnum:min:MAX_POP300": 874827, "numnum:sum:MAX_POP300": 4279529, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 345, "numnum:min:MIN_AREAKM": 217, "numnum:sum:MIN_AREAKM": 779, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 345, "numnum:min:MAX_AREAKM": 217, "numnum:sum:MAX_AREAKM": 779, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 133, "numnum:min:MIN_AREAMI": 84, "numnum:sum:MIN_AREAMI": 301, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 133, "numnum:min:MAX_AREAMI": 84, "numnum:sum:MAX_AREAMI": 301, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 357, "numnum:min:MIN_PERKM": 120, "numnum:sum:MIN_PERKM": 651, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 357, "numnum:min:MAX_PERKM": 120, "numnum:sum:MAX_PERKM": 651, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 222, "numnum:min:MIN_PERMI": 75, "numnum:sum:MIN_PERMI": 405, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 222, "numnum:min:MAX_PERMI": 75, "numnum:sum:MAX_PERMI": 405, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 30.325, "numnum:min:MIN_BBXMIN": 23.208333, "numnum:sum:MIN_BBXMIN": 79.4, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 30.325, "numnum:min:MAX_BBXMIN": 23.208333, "numnum:sum:MAX_BBXMIN": 79.4, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 30.575, "numnum:min:MIN_BBXMAX": 23.45, "numnum:sum:MIN_BBXMAX": 80.275, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 30.575, "numnum:min:MAX_BBXMAX": 23.45, "numnum:sum:MAX_BBXMAX": 80.275, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 50.366667, "numnum:min:MIN_BBYMIN": 42.575, "numnum:sum:MIN_BBYMIN": 137.258334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 50.366667, "numnum:min:MAX_BBYMIN": 42.575, "numnum:sum:MAX_BBYMIN": 137.258334, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 50.541667, "numnum:min:MIN_BBYMAX": 42.8, "numnum:sum:MIN_BBYMAX": 137.983334, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 50.541667, "numnum:min:MAX_BBYMAX": 42.8, "numnum:sum:MAX_BBYMAX": 137.983334, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 30.45263, "numnum:min:MEAN_BBXC": 23.328319, "numnum:sum:MEAN_BBXC": 79.863131, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 50.451094, "numnum:min:MEAN_BBYC": 42.68234, "numnum:sum:MEAN_BBYC": 137.577544, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 42, "numnum:min:ADMIN1_COD": 10, "numnum:sum:ADMIN1_COD": 64, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 2514227, "numnum:min:GN_POP": 1152556, "numnum:sum:GN_POP": 5543938, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 558, "numnum:min:GTOPO30": 71, "numnum:sum:GTOPO30": 798, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 511, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 933, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 50.44, "numnum:min:UN_LAT": 42.7, "numnum:sum:UN_LAT": 137.57, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 30.5, "numnum:min:UN_LONG": 23.33, "numnum:sum:UN_LONG": 79.95, "numnum:count:POP1950": 3, "numnum:max:POP1950": 815, "numnum:min:POP1950": 522, "numnum:sum:POP1950": 1989, "numnum:count:POP1955": 3, "numnum:max:POP1955": 974, "numnum:min:POP1955": 616, "numnum:sum:POP1955": 2446, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1163, "numnum:min:POP1960": 708, "numnum:sum:POP1960": 2873, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1389, "numnum:min:POP1965": 806, "numnum:sum:POP1965": 3349, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1655, "numnum:min:POP1970": 888, "numnum:sum:POP1970": 3939, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1926, "numnum:min:POP1975": 977, "numnum:sum:POP1975": 4605, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2201, "numnum:min:POP1980": 1074, "numnum:sum:POP1980": 5140, "numnum:count:POP1985": 3, "numnum:max:POP1985": 2410, "numnum:min:POP1985": 1181, "numnum:sum:POP1985": 5541, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2574, "numnum:min:POP1990": 1191, "numnum:sum:POP1990": 5805, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2590, "numnum:min:POP1995": 1168, "numnum:sum:POP1995": 5776, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2606, "numnum:min:POP2000": 1128, "numnum:sum:POP2000": 5683, "numnum:count:POP2005": 3, "numnum:max:POP2005": 2672, "numnum:min:POP2005": 1166, "numnum:sum:POP2005": 5774, "numnum:count:POP2010": 3, "numnum:max:POP2010": 2709, "numnum:min:POP2010": 1185, "numnum:sum:POP2010": 5836, "numnum:count:POP2015": 3, "numnum:max:POP2015": 2748, "numnum:min:POP2015": 1212, "numnum:sum:POP2015": 5907, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2770, "numnum:min:POP2020": 1233, "numnum:sum:POP2020": 5952, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2772, "numnum:min:POP2025": 1236, "numnum:sum:POP2025": 5957, "numnum:count:POP2050": 3, "numnum:max:POP2050": 2772, "numnum:min:POP2050": 1236, "numnum:sum:POP2050": 5957, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ 30.541992, 50.429518 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1310, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 2, "numnum:sum:LABELRANK": 15, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 55.752164, "numnum:min:LATITUDE": 41.104996, "numnum:sum:LATITUDE": 143.86218399999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 37.615523, "numnum:min:LONGITUDE": 28.857711, "numnum:sum:LONGITUDE": 95.483236, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 10452000, "numnum:min:POP_MAX": 688134, "numnum:sum:POP_MAX": 21201134, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 10452000, "numnum:min:POP_MIN": 635994, "numnum:sum:POP_MIN": 21033604, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 10585385, "numnum:min:POP_OTHER": 664472, "numnum:sum:POP_OTHER": 20901345, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 39, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 38, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 745044, "numnum:min:GEONAMEID": 524901, "numnum:sum:GEONAMEID": 1888371, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 11029015, "numnum:min:MAX_POP10": 688134, "numnum:sum:MAX_POP10": 21662759, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 11030955, "numnum:min:MAX_POP20": 688134, "numnum:sum:MAX_POP20": 21664332, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 11547877, "numnum:min:MAX_POP50": 688134, "numnum:sum:MAX_POP50": 22376961, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 11547877, "numnum:min:MAX_POP300": 688134, "numnum:sum:MAX_POP300": 22376961, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 11547877, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 21688827, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1434, "numnum:min:MIN_AREAKM": 109, "numnum:sum:MIN_AREAKM": 2792, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1639, "numnum:min:MAX_AREAKM": 109, "numnum:sum:MAX_AREAKM": 3075, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 554, "numnum:min:MIN_AREAMI": 42, "numnum:sum:MIN_AREAMI": 1078, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 633, "numnum:min:MAX_AREAMI": 42, "numnum:sum:MAX_AREAMI": 1187, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 875, "numnum:min:MIN_PERKM": 85, "numnum:sum:MIN_PERKM": 1812, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 1135, "numnum:min:MAX_PERKM": 85, "numnum:sum:MAX_PERKM": 2146, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 544, "numnum:min:MIN_PERMI": 53, "numnum:sum:MIN_PERMI": 1126, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 705, "numnum:min:MAX_PERMI": 53, "numnum:sum:MAX_PERMI": 1333, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 37.233333, "numnum:min:MIN_BBXMIN": 28.2, "numnum:sum:MIN_BBXMIN": 94.175, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 37.233333, "numnum:min:MAX_BBXMIN": 28.257268, "numnum:sum:MAX_BBXMIN": 94.232268, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 38.075401, "numnum:min:MIN_BBXMAX": 28.925, "numnum:sum:MIN_BBXMAX": 96.450401, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 38.3, "numnum:min:MAX_BBXMAX": 28.925, "numnum:sum:MAX_BBXMAX": 96.783333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 55.341667, "numnum:min:MIN_BBYMIN": 40.75, "numnum:sum:MIN_BBYMIN": 143.04166700000003, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 55.533007, "numnum:min:MAX_BBYMIN": 40.75, "numnum:sum:MAX_BBYMIN": 143.233007, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 56.075, "numnum:min:MIN_BBYMAX": 41.258333, "numnum:sum:MIN_BBYMAX": 144.40833300000004, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 56.075, "numnum:min:MAX_BBYMAX": 41.258333, "numnum:sum:MAX_BBYMAX": 144.40833300000004, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 37.643636, "numnum:min:MEAN_BBXC": 28.840203, "numnum:sum:MEAN_BBXC": 95.49282600000001, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 55.754996, "numnum:min:MEAN_BBYC": 41.004964, "numnum:sum:MEAN_BBYC": 143.777145, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 57, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 91, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 11174257, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 11810251, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 52, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 80, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 504, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 930, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 55.74, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 96.80000000000001, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 37.7, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 66.7, "numnum:count:POP1950": 3, "numnum:max:POP1950": 5356, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 6323, "numnum:count:POP1955": 3, "numnum:max:POP1955": 5749, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 6998, "numnum:count:POP1960": 3, "numnum:max:POP1960": 6170, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 7623, "numnum:count:POP1965": 3, "numnum:max:POP1965": 6622, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 8623, "numnum:count:POP1970": 3, "numnum:max:POP1970": 7106, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 9878, "numnum:count:POP1975": 3, "numnum:max:POP1975": 7623, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 11223, "numnum:count:POP1980": 3, "numnum:max:POP1980": 8136, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 12533, "numnum:count:POP1985": 3, "numnum:max:POP1985": 8580, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 13987, "numnum:count:POP1990": 3, "numnum:max:POP1990": 8987, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 15539, "numnum:count:POP1995": 3, "numnum:max:POP1995": 9201, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 16866, "numnum:count:POP2000": 3, "numnum:max:POP2000": 10016, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 18760, "numnum:count:POP2005": 3, "numnum:max:POP2005": 10416, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 20125, "numnum:count:POP2010": 3, "numnum:max:POP2010": 10452, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 20513, "numnum:count:POP2015": 3, "numnum:max:POP2015": 10530, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 21025, "numnum:count:POP2020": 3, "numnum:max:POP2020": 11177, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 21701, "numnum:count:POP2025": 3, "numnum:max:POP2025": 11695, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 22221, "numnum:count:POP2050": 3, "numnum:max:POP2050": 12102, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 22628, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 710, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 47.005024, "numnum:min:LATITUDE": 41.104996, "numnum:sum:LATITUDE": 88.11001999999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 29.010002, "numnum:min:LONGITUDE": 28.857711, "numnum:sum:LONGITUDE": 57.867712999999998, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 10061000, "numnum:min:POP_MAX": 688134, "numnum:sum:POP_MAX": 10749134, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 9945610, "numnum:min:POP_MIN": 635994, "numnum:sum:POP_MIN": 10581604, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 9651488, "numnum:min:POP_OTHER": 664472, "numnum:sum:POP_OTHER": 10315960, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 745044, "numnum:min:GEONAMEID": 618426, "numnum:sum:GEONAMEID": 1363470, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 9945610, "numnum:min:MAX_POP10": 688134, "numnum:sum:MAX_POP10": 10633744, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 9945243, "numnum:min:MAX_POP20": 688134, "numnum:sum:MAX_POP20": 10633377, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 10140950, "numnum:min:MAX_POP50": 688134, "numnum:sum:MAX_POP50": 10829084, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 10140950, "numnum:min:MAX_POP300": 688134, "numnum:sum:MAX_POP300": 10829084, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 10140950, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 10140950, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1249, "numnum:min:MIN_AREAKM": 109, "numnum:sum:MIN_AREAKM": 1358, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1327, "numnum:min:MAX_AREAKM": 109, "numnum:sum:MAX_AREAKM": 1436, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 482, "numnum:min:MIN_AREAMI": 42, "numnum:sum:MIN_AREAMI": 524, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 512, "numnum:min:MAX_AREAMI": 42, "numnum:sum:MAX_AREAMI": 554, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 852, "numnum:min:MIN_PERKM": 85, "numnum:sum:MIN_PERKM": 937, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 926, "numnum:min:MAX_PERKM": 85, "numnum:sum:MAX_PERKM": 1011, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 529, "numnum:min:MIN_PERMI": 53, "numnum:sum:MIN_PERMI": 582, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 575, "numnum:min:MAX_PERMI": 53, "numnum:sum:MAX_PERMI": 628, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 28.741667, "numnum:min:MIN_BBXMIN": 28.2, "numnum:sum:MIN_BBXMIN": 56.941666999999998, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 28.741667, "numnum:min:MAX_BBXMIN": 28.257268, "numnum:sum:MAX_BBXMIN": 56.998935, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 29.45, "numnum:min:MIN_BBXMAX": 28.925, "numnum:sum:MIN_BBXMAX": 58.375, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 29.558333, "numnum:min:MAX_BBXMAX": 28.925, "numnum:sum:MAX_BBXMAX": 58.483333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 46.95, "numnum:min:MIN_BBYMIN": 40.75, "numnum:sum:MIN_BBYMIN": 87.7, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 46.95, "numnum:min:MAX_BBYMIN": 40.75, "numnum:sum:MAX_BBYMIN": 87.7, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 47.075, "numnum:min:MIN_BBYMAX": 41.258333, "numnum:sum:MIN_BBYMAX": 88.33333300000001, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 47.075, "numnum:min:MAX_BBYMAX": 41.258333, "numnum:sum:MAX_BBYMAX": 88.33333300000001, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 29.008987, "numnum:min:MEAN_BBXC": 28.840203, "numnum:sum:MEAN_BBXC": 57.84919, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 47.017185, "numnum:min:MEAN_BBYC": 41.004964, "numnum:sum:MEAN_BBYC": 88.022149, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 57, "numnum:min:ADMIN1_COD": 34, "numnum:sum:ADMIN1_COD": 91, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 11174257, "numnum:min:GN_POP": 635994, "numnum:sum:GN_POP": 11810251, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 52, "numnum:min:GTOPO30": 28, "numnum:sum:GTOPO30": 80, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 504, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 504, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 41.06, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 41.06, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 29, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 29, "numnum:count:POP1950": 2, "numnum:max:POP1950": 967, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 967, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1249, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1249, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1453, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1453, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2001, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2001, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2772, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2772, "numnum:count:POP1975": 2, "numnum:max:POP1975": 3600, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3600, "numnum:count:POP1980": 2, "numnum:max:POP1980": 4397, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4397, "numnum:count:POP1985": 2, "numnum:max:POP1985": 5407, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5407, "numnum:count:POP1990": 2, "numnum:max:POP1990": 6552, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 6552, "numnum:count:POP1995": 2, "numnum:max:POP1995": 7665, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 7665, "numnum:count:POP2000": 2, "numnum:max:POP2000": 8744, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 8744, "numnum:count:POP2005": 2, "numnum:max:POP2005": 9709, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 9709, "numnum:count:POP2010": 2, "numnum:max:POP2010": 10061, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 10061, "numnum:count:POP2015": 2, "numnum:max:POP2015": 10530, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 10530, "numnum:count:POP2020": 2, "numnum:max:POP2020": 11177, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 11177, "numnum:count:POP2025": 2, "numnum:max:POP2025": 11695, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 11695, "numnum:count:POP2050": 2, "numnum:max:POP2050": 12102, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 12102, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 420, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 20, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 41.72501, "numnum:min:LATITUDE": 36.763065, "numnum:sum:LATITUDE": 115.290853, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 44.790795, "numnum:min:LONGITUDE": 3.050553, "numnum:sum:LONGITUDE": 58.021026000000009, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3354000, "numnum:min:POP_MAX": 1100000, "numnum:sum:POP_MAX": 6866500, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1977663, "numnum:min:POP_MIN": 728453, "numnum:sum:POP_MIN": 3711373, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3332619, "numnum:min:POP_OTHER": 977179, "numnum:sum:POP_OTHER": 5984915, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 35, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2507480, "numnum:min:GEONAMEID": 611717, "numnum:sum:GEONAMEID": 5583667, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3368320, "numnum:min:MAX_POP10": 1005257, "numnum:sum:MAX_POP10": 6204753, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3698473, "numnum:min:MAX_POP20": 1005257, "numnum:sum:MAX_POP20": 6534906, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 4203253, "numnum:min:MAX_POP50": 1007529, "numnum:sum:MAX_POP50": 7049754, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 4203253, "numnum:min:MAX_POP300": 1007529, "numnum:sum:MAX_POP300": 7049754, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 886, "numnum:min:MIN_AREAKM": 131, "numnum:sum:MIN_AREAKM": 1497, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1275, "numnum:min:MAX_AREAKM": 135, "numnum:sum:MAX_AREAKM": 1912, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 342, "numnum:min:MIN_AREAMI": 51, "numnum:sum:MIN_AREAMI": 578, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 492, "numnum:min:MAX_AREAMI": 52, "numnum:sum:MAX_AREAMI": 738, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 798, "numnum:min:MIN_PERKM": 128, "numnum:sum:MIN_PERKM": 1411, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 1192, "numnum:min:MAX_PERKM": 133, "numnum:sum:MAX_PERKM": 1849, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 496, "numnum:min:MIN_PERMI": 80, "numnum:sum:MIN_PERMI": 878, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 741, "numnum:min:MAX_PERMI": 83, "numnum:sum:MAX_PERMI": 1150, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 44.708333, "numnum:min:MIN_BBXMIN": 2.641667, "numnum:sum:MIN_BBXMIN": 57.3, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 44.708333, "numnum:min:MAX_BBXMIN": 2.808333, "numnum:sum:MAX_BBXMIN": 57.466666000000007, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 44.933333, "numnum:min:MIN_BBXMAX": 3.548211, "numnum:sum:MIN_BBXMAX": 58.979129, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 44.933333, "numnum:min:MAX_BBXMAX": 3.741667, "numnum:sum:MAX_BBXMAX": 59.25, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 41.616667, "numnum:min:MIN_BBYMIN": 36.45, "numnum:sum:MIN_BBYMIN": 114.69999999999999, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 41.627355, "numnum:min:MAX_BBYMIN": 36.508333, "numnum:sum:MAX_BBYMIN": 114.76902100000001, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 41.825, "numnum:min:MIN_BBYMAX": 36.816667, "numnum:sum:MIN_BBYMAX": 115.60833400000002, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 41.825, "numnum:min:MAX_BBYMAX": 36.816667, "numnum:sum:MAX_BBYMAX": 115.60833400000002, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 44.822812, "numnum:min:MEAN_BBXC": 3.101671, "numnum:sum:MEAN_BBXC": 58.126524, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 41.722167, "numnum:min:MEAN_BBYC": 36.673641, "numnum:sum:MEAN_BBYC": 115.198782, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 38, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 39, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1977663, "numnum:min:GN_POP": 693210, "numnum:sum:GN_POP": 3720371, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 420, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 434, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 191, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 197, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 41.72, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 78.5, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 44.78, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 47.83, "numnum:count:POP1950": 3, "numnum:max:POP1950": 612, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1128, "numnum:count:POP1955": 3, "numnum:max:POP1955": 659, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1282, "numnum:count:POP1960": 3, "numnum:max:POP1960": 872, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1590, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1049, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1852, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1254, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2151, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1499, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2491, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1621, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2711, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1672, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2849, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1908, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3132, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2295, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3455, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2754, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3854, "numnum:count:POP2005": 3, "numnum:max:POP2005": 3199, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4292, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3354, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4454, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3574, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4682, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3922, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5035, "numnum:count:POP2025": 3, "numnum:max:POP2025": 4235, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5349, "numnum:count:POP2050": 3, "numnum:max:POP2050": 4499, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5613, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.738528 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.879587 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi", "accum2": 1, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 620, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 27, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 41.72501, "numnum:min:LATITUDE": 32.8925, "numnum:sum:LATITUDE": 148.183353, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 44.790795, "numnum:min:LONGITUDE": 3.050553, "numnum:sum:LONGITUDE": 71.20103800000001, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 3354000, "numnum:min:POP_MAX": 1100000, "numnum:sum:POP_MAX": 9055500, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 1977663, "numnum:min:POP_MIN": 229398, "numnum:sum:POP_MIN": 3940771, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 3332619, "numnum:min:POP_OTHER": 977179, "numnum:sum:POP_OTHER": 7134896, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 48, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 45, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 2507480, "numnum:min:GEONAMEID": -1, "numnum:sum:GEONAMEID": 5583666, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 3368320, "numnum:min:MAX_POP10": 1005257, "numnum:sum:MAX_POP10": 7378139, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 3698473, "numnum:min:MAX_POP20": 1005257, "numnum:sum:MAX_POP20": 7708292, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 4203253, "numnum:min:MAX_POP50": 1007529, "numnum:sum:MAX_POP50": 8223140, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 4203253, "numnum:min:MAX_POP300": 1007529, "numnum:sum:MAX_POP300": 8223140, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 886, "numnum:min:MIN_AREAKM": 131, "numnum:sum:MIN_AREAKM": 1692, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 1275, "numnum:min:MAX_AREAKM": 135, "numnum:sum:MAX_AREAKM": 2107, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 342, "numnum:min:MIN_AREAMI": 51, "numnum:sum:MIN_AREAMI": 653, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 492, "numnum:min:MAX_AREAMI": 52, "numnum:sum:MAX_AREAMI": 813, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 798, "numnum:min:MIN_PERKM": 128, "numnum:sum:MIN_PERKM": 1553, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 1192, "numnum:min:MAX_PERKM": 133, "numnum:sum:MAX_PERKM": 1991, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 496, "numnum:min:MIN_PERMI": 80, "numnum:sum:MIN_PERMI": 966, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 741, "numnum:min:MAX_PERMI": 83, "numnum:sum:MAX_PERMI": 1238, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 44.708333, "numnum:min:MIN_BBXMIN": 2.641667, "numnum:sum:MIN_BBXMIN": 70.283333, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 44.708333, "numnum:min:MAX_BBXMIN": 2.808333, "numnum:sum:MAX_BBXMIN": 70.449999, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 44.933333, "numnum:min:MIN_BBXMAX": 3.548211, "numnum:sum:MIN_BBXMAX": 72.387462, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 44.933333, "numnum:min:MAX_BBXMAX": 3.741667, "numnum:sum:MAX_BBXMAX": 72.658333, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 41.616667, "numnum:min:MIN_BBYMIN": 32.808333, "numnum:sum:MIN_BBYMIN": 147.508333, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 41.627355, "numnum:min:MAX_BBYMIN": 32.808333, "numnum:sum:MAX_BBYMIN": 147.577354, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 41.825, "numnum:min:MIN_BBYMAX": 32.908333, "numnum:sum:MIN_BBYMAX": 148.516667, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 41.825, "numnum:min:MAX_BBYMAX": 32.908333, "numnum:sum:MAX_BBYMAX": 148.516667, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 44.822812, "numnum:min:MEAN_BBXC": 3.101671, "numnum:sum:MEAN_BBXC": 71.319744, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 41.722167, "numnum:min:MEAN_BBYC": 32.862069, "numnum:sum:MEAN_BBYC": 148.06085099999999, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 38, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 48, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 1977663, "numnum:min:GN_POP": 229398, "numnum:sum:GN_POP": 3949769, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 420, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 465, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 344, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 541, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 41.72, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 112.84, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 44.78, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 83.83, "numnum:count:POP1950": 4, "numnum:max:POP1950": 612, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1234, "numnum:count:POP1955": 4, "numnum:max:POP1955": 659, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1418, "numnum:count:POP1960": 4, "numnum:max:POP1960": 872, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1764, "numnum:count:POP1965": 4, "numnum:max:POP1965": 1049, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2087, "numnum:count:POP1970": 4, "numnum:max:POP1970": 1254, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2549, "numnum:count:POP1975": 4, "numnum:max:POP1975": 1499, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3102, "numnum:count:POP1980": 4, "numnum:max:POP1980": 1621, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3508, "numnum:count:POP1985": 4, "numnum:max:POP1985": 1672, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3905, "numnum:count:POP1990": 4, "numnum:max:POP1990": 1908, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 4632, "numnum:count:POP1995": 4, "numnum:max:POP1995": 2295, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5133, "numnum:count:POP2000": 4, "numnum:max:POP2000": 2754, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 5731, "numnum:count:POP2005": 4, "numnum:max:POP2005": 3199, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6390, "numnum:count:POP2010": 4, "numnum:max:POP2010": 3354, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 6643, "numnum:count:POP2015": 4, "numnum:max:POP2015": 3574, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 7004, "numnum:count:POP2020": 4, "numnum:max:POP2020": 3922, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 7567, "numnum:count:POP2025": 4, "numnum:max:POP2025": 4235, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 8062, "numnum:count:POP2050": 4, "numnum:max:POP2050": 4499, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 8468, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.738528 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 35.899732, "numnum:min:LATITUDE": 6.131937, "numnum:sum:LATITUDE": 55.548375, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 14.514711, "numnum:min:LONGITUDE": 1.222757, "numnum:sum:LONGITUDE": 17.854124000000004, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1452000, "numnum:min:POP_MAX": 368250, "numnum:sum:POP_MAX": 2735250, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 749700, "numnum:min:POP_MIN": 6966, "numnum:sum:POP_MIN": 1499457, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1256715, "numnum:min:POP_OTHER": 336174, "numnum:sum:POP_OTHER": 2308214, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 33, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 27, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2562305, "numnum:min:GEONAMEID": 2365267, "numnum:sum:GEONAMEID": 7368057, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 954448, "numnum:min:MAX_POP10": 336921, "numnum:sum:MAX_POP10": 2034160, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 953569, "numnum:min:MAX_POP20": 336921, "numnum:sum:MAX_POP20": 2033281, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 954013, "numnum:min:MAX_POP50": 336921, "numnum:sum:MAX_POP50": 2033725, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 953569, "numnum:min:MAX_POP300": 336921, "numnum:sum:MAX_POP300": 2033281, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 343, "numnum:min:MIN_AREAKM": 106, "numnum:sum:MIN_AREAKM": 571, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 364, "numnum:min:MAX_AREAKM": 106, "numnum:sum:MAX_AREAKM": 592, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 133, "numnum:min:MIN_AREAMI": 41, "numnum:sum:MIN_AREAMI": 221, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 140, "numnum:min:MAX_AREAMI": 41, "numnum:sum:MAX_AREAMI": 228, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 353, "numnum:min:MIN_PERKM": 87, "numnum:sum:MIN_PERKM": 542, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 360, "numnum:min:MAX_PERKM": 87, "numnum:sum:MAX_PERKM": 549, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 219, "numnum:min:MIN_PERMI": 54, "numnum:sum:MIN_PERMI": 337, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 224, "numnum:min:MAX_PERMI": 54, "numnum:sum:MAX_PERMI": 342, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 14.408333, "numnum:min:MIN_BBXMIN": 0.95, "numnum:sum:MIN_BBXMIN": 17.391666, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 14.408333, "numnum:min:MAX_BBXMIN": 0.95, "numnum:sum:MAX_BBXMIN": 17.391666, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 14.55, "numnum:min:MIN_BBXMAX": 1.483333, "numnum:sum:MIN_BBXMAX": 18.25, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 14.55, "numnum:min:MAX_BBXMAX": 1.483333, "numnum:sum:MAX_BBXMAX": 18.25, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 35.816667, "numnum:min:MIN_BBYMIN": 6.025, "numnum:sum:MIN_BBYMIN": 55.308334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 35.816667, "numnum:min:MAX_BBYMIN": 6.025, "numnum:sum:MAX_BBYMIN": 55.308334, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 35.941667, "numnum:min:MIN_BBYMAX": 6.283333, "numnum:sum:MIN_BBYMAX": 55.825, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 35.941667, "numnum:min:MAX_BBYMAX": 6.283333, "numnum:sum:MAX_BBYMAX": 55.825, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 14.483034, "numnum:min:MEAN_BBXC": 1.190359, "numnum:sum:MEAN_BBXC": 17.798988, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 35.881672, "numnum:min:MEAN_BBYC": 6.153924, "numnum:sum:MEAN_BBYC": 55.558187000000007, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 24, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 32, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 774235, "numnum:min:GN_POP": 6794, "numnum:sum:GN_POP": 1530729, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 203, "numnum:min:GTOPO30": 64, "numnum:sum:GTOPO30": 357, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 497, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 882, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 13.51, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 19.61, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 2.12, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 3.3200000000000005, "numnum:count:POP1950": 3, "numnum:max:POP1950": 33, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 57, "numnum:count:POP1955": 3, "numnum:max:POP1955": 56, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 93, "numnum:count:POP1960": 3, "numnum:max:POP1960": 95, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 153, "numnum:count:POP1965": 3, "numnum:max:POP1965": 138, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 223, "numnum:count:POP1970": 3, "numnum:max:POP1970": 192, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 321, "numnum:count:POP1975": 3, "numnum:max:POP1975": 257, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 455, "numnum:count:POP1980": 3, "numnum:max:POP1980": 344, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 618, "numnum:count:POP1985": 3, "numnum:max:POP1985": 466, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 810, "numnum:count:POP1990": 3, "numnum:max:POP1990": 619, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1051, "numnum:count:POP1995": 3, "numnum:max:POP1995": 796, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1338, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1023, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1703, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1315, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2161, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1452, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2367, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1669, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2696, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2038, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3296, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2410, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3990, "numnum:count:POP2050": 3, "numnum:max:POP2050": 2791, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4819, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 35.899732, "numnum:min:LATITUDE": 6.131937, "numnum:sum:LATITUDE": 55.548375, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 14.514711, "numnum:min:LONGITUDE": 1.222757, "numnum:sum:LONGITUDE": 17.854124000000004, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1452000, "numnum:min:POP_MAX": 368250, "numnum:sum:POP_MAX": 2735250, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 749700, "numnum:min:POP_MIN": 6966, "numnum:sum:POP_MIN": 1499457, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1256715, "numnum:min:POP_OTHER": 336174, "numnum:sum:POP_OTHER": 2308214, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 33, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 27, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2562305, "numnum:min:GEONAMEID": 2365267, "numnum:sum:GEONAMEID": 7368057, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 954448, "numnum:min:MAX_POP10": 336921, "numnum:sum:MAX_POP10": 2034160, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 953569, "numnum:min:MAX_POP20": 336921, "numnum:sum:MAX_POP20": 2033281, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 954013, "numnum:min:MAX_POP50": 336921, "numnum:sum:MAX_POP50": 2033725, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 953569, "numnum:min:MAX_POP300": 336921, "numnum:sum:MAX_POP300": 2033281, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 343, "numnum:min:MIN_AREAKM": 106, "numnum:sum:MIN_AREAKM": 571, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 364, "numnum:min:MAX_AREAKM": 106, "numnum:sum:MAX_AREAKM": 592, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 133, "numnum:min:MIN_AREAMI": 41, "numnum:sum:MIN_AREAMI": 221, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 140, "numnum:min:MAX_AREAMI": 41, "numnum:sum:MAX_AREAMI": 228, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 353, "numnum:min:MIN_PERKM": 87, "numnum:sum:MIN_PERKM": 542, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 360, "numnum:min:MAX_PERKM": 87, "numnum:sum:MAX_PERKM": 549, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 219, "numnum:min:MIN_PERMI": 54, "numnum:sum:MIN_PERMI": 337, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 224, "numnum:min:MAX_PERMI": 54, "numnum:sum:MAX_PERMI": 342, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 14.408333, "numnum:min:MIN_BBXMIN": 0.95, "numnum:sum:MIN_BBXMIN": 17.391666, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 14.408333, "numnum:min:MAX_BBXMIN": 0.95, "numnum:sum:MAX_BBXMIN": 17.391666, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 14.55, "numnum:min:MIN_BBXMAX": 1.483333, "numnum:sum:MIN_BBXMAX": 18.25, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 14.55, "numnum:min:MAX_BBXMAX": 1.483333, "numnum:sum:MAX_BBXMAX": 18.25, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 35.816667, "numnum:min:MIN_BBYMIN": 6.025, "numnum:sum:MIN_BBYMIN": 55.308334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 35.816667, "numnum:min:MAX_BBYMIN": 6.025, "numnum:sum:MAX_BBYMIN": 55.308334, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 35.941667, "numnum:min:MIN_BBYMAX": 6.283333, "numnum:sum:MIN_BBYMAX": 55.825, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 35.941667, "numnum:min:MAX_BBYMAX": 6.283333, "numnum:sum:MAX_BBYMAX": 55.825, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 14.483034, "numnum:min:MEAN_BBXC": 1.190359, "numnum:sum:MEAN_BBXC": 17.798988, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 35.881672, "numnum:min:MEAN_BBYC": 6.153924, "numnum:sum:MEAN_BBYC": 55.558187000000007, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 24, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 32, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 774235, "numnum:min:GN_POP": 6794, "numnum:sum:GN_POP": 1530729, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 203, "numnum:min:GTOPO30": 64, "numnum:sum:GTOPO30": 357, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 497, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 882, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 13.51, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 19.61, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 2.12, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 3.3200000000000005, "numnum:count:POP1950": 3, "numnum:max:POP1950": 33, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 57, "numnum:count:POP1955": 3, "numnum:max:POP1955": 56, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 93, "numnum:count:POP1960": 3, "numnum:max:POP1960": 95, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 153, "numnum:count:POP1965": 3, "numnum:max:POP1965": 138, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 223, "numnum:count:POP1970": 3, "numnum:max:POP1970": 192, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 321, "numnum:count:POP1975": 3, "numnum:max:POP1975": 257, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 455, "numnum:count:POP1980": 3, "numnum:max:POP1980": 344, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 618, "numnum:count:POP1985": 3, "numnum:max:POP1985": 466, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 810, "numnum:count:POP1990": 3, "numnum:max:POP1990": 619, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1051, "numnum:count:POP1995": 3, "numnum:max:POP1995": 796, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1338, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1023, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1703, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1315, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2161, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1452, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2367, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1669, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2696, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2038, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3296, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2410, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3990, "numnum:count:POP2050": 3, "numnum:max:POP2050": 2791, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4819, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouémé", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 760, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 2, "numnum:sum:LABELRANK": 18, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 2, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 6.483311, "numnum:min:LATITUDE": 6.400009, "numnum:sum:LATITUDE": 19.326582, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 3.391531, "numnum:min:LONGITUDE": 2.519991, "numnum:sum:LONGITUDE": 8.528148, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 9466000, "numnum:min:POP_MAX": 300000, "numnum:sum:POP_MAX": 10528000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 690584, "numnum:min:POP_MIN": 1536, "numnum:sum:POP_MIN": 926288, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 6567892, "numnum:min:POP_OTHER": 806945, "numnum:sum:POP_OTHER": 8435477, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 3, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2394819, "numnum:min:GEONAMEID": 735497, "numnum:sum:GEONAMEID": 5522403, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 7147910, "numnum:min:MAX_POP10": 517453, "numnum:sum:MAX_POP10": 8708291, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 7105663, "numnum:min:MAX_POP20": 457770, "numnum:sum:MAX_POP20": 8639904, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 7411389, "numnum:min:MAX_POP50": 457770, "numnum:sum:MAX_POP50": 8945630, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 7453740, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 8567229, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1035, "numnum:min:MIN_AREAKM": 192, "numnum:sum:MIN_AREAKM": 1505, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1332, "numnum:min:MAX_AREAKM": 319, "numnum:sum:MAX_AREAKM": 1988, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 400, "numnum:min:MIN_AREAMI": 74, "numnum:sum:MIN_AREAMI": 581, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 514, "numnum:min:MAX_AREAMI": 123, "numnum:sum:MAX_AREAMI": 767, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 638, "numnum:min:MIN_PERKM": 177, "numnum:sum:MIN_PERKM": 1066, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 882, "numnum:min:MAX_PERKM": 312, "numnum:sum:MAX_PERKM": 1535, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 397, "numnum:min:MIN_PERMI": 110, "numnum:sum:MIN_PERMI": 663, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 548, "numnum:min:MAX_PERMI": 194, "numnum:sum:MAX_PERMI": 954, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 2.925412, "numnum:min:MIN_BBXMIN": 2.2, "numnum:sum:MIN_BBXMIN": 7.683745, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 2.996332, "numnum:min:MAX_BBXMIN": 2.296132, "numnum:sum:MAX_BBXMIN": 7.850797, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 3.475, "numnum:min:MIN_BBXMAX": 2.632958, "numnum:sum:MIN_BBXMAX": 8.991291, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 3.475, "numnum:min:MAX_BBXMAX": 2.858333, "numnum:sum:MAX_BBXMAX": 9.216666, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 6.45, "numnum:min:MIN_BBYMIN": 6.341667, "numnum:sum:MIN_BBYMIN": 19.191667000000004, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 6.45, "numnum:min:MAX_BBYMIN": 6.341667, "numnum:sum:MAX_BBYMIN": 19.191667000000004, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 6.80087, "numnum:min:MIN_BBYMAX": 6.583333, "numnum:sum:MIN_BBYMAX": 20.034202999999999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 6.966667, "numnum:min:MAX_BBYMAX": 6.641667, "numnum:sum:MAX_BBYMAX": 20.341667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 3.231132, "numnum:min:MEAN_BBXC": 2.392241, "numnum:sum:MEAN_BBXC": 8.331398, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 6.585848, "numnum:min:MEAN_BBYC": 6.416506, "numnum:sum:MEAN_BBYC": 19.523016, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 16, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 30, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 690584, "numnum:min:GN_POP": 1536, "numnum:sum:GN_POP": 926288, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 89, "numnum:min:GTOPO30": 39, "numnum:sum:GTOPO30": 181, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 392, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 566, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 6.45, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 12.8, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 3.3, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 5.73, "numnum:count:POP1950": 3, "numnum:max:POP1950": 305, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 325, "numnum:count:POP1955": 3, "numnum:max:POP1955": 468, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 495, "numnum:count:POP1960": 3, "numnum:max:POP1960": 762, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 835, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1135, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1246, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1414, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1577, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1890, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2130, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2572, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2909, "numnum:count:POP1985": 3, "numnum:max:POP1985": 3500, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3912, "numnum:count:POP1990": 3, "numnum:max:POP1990": 4764, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5268, "numnum:count:POP1995": 3, "numnum:max:POP1995": 5966, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 6543, "numnum:count:POP2000": 3, "numnum:max:POP2000": 7233, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 7875, "numnum:count:POP2005": 3, "numnum:max:POP2005": 8767, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 9487, "numnum:count:POP2010": 3, "numnum:max:POP2010": 9466, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 10228, "numnum:count:POP2015": 3, "numnum:max:POP2015": 10572, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 11413, "numnum:count:POP2020": 3, "numnum:max:POP2020": 12403, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 13407, "numnum:count:POP2025": 3, "numnum:max:POP2025": 14134, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 15330, "numnum:count:POP2050": 3, "numnum:max:POP2050": 15796, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 17207, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 2.504883, 6.402648 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouémé", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 160, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 6.483311, "numnum:min:LATITUDE": 6.400009, "numnum:sum:LATITUDE": 12.88332, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 2.616626, "numnum:min:LONGITUDE": 2.519991, "numnum:sum:LONGITUDE": 5.136617, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 762000, "numnum:min:POP_MAX": 300000, "numnum:sum:POP_MAX": 1062000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 690584, "numnum:min:POP_MIN": 234168, "numnum:sum:POP_MIN": 924752, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1060640, "numnum:min:POP_OTHER": 806945, "numnum:sum:POP_OTHER": 1867585, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 11, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2394819, "numnum:min:GEONAMEID": 2392087, "numnum:sum:GEONAMEID": 4786906, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1042928, "numnum:min:MAX_POP10": 517453, "numnum:sum:MAX_POP10": 1560381, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1076471, "numnum:min:MAX_POP20": 457770, "numnum:sum:MAX_POP20": 1534241, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1076471, "numnum:min:MAX_POP50": 457770, "numnum:sum:MAX_POP50": 1534241, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1113489, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 1113489, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 150, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 278, "numnum:min:MIN_AREAKM": 192, "numnum:sum:MIN_AREAKM": 470, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 337, "numnum:min:MAX_AREAKM": 319, "numnum:sum:MAX_AREAKM": 656, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 107, "numnum:min:MIN_AREAMI": 74, "numnum:sum:MIN_AREAMI": 181, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 130, "numnum:min:MAX_AREAMI": 123, "numnum:sum:MAX_AREAMI": 253, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 251, "numnum:min:MIN_PERKM": 177, "numnum:sum:MIN_PERKM": 428, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 341, "numnum:min:MAX_PERKM": 312, "numnum:sum:MAX_PERKM": 653, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 156, "numnum:min:MIN_PERMI": 110, "numnum:sum:MIN_PERMI": 266, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 212, "numnum:min:MAX_PERMI": 194, "numnum:sum:MAX_PERMI": 406, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 2.558333, "numnum:min:MIN_BBXMIN": 2.2, "numnum:sum:MIN_BBXMIN": 4.758333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 2.558333, "numnum:min:MAX_BBXMIN": 2.296132, "numnum:sum:MAX_BBXMIN": 4.854465, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 2.883333, "numnum:min:MIN_BBXMAX": 2.632958, "numnum:sum:MIN_BBXMAX": 5.516291, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 2.883333, "numnum:min:MAX_BBXMAX": 2.858333, "numnum:sum:MAX_BBXMAX": 5.741666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 6.45, "numnum:min:MIN_BBYMIN": 6.341667, "numnum:sum:MIN_BBYMIN": 12.791667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 6.45, "numnum:min:MAX_BBYMIN": 6.341667, "numnum:sum:MAX_BBYMIN": 12.791667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 6.65, "numnum:min:MIN_BBYMAX": 6.583333, "numnum:sum:MIN_BBYMAX": 13.233333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 6.733333, "numnum:min:MAX_BBYMAX": 6.641667, "numnum:sum:MAX_BBYMAX": 13.375, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 2.708025, "numnum:min:MEAN_BBXC": 2.392241, "numnum:sum:MEAN_BBXC": 5.1002659999999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 6.520662, "numnum:min:MEAN_BBYC": 6.416506, "numnum:sum:MEAN_BBYC": 12.937168, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 16, "numnum:min:ADMIN1_COD": 14, "numnum:sum:ADMIN1_COD": 30, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 690584, "numnum:min:GN_POP": 234168, "numnum:sum:GN_POP": 924752, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 53, "numnum:min:GTOPO30": 39, "numnum:sum:GTOPO30": 92, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 174, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 174, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 6.35, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 6.35, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 2.43, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 2.43, "numnum:count:POP1950": 2, "numnum:max:POP1950": 20, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 20, "numnum:count:POP1955": 2, "numnum:max:POP1955": 27, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 27, "numnum:count:POP1960": 2, "numnum:max:POP1960": 73, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 73, "numnum:count:POP1965": 2, "numnum:max:POP1965": 111, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 111, "numnum:count:POP1970": 2, "numnum:max:POP1970": 163, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 163, "numnum:count:POP1975": 2, "numnum:max:POP1975": 240, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 240, "numnum:count:POP1980": 2, "numnum:max:POP1980": 337, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 337, "numnum:count:POP1985": 2, "numnum:max:POP1985": 412, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 412, "numnum:count:POP1990": 2, "numnum:max:POP1990": 504, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 504, "numnum:count:POP1995": 2, "numnum:max:POP1995": 577, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 577, "numnum:count:POP2000": 2, "numnum:max:POP2000": 642, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 642, "numnum:count:POP2005": 2, "numnum:max:POP2005": 720, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 720, "numnum:count:POP2010": 2, "numnum:max:POP2010": 762, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 762, "numnum:count:POP2015": 2, "numnum:max:POP2015": 841, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 841, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1004, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1004, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1196, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1196, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1411, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1411, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ 2.504883, 6.402648 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 2, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 9.083333, "numnum:min:LATITUDE": 0.333402, "numnum:sum:LATITUDE": 9.416735, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 7.533328, "numnum:min:LONGITUDE": 6.733325, "numnum:sum:LONGITUDE": 14.266653, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1576000, "numnum:min:POP_MAX": 88219, "numnum:sum:POP_MAX": 1664219, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 162135, "numnum:min:POP_MIN": 56166, "numnum:sum:POP_MIN": 218301, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 88219, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 88219, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 20, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 9, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 17, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3388092, "numnum:min:GEONAMEID": 2322794, "numnum:sum:GEONAMEID": 5710886, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 655258, "numnum:min:MAX_POP10": 88219, "numnum:sum:MAX_POP10": 743477, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 655258, "numnum:min:MAX_POP20": 88219, "numnum:sum:MAX_POP20": 743477, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 655258, "numnum:min:MAX_POP50": 88219, "numnum:sum:MAX_POP50": 743477, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 88219, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 88219, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 150, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 174, "numnum:min:MIN_AREAKM": 32, "numnum:sum:MIN_AREAKM": 206, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 174, "numnum:min:MAX_AREAKM": 32, "numnum:sum:MAX_AREAKM": 206, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 67, "numnum:min:MIN_AREAMI": 12, "numnum:sum:MIN_AREAMI": 79, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 67, "numnum:min:MAX_AREAMI": 12, "numnum:sum:MAX_AREAMI": 79, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 162, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 206, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 162, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 206, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 101, "numnum:min:MIN_PERMI": 28, "numnum:sum:MIN_PERMI": 129, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 101, "numnum:min:MAX_PERMI": 28, "numnum:sum:MAX_PERMI": 129, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 7.375, "numnum:min:MIN_BBXMIN": 6.691667, "numnum:sum:MIN_BBXMIN": 14.066666999999999, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 7.375, "numnum:min:MAX_BBXMIN": 6.691667, "numnum:sum:MAX_BBXMIN": 14.066666999999999, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 7.591667, "numnum:min:MIN_BBXMAX": 6.75, "numnum:sum:MIN_BBXMAX": 14.341667000000001, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 7.591667, "numnum:min:MAX_BBXMAX": 6.75, "numnum:sum:MAX_BBXMAX": 14.341667000000001, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 8.983333, "numnum:min:MIN_BBYMIN": 0.3, "numnum:sum:MIN_BBYMIN": 9.283333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 8.983333, "numnum:min:MAX_BBYMIN": 0.3, "numnum:sum:MAX_BBYMIN": 9.283333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 9.166667, "numnum:min:MIN_BBYMAX": 0.391667, "numnum:sum:MIN_BBYMAX": 9.558334, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 9.166667, "numnum:min:MAX_BBYMAX": 0.391667, "numnum:sum:MAX_BBYMAX": 9.558334, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 7.484385, "numnum:min:MEAN_BBXC": 6.719032, "numnum:sum:MEAN_BBXC": 14.203417, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 9.063188, "numnum:min:MEAN_BBYC": 0.338176, "numnum:sum:MEAN_BBYC": 9.401364000000001, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 22, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 22, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 162135, "numnum:min:GN_POP": 6137, "numnum:sum:GN_POP": 168272, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 339, "numnum:min:GTOPO30": 151, "numnum:sum:GTOPO30": 490, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 386, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 386, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 9.05, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 9.05, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 7.25, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 7.25, "numnum:count:POP1950": 2, "numnum:max:POP1950": 18, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 18, "numnum:count:POP1955": 2, "numnum:max:POP1955": 21, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 21, "numnum:count:POP1960": 2, "numnum:max:POP1960": 23, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 23, "numnum:count:POP1965": 2, "numnum:max:POP1965": 29, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 29, "numnum:count:POP1970": 2, "numnum:max:POP1970": 48, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 48, "numnum:count:POP1975": 2, "numnum:max:POP1975": 77, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 77, "numnum:count:POP1980": 2, "numnum:max:POP1980": 125, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 125, "numnum:count:POP1985": 2, "numnum:max:POP1985": 204, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 204, "numnum:count:POP1990": 2, "numnum:max:POP1990": 330, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 330, "numnum:count:POP1995": 2, "numnum:max:POP1995": 526, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 526, "numnum:count:POP2000": 2, "numnum:max:POP2000": 832, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 832, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1315, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1315, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1576, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1576, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1994, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1994, "numnum:count:POP2020": 2, "numnum:max:POP2020": 2558, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 2558, "numnum:count:POP2025": 2, "numnum:max:POP2025": 2971, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2971, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3358, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3358, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 7.558594, 9.058702 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lagos", "DIFFASCII": 0, "NAMEASCII": "Lagos", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Former capital", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Lagos", "ISO_A2": "NG", "LATITUDE": 6.443262, "LONGITUDE": 3.391531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 9466000, "POP_MIN": 1536, "POP_OTHER": 6567892, "RANK_MAX": 13, "RANK_MIN": 3, "GEONAMEID": 735497, "MEGANAME": "Lagos", "LS_NAME": "Lagos", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7147910, "MAX_POP20": 7105663, "MAX_POP50": 7411389, "MAX_POP300": 7453740, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1035, "MAX_AREAKM": 1332, "MIN_AREAMI": 400, "MAX_AREAMI": 514, "MIN_PERKM": 638, "MAX_PERKM": 882, "MIN_PERMI": 397, "MAX_PERMI": 548, "MIN_BBXMIN": 2.925412, "MAX_BBXMIN": 2.996332, "MIN_BBXMAX": 3.475, "MAX_BBXMAX": 3.475, "MIN_BBYMIN": 6.4, "MAX_BBYMIN": 6.4, "MIN_BBYMAX": 6.80087, "MAX_BBYMAX": 6.966667, "MEAN_BBXC": 3.231132, "MEAN_BBYC": 6.585848, "COMPARE": 0, "GN_ASCII": "Lagos", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1536, "ELEVATION": 0, "GTOPO30": 89, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 392, "UN_ADM0": "Nigeria", "UN_LAT": 6.45, "UN_LONG": 3.3, "POP1950": 305, "POP1955": 468, "POP1960": 762, "POP1965": 1135, "POP1970": 1414, "POP1975": 1890, "POP1980": 2572, "POP1985": 3500, "POP1990": 4764, "POP1995": 5966, "POP2000": 7233, "POP2005": 8767, "POP2010": 9466, "POP2015": 10572, "POP2020": 12403, "POP2025": 14134, "POP2050": 15796, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 820, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 4, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 9.083333, "numnum:min:LATITUDE": 0.333402, "numnum:sum:LATITUDE": 15.859997, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 7.533328, "numnum:min:LONGITUDE": 3.391531, "numnum:sum:LONGITUDE": 17.658184, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 9466000, "numnum:min:POP_MAX": 88219, "numnum:sum:POP_MAX": 11130219, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 162135, "numnum:min:POP_MIN": 1536, "numnum:sum:POP_MIN": 219837, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 6567892, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 6656111, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 33, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 9, "numnum:min:RANK_MIN": 3, "numnum:sum:RANK_MIN": 20, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3388092, "numnum:min:GEONAMEID": 735497, "numnum:sum:GEONAMEID": 6446383, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 7147910, "numnum:min:MAX_POP10": 88219, "numnum:sum:MAX_POP10": 7891387, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 7105663, "numnum:min:MAX_POP20": 88219, "numnum:sum:MAX_POP20": 7849140, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 7411389, "numnum:min:MAX_POP50": 88219, "numnum:sum:MAX_POP50": 8154866, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 7453740, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 7541959, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1035, "numnum:min:MIN_AREAKM": 32, "numnum:sum:MIN_AREAKM": 1241, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1332, "numnum:min:MAX_AREAKM": 32, "numnum:sum:MAX_AREAKM": 1538, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 400, "numnum:min:MIN_AREAMI": 12, "numnum:sum:MIN_AREAMI": 479, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 514, "numnum:min:MAX_AREAMI": 12, "numnum:sum:MAX_AREAMI": 593, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 638, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 844, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 882, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 1088, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 397, "numnum:min:MIN_PERMI": 28, "numnum:sum:MIN_PERMI": 526, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 548, "numnum:min:MAX_PERMI": 28, "numnum:sum:MAX_PERMI": 677, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 7.375, "numnum:min:MIN_BBXMIN": 2.925412, "numnum:sum:MIN_BBXMIN": 16.992079, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 7.375, "numnum:min:MAX_BBXMIN": 2.996332, "numnum:sum:MAX_BBXMIN": 17.062999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 7.591667, "numnum:min:MIN_BBXMAX": 3.475, "numnum:sum:MIN_BBXMAX": 17.816667000000004, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 7.591667, "numnum:min:MAX_BBXMAX": 3.475, "numnum:sum:MAX_BBXMAX": 17.816667000000004, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 8.983333, "numnum:min:MIN_BBYMIN": 0.3, "numnum:sum:MIN_BBYMIN": 15.683333000000001, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 8.983333, "numnum:min:MAX_BBYMIN": 0.3, "numnum:sum:MAX_BBYMIN": 15.683333000000001, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 9.166667, "numnum:min:MIN_BBYMAX": 0.391667, "numnum:sum:MIN_BBYMAX": 16.359204, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 9.166667, "numnum:min:MAX_BBYMAX": 0.391667, "numnum:sum:MAX_BBYMAX": 16.525001000000004, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 7.484385, "numnum:min:MEAN_BBXC": 3.231132, "numnum:sum:MEAN_BBXC": 17.434549, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 9.063188, "numnum:min:MEAN_BBYC": 0.338176, "numnum:sum:MEAN_BBYC": 15.987212000000002, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 22, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 22, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 162135, "numnum:min:GN_POP": 1536, "numnum:sum:GN_POP": 169808, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 339, "numnum:min:GTOPO30": 89, "numnum:sum:GTOPO30": 579, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 392, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 778, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 9.05, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 15.5, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 7.25, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 10.55, "numnum:count:POP1950": 3, "numnum:max:POP1950": 305, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 323, "numnum:count:POP1955": 3, "numnum:max:POP1955": 468, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 489, "numnum:count:POP1960": 3, "numnum:max:POP1960": 762, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 785, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1135, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1164, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1414, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1462, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1890, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1967, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2572, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2697, "numnum:count:POP1985": 3, "numnum:max:POP1985": 3500, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3704, "numnum:count:POP1990": 3, "numnum:max:POP1990": 4764, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5094, "numnum:count:POP1995": 3, "numnum:max:POP1995": 5966, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 6492, "numnum:count:POP2000": 3, "numnum:max:POP2000": 7233, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 8065, "numnum:count:POP2005": 3, "numnum:max:POP2005": 8767, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 10082, "numnum:count:POP2010": 3, "numnum:max:POP2010": 9466, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 11042, "numnum:count:POP2015": 3, "numnum:max:POP2015": 10572, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 12566, "numnum:count:POP2020": 3, "numnum:max:POP2020": 12403, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 14961, "numnum:count:POP2025": 3, "numnum:max:POP2025": 14134, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 17105, "numnum:count:POP2050": 3, "numnum:max:POP2050": 15796, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 19154, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ 3.383789, 6.446318 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Libreville", "DIFFASCII": 0, "NAMEASCII": "Libreville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gabon", "SOV_A3": "GAB", "ADM0NAME": "Gabon", "ADM0_A3": "GAB", "ADM1NAME": "Estuaire", "ISO_A2": "GA", "LATITUDE": 0.385389, "LONGITUDE": 9.457965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 578156, "POP_MIN": 483355, "POP_OTHER": 483522, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 2399697, "LS_NAME": "Libreville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 483355, "MAX_POP20": 483355, "MAX_POP50": 483355, "MAX_POP300": 483355, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 108, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 9.4, "MAX_BBXMIN": 9.4, "MIN_BBXMAX": 9.525, "MAX_BBXMAX": 9.525, "MIN_BBYMIN": 0.283333, "MAX_BBYMIN": 0.283333, "MIN_BBYMAX": 0.483333, "MAX_BBYMAX": 0.483333, "MEAN_BBXC": 9.47328, "MEAN_BBYC": 0.395238, "COMPARE": 0, "GN_ASCII": "Libreville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 578156, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Libreville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 20, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 12.113097, "numnum:min:LATITUDE": 0.385389, "numnum:sum:LATITUDE": 16.365187, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 15.049148, "numnum:min:LONGITUDE": 9.457965, "numnum:sum:LONGITUDE": 36.023764, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1611000, "numnum:min:POP_MAX": 578156, "numnum:sum:POP_MAX": 3178156, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1060587, "numnum:min:POP_MIN": 483355, "numnum:sum:POP_MIN": 2225329, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1060747, "numnum:min:POP_OTHER": 483522, "numnum:sum:POP_OTHER": 2230616, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2427123, "numnum:min:GEONAMEID": 2220957, "numnum:sum:GEONAMEID": 7047777, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1060587, "numnum:min:MAX_POP10": 483355, "numnum:sum:MAX_POP10": 2225329, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1060587, "numnum:min:MAX_POP20": 483355, "numnum:sum:MAX_POP20": 2225329, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1060587, "numnum:min:MAX_POP50": 483355, "numnum:sum:MAX_POP50": 2225329, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1060587, "numnum:min:MAX_POP300": 483355, "numnum:sum:MAX_POP300": 2225329, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 197, "numnum:min:MIN_AREAKM": 79, "numnum:sum:MIN_AREAKM": 384, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 197, "numnum:min:MAX_AREAKM": 79, "numnum:sum:MAX_AREAKM": 384, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 76, "numnum:min:MIN_AREAMI": 30, "numnum:sum:MIN_AREAMI": 148, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 76, "numnum:min:MAX_AREAMI": 30, "numnum:sum:MAX_AREAMI": 148, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 116, "numnum:min:MIN_PERKM": 66, "numnum:sum:MIN_PERKM": 280, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 116, "numnum:min:MAX_PERKM": 66, "numnum:sum:MAX_PERKM": 280, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 72, "numnum:min:MIN_PERMI": 41, "numnum:sum:MIN_PERMI": 174, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 72, "numnum:min:MAX_PERMI": 41, "numnum:sum:MAX_PERMI": 174, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 15.025, "numnum:min:MIN_BBXMIN": 9.4, "numnum:sum:MIN_BBXMIN": 35.858333, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 15.025, "numnum:min:MAX_BBXMIN": 9.4, "numnum:sum:MAX_BBXMIN": 35.858333, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 15.133333, "numnum:min:MIN_BBXMAX": 9.525, "numnum:sum:MIN_BBXMAX": 36.258333, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 15.133333, "numnum:min:MAX_BBXMAX": 9.525, "numnum:sum:MAX_BBXMAX": 36.258333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 12.066667, "numnum:min:MIN_BBYMIN": 0.283333, "numnum:sum:MIN_BBYMIN": 16.125, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 12.066667, "numnum:min:MAX_BBYMIN": 0.283333, "numnum:sum:MAX_BBYMIN": 16.125, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 12.183333, "numnum:min:MIN_BBYMAX": 0.483333, "numnum:sum:MIN_BBYMAX": 16.649999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 12.183333, "numnum:min:MAX_BBYMAX": 0.483333, "numnum:sum:MAX_BBYMAX": 16.649999, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 15.079167, "numnum:min:MEAN_BBXC": 9.47328, "numnum:sum:MEAN_BBXC": 36.070791, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 12.120479, "numnum:min:MEAN_BBYC": 0.395238, "numnum:sum:MEAN_BBYC": 16.381355999999998, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 16, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1299369, "numnum:min:GN_POP": 578156, "numnum:sum:GN_POP": 2598606, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 733, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8976, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 16, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 25, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 12.1, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 15.959999999999999, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 15.24, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 26.75, "numnum:count:POP1950": 3, "numnum:max:POP1950": 32, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 54, "numnum:count:POP1955": 3, "numnum:max:POP1955": 49, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 89, "numnum:count:POP1960": 3, "numnum:max:POP1960": 75, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 146, "numnum:count:POP1965": 3, "numnum:max:POP1965": 112, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 221, "numnum:count:POP1970": 3, "numnum:max:POP1970": 183, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 338, "numnum:count:POP1975": 3, "numnum:max:POP1975": 292, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 523, "numnum:count:POP1980": 3, "numnum:max:POP1980": 415, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 739, "numnum:count:POP1985": 3, "numnum:max:POP1985": 578, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 971, "numnum:count:POP1990": 3, "numnum:max:POP1990": 754, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1231, "numnum:count:POP1995": 3, "numnum:max:POP1995": 948, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1527, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1192, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1903, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1489, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2391, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1611, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2600, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1787, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2914, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2058, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3463, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2312, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 4065, "numnum:count:POP2050": 3, "numnum:max:POP2050": 2549, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4721, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 9.448242, 0.395505 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Libreville", "DIFFASCII": 0, "NAMEASCII": "Libreville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gabon", "SOV_A3": "GAB", "ADM0NAME": "Gabon", "ADM0_A3": "GAB", "ADM1NAME": "Estuaire", "ISO_A2": "GA", "LATITUDE": 0.385389, "LONGITUDE": 9.457965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 578156, "POP_MIN": 483355, "POP_OTHER": 483522, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 2399697, "LS_NAME": "Libreville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 483355, "MAX_POP20": 483355, "MAX_POP50": 483355, "MAX_POP300": 483355, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 108, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 9.4, "MAX_BBXMIN": 9.4, "MIN_BBXMAX": 9.525, "MAX_BBXMAX": 9.525, "MIN_BBYMIN": 0.283333, "MAX_BBYMIN": 0.283333, "MIN_BBYMAX": 0.483333, "MAX_BBYMAX": 0.483333, "MEAN_BBXC": 9.47328, "MEAN_BBYC": 0.395238, "COMPARE": 0, "GN_ASCII": "Libreville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 578156, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Libreville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 9.448242, 0.395505 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 720, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 18, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 39.927239, "numnum:min:LATITUDE": 4.366644, "numnum:sum:LATITUDE": 117.443885, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 33.366635, "numnum:min:LONGITUDE": 18.558288, "numnum:sum:LONGITUDE": 108.522636, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 3716000, "numnum:min:POP_MAX": 224300, "numnum:sum:POP_MAX": 8014225, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 3307379, "numnum:min:POP_MIN": 200452, "numnum:sum:POP_MIN": 4859739, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 3267576, "numnum:min:POP_OTHER": 112572, "numnum:sum:POP_OTHER": 4385407, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 45, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 44, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 2389853, "numnum:min:GEONAMEID": 146268, "numnum:sum:GEONAMEID": 3124278, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 3307379, "numnum:min:MAX_POP10": 224300, "numnum:sum:MAX_POP10": 6677399, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 3306823, "numnum:min:MAX_POP20": 224300, "numnum:sum:MAX_POP20": 7334098, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 3306823, "numnum:min:MAX_POP50": 224300, "numnum:sum:MAX_POP50": 7373137, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 3306823, "numnum:min:MAX_POP300": 224300, "numnum:sum:MAX_POP300": 7373137, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 531, "numnum:min:MIN_AREAKM": 90, "numnum:sum:MIN_AREAKM": 1089, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 534, "numnum:min:MAX_AREAKM": 103, "numnum:sum:MAX_AREAKM": 1274, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 205, "numnum:min:MIN_AREAMI": 35, "numnum:sum:MIN_AREAMI": 420, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 206, "numnum:min:MAX_AREAMI": 40, "numnum:sum:MAX_AREAMI": 491, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 355, "numnum:min:MIN_PERKM": 91, "numnum:sum:MIN_PERKM": 754, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 365, "numnum:min:MAX_PERKM": 107, "numnum:sum:MAX_PERKM": 877, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 221, "numnum:min:MIN_PERMI": 57, "numnum:sum:MIN_PERMI": 470, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 227, "numnum:min:MAX_PERMI": 67, "numnum:sum:MAX_PERMI": 546, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 33.275, "numnum:min:MIN_BBXMIN": 18.491667, "numnum:sum:MIN_BBXMIN": 107.67499999999999, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 33.275, "numnum:min:MAX_BBXMIN": 18.491667, "numnum:sum:MAX_BBXMIN": 107.783334, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 33.425, "numnum:min:MIN_BBXMAX": 18.614651, "numnum:sum:MIN_BBXMAX": 108.96465099999999, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 33.425, "numnum:min:MAX_BBXMAX": 18.625, "numnum:sum:MAX_BBXMAX": 108.97500000000001, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 39.841667, "numnum:min:MIN_BBYMIN": 4.316667, "numnum:sum:MIN_BBYMIN": 117.10000099999999, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 39.841667, "numnum:min:MAX_BBYMIN": 4.316667, "numnum:sum:MAX_BBYMIN": 117.10833399999999, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 40.116667, "numnum:min:MIN_BBYMAX": 4.483333, "numnum:sum:MIN_BBYMAX": 117.98333299999999, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 40.116667, "numnum:min:MAX_BBYMAX": 4.483333, "numnum:sum:MAX_BBYMAX": 117.98333299999999, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 33.352244, "numnum:min:MEAN_BBXC": 18.546436, "numnum:sum:MEAN_BBXC": 108.394072, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 39.957843, "numnum:min:MEAN_BBYC": 4.388157, "numnum:sum:MEAN_BBYC": 117.52804499999999, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 68, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 90, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 3517182, "numnum:min:GN_POP": 200452, "numnum:sum:GN_POP": 4989164, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 850, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 920, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 889, "numnum:min:GTOPO30": 110, "numnum:sum:GTOPO30": 1500, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 500, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 698, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 39.92, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 77.86, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 32.85, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 56.5, "numnum:count:POP1950": 4, "numnum:max:POP1950": 1347, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1628, "numnum:count:POP1955": 4, "numnum:max:POP1955": 1563, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2002, "numnum:count:POP1960": 4, "numnum:max:POP1960": 1814, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2449, "numnum:count:POP1965": 4, "numnum:max:POP1965": 2121, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3075, "numnum:count:POP1970": 4, "numnum:max:POP1970": 2485, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3826, "numnum:count:POP1975": 4, "numnum:max:POP1975": 2738, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4447, "numnum:count:POP1980": 4, "numnum:max:POP1980": 2987, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4878, "numnum:count:POP1985": 4, "numnum:max:POP1985": 3047, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5260, "numnum:count:POP1990": 4, "numnum:max:POP1990": 3070, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5631, "numnum:count:POP1995": 4, "numnum:max:POP1995": 3122, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5964, "numnum:count:POP2000": 4, "numnum:max:POP2000": 3179, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6358, "numnum:count:POP2005": 4, "numnum:max:POP2005": 3572, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6802, "numnum:count:POP2010": 4, "numnum:max:POP2010": 3716, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 6958, "numnum:count:POP2015": 4, "numnum:max:POP2015": 3908, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 7164, "numnum:count:POP2020": 4, "numnum:max:POP2020": 4178, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 7456, "numnum:count:POP2025": 4, "numnum:max:POP2025": 4403, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 7703, "numnum:count:POP2050": 4, "numnum:max:POP2050": 4589, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 7915, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.346411 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ndjamena", "NAMEALT": "N'Djaména", "DIFFASCII": 0, "NAMEASCII": "Ndjamena", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chad", "SOV_A3": "TCD", "ADM0NAME": "Chad", "ADM0_A3": "TCD", "ADM1NAME": "Hadjer-Lamis", "ISO_A2": "TD", "LATITUDE": 12.113097, "LONGITUDE": 15.049148, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 989000, "POP_MIN": 681387, "POP_OTHER": 686347, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2427123, "MEGANAME": "N'Djaména", "LS_NAME": "Ndjamena", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 681387, "MAX_POP20": 681387, "MAX_POP50": 681387, "MAX_POP300": 681387, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 79, "MAX_AREAKM": 79, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": 15.025, "MAX_BBXMIN": 15.025, "MIN_BBXMAX": 15.133333, "MAX_BBXMAX": 15.133333, "MIN_BBYMIN": 12.066667, "MAX_BBYMIN": 12.066667, "MIN_BBYMAX": 12.183333, "MAX_BBYMAX": 12.183333, "MEAN_BBXC": 15.079167, "MEAN_BBYC": 12.120479, "COMPARE": 0, "GN_ASCII": "N'Djamena", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 721081, "ELEVATION": 0, "GTOPO30": 290, "TIMEZONE": "Africa/Ndjamena", "GEONAMESNO": "GeoNames match general.", "UN_FID": 16, "UN_ADM0": "Chad", "UN_LAT": 12.1, "UN_LONG": 15.24, "POP1950": 22, "POP1955": 40, "POP1960": 71, "POP1965": 109, "POP1970": 155, "POP1975": 231, "POP1980": 324, "POP1985": 393, "POP1990": 477, "POP1995": 579, "POP2000": 711, "POP2005": 902, "POP2010": 989, "POP2015": 1127, "POP2020": 1405, "POP2025": 1753, "POP2050": 2172, "CITYALT": "Ndjamena", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 20, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 12.113097, "numnum:min:LATITUDE": 3.866701, "numnum:sum:LATITUDE": 20.346442, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 18.558288, "numnum:min:LONGITUDE": 11.516651, "numnum:sum:LONGITUDE": 45.124087, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1611000, "numnum:min:POP_MAX": 831925, "numnum:sum:POP_MAX": 3431925, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1060587, "numnum:min:POP_MIN": 622771, "numnum:sum:POP_MIN": 2364745, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1060747, "numnum:min:POP_OTHER": 686347, "numnum:sum:POP_OTHER": 2529368, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 34, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2427123, "numnum:min:GEONAMEID": 2220957, "numnum:sum:GEONAMEID": 7037933, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1060587, "numnum:min:MAX_POP10": 681387, "numnum:sum:MAX_POP10": 2534860, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1060587, "numnum:min:MAX_POP20": 681387, "numnum:sum:MAX_POP20": 2534860, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1060587, "numnum:min:MAX_POP50": 681387, "numnum:sum:MAX_POP50": 2573899, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1060587, "numnum:min:MAX_POP300": 681387, "numnum:sum:MAX_POP300": 2573899, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 197, "numnum:min:MIN_AREAKM": 79, "numnum:sum:MIN_AREAKM": 366, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 197, "numnum:min:MAX_AREAKM": 79, "numnum:sum:MAX_AREAKM": 379, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 76, "numnum:min:MIN_AREAMI": 30, "numnum:sum:MIN_AREAMI": 141, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 76, "numnum:min:MAX_AREAMI": 30, "numnum:sum:MAX_AREAMI": 146, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 116, "numnum:min:MIN_PERKM": 66, "numnum:sum:MIN_PERKM": 273, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 116, "numnum:min:MAX_PERKM": 66, "numnum:sum:MAX_PERKM": 289, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 72, "numnum:min:MIN_PERMI": 41, "numnum:sum:MIN_PERMI": 170, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 72, "numnum:min:MAX_PERMI": 41, "numnum:sum:MAX_PERMI": 180, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 18.491667, "numnum:min:MIN_BBXMIN": 11.433333, "numnum:sum:MIN_BBXMIN": 44.95, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 18.491667, "numnum:min:MAX_BBXMIN": 11.433333, "numnum:sum:MAX_BBXMIN": 44.95, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 18.614651, "numnum:min:MIN_BBXMAX": 11.6, "numnum:sum:MIN_BBXMAX": 45.347984, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 18.625, "numnum:min:MAX_BBXMAX": 11.6, "numnum:sum:MAX_BBXMAX": 45.358333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 12.066667, "numnum:min:MIN_BBYMIN": 3.775, "numnum:sum:MIN_BBYMIN": 20.158334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 12.066667, "numnum:min:MAX_BBYMIN": 3.775, "numnum:sum:MAX_BBYMIN": 20.158334, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 12.183333, "numnum:min:MIN_BBYMAX": 3.983333, "numnum:sum:MIN_BBYMAX": 20.649999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 12.183333, "numnum:min:MAX_BBYMAX": 3.983333, "numnum:sum:MAX_BBYMAX": 20.649999, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 18.546436, "numnum:min:MEAN_BBXC": 11.518344, "numnum:sum:MEAN_BBXC": 45.143947, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 12.120479, "numnum:min:MEAN_BBYC": 3.865639, "numnum:sum:MEAN_BBYC": 20.374274999999999, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 18, "numnum:min:ADMIN1_COD": 4, "numnum:sum:ADMIN1_COD": 33, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1299369, "numnum:min:GN_POP": 542393, "numnum:sum:GN_POP": 2562843, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 733, "numnum:min:GTOPO30": 290, "numnum:sum:GTOPO30": 1396, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 16, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 25, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 12.1, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 15.959999999999999, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 15.24, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 26.75, "numnum:count:POP1950": 3, "numnum:max:POP1950": 32, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 54, "numnum:count:POP1955": 3, "numnum:max:POP1955": 49, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 89, "numnum:count:POP1960": 3, "numnum:max:POP1960": 75, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 146, "numnum:count:POP1965": 3, "numnum:max:POP1965": 112, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 221, "numnum:count:POP1970": 3, "numnum:max:POP1970": 183, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 338, "numnum:count:POP1975": 3, "numnum:max:POP1975": 292, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 523, "numnum:count:POP1980": 3, "numnum:max:POP1980": 415, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 739, "numnum:count:POP1985": 3, "numnum:max:POP1985": 578, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 971, "numnum:count:POP1990": 3, "numnum:max:POP1990": 754, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1231, "numnum:count:POP1995": 3, "numnum:max:POP1995": 948, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1527, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1192, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1903, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1489, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2391, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1611, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2600, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1787, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2914, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2058, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3463, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2312, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 4065, "numnum:count:POP2050": 3, "numnum:max:POP2050": 2549, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4721, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 15.073242, 12.125264 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123, "MAX_POP20": 15091561, "MAX_POP50": 29872827, "MAX_POP300": 30682197, "MAX_POP310": 30696820, "MAX_NATSCA": 300, "MIN_AREAKM": 1479, "MAX_AREAKM": 4900, "MIN_AREAMI": 571, "MAX_AREAMI": 1892, "MIN_PERKM": 1365, "MAX_PERKM": 5010, "MIN_PERMI": 848, "MAX_PERMI": 3113, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 7734614, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494, "POP1955": 3029, "POP1960": 3680, "POP1965": 4738, "POP1970": 5585, "POP1975": 6450, "POP1980": 7349, "POP1985": 8328, "POP1990": 9061, "POP1995": 9707, "POP2000": 10534, "POP2005": 11487, "POP2010": 11893, "POP2015": 12503, "POP2020": 13465, "POP2025": 14451, "POP2050": 15561, "CITYALT": "Cairo", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 2, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 800, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 11, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 32.079991, "numnum:min:LATITUDE": 30.04996, "numnum:sum:LATITUDE": 62.129951, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 34.770012, "numnum:min:LONGITUDE": 31.249968, "numnum:sum:LONGITUDE": 66.01998, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 11893000, "numnum:min:POP_MAX": 3112000, "numnum:sum:POP_MAX": 15005000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 7734614, "numnum:min:POP_MIN": 378358, "numnum:sum:POP_MIN": 8112972, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 13720557, "numnum:min:POP_OTHER": 2306851, "numnum:sum:POP_OTHER": 16027408, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 360630, "numnum:min:GEONAMEID": 293394, "numnum:sum:GEONAMEID": 654024, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 14936123, "numnum:min:MAX_POP10": 2324568, "numnum:sum:MAX_POP10": 17260691, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 15091561, "numnum:min:MAX_POP20": 2324568, "numnum:sum:MAX_POP20": 17416129, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 29872827, "numnum:min:MAX_POP50": 2324568, "numnum:sum:MAX_POP50": 32197395, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 30682197, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 30682197, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 30696820, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 30696820, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1479, "numnum:min:MIN_AREAKM": 436, "numnum:sum:MIN_AREAKM": 1915, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 4900, "numnum:min:MAX_AREAKM": 436, "numnum:sum:MAX_AREAKM": 5336, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 571, "numnum:min:MIN_AREAMI": 168, "numnum:sum:MIN_AREAMI": 739, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1892, "numnum:min:MAX_AREAMI": 168, "numnum:sum:MAX_AREAMI": 2060, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 1365, "numnum:min:MIN_PERKM": 386, "numnum:sum:MIN_PERKM": 1751, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 5010, "numnum:min:MAX_PERKM": 386, "numnum:sum:MAX_PERKM": 5396, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 848, "numnum:min:MIN_PERMI": 240, "numnum:sum:MIN_PERMI": 1088, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 3113, "numnum:min:MAX_PERMI": 240, "numnum:sum:MAX_PERMI": 3353, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 34.716667, "numnum:min:MIN_BBXMIN": 30.641667, "numnum:sum:MIN_BBXMIN": 65.358334, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 34.716667, "numnum:min:MAX_BBXMIN": 30.991693, "numnum:sum:MAX_BBXMIN": 65.70836, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 34.958333, "numnum:min:MIN_BBXMAX": 31.672096, "numnum:sum:MIN_BBXMAX": 66.630429, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 34.958333, "numnum:min:MAX_BBXMAX": 31.733333, "numnum:sum:MAX_BBXMAX": 66.691666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 31.85, "numnum:min:MIN_BBYMIN": 29.3, "numnum:sum:MIN_BBYMIN": 61.150000000000009, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 31.85, "numnum:min:MAX_BBYMIN": 29.8, "numnum:sum:MAX_BBYMIN": 61.650000000000009, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 32.208333, "numnum:min:MIN_BBYMAX": 30.531354, "numnum:sum:MIN_BBYMAX": 62.739687, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 32.208333, "numnum:min:MAX_BBYMAX": 31.158333, "numnum:sum:MAX_BBYMAX": 63.366666, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 34.836735, "numnum:min:MEAN_BBXC": 31.273845, "numnum:sum:MEAN_BBXC": 66.11058, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 32.030266, "numnum:min:MEAN_BBYC": 30.353647, "numnum:sum:MEAN_BBYC": 62.38391299999999, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 5, "numnum:sum:ADMIN1_COD": 16, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7734614, "numnum:min:GN_POP": 378358, "numnum:sum:GN_POP": 8112972, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 23, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9976, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 515, "numnum:min:UN_FID": 304, "numnum:sum:UN_FID": 819, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 32.04, "numnum:min:UN_LAT": 30.07, "numnum:sum:UN_LAT": 62.11, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 34.76, "numnum:min:UN_LONG": 31.25, "numnum:sum:UN_LONG": 66.00999999999999, "numnum:count:POP1950": 2, "numnum:max:POP1950": 2494, "numnum:min:POP1950": 418, "numnum:sum:POP1950": 2912, "numnum:count:POP1955": 2, "numnum:max:POP1955": 3029, "numnum:min:POP1955": 556, "numnum:sum:POP1955": 3585, "numnum:count:POP1960": 2, "numnum:max:POP1960": 3680, "numnum:min:POP1960": 738, "numnum:sum:POP1960": 4418, "numnum:count:POP1965": 2, "numnum:max:POP1965": 4738, "numnum:min:POP1965": 882, "numnum:sum:POP1965": 5620, "numnum:count:POP1970": 2, "numnum:max:POP1970": 5585, "numnum:min:POP1970": 1029, "numnum:sum:POP1970": 6614, "numnum:count:POP1975": 2, "numnum:max:POP1975": 6450, "numnum:min:POP1975": 1206, "numnum:sum:POP1975": 7656, "numnum:count:POP1980": 2, "numnum:max:POP1980": 7349, "numnum:min:POP1980": 1416, "numnum:sum:POP1980": 8765, "numnum:count:POP1985": 2, "numnum:max:POP1985": 8328, "numnum:min:POP1985": 1681, "numnum:sum:POP1985": 10009, "numnum:count:POP1990": 2, "numnum:max:POP1990": 9061, "numnum:min:POP1990": 2026, "numnum:sum:POP1990": 11087, "numnum:count:POP1995": 2, "numnum:max:POP1995": 9707, "numnum:min:POP1995": 2442, "numnum:sum:POP1995": 12149, "numnum:count:POP2000": 2, "numnum:max:POP2000": 10534, "numnum:min:POP2000": 2752, "numnum:sum:POP2000": 13286, "numnum:count:POP2005": 2, "numnum:max:POP2005": 11487, "numnum:min:POP2005": 3012, "numnum:sum:POP2005": 14499, "numnum:count:POP2010": 2, "numnum:max:POP2010": 11893, "numnum:min:POP2010": 3112, "numnum:sum:POP2010": 15005, "numnum:count:POP2015": 2, "numnum:max:POP2015": 12503, "numnum:min:POP2015": 3256, "numnum:sum:POP2015": 15759, "numnum:count:POP2020": 2, "numnum:max:POP2020": 13465, "numnum:min:POP2020": 3453, "numnum:sum:POP2020": 16918, "numnum:count:POP2025": 2, "numnum:max:POP2025": 14451, "numnum:min:POP2025": 3600, "numnum:sum:POP2025": 18051, "numnum:count:POP2050": 2, "numnum:max:POP2050": 15561, "numnum:min:POP2050": 3726, "numnum:sum:POP2050": 19287, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.031055 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athínai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athínai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 500, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 11, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 39.927239, "numnum:min:LATITUDE": 37.983326, "numnum:sum:LATITUDE": 77.91056499999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 32.864392, "numnum:min:LONGITUDE": 23.733321, "numnum:sum:LONGITUDE": 56.597713, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3716000, "numnum:min:POP_MAX": 3242000, "numnum:sum:POP_MAX": 6958000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3307379, "numnum:min:POP_MIN": 729137, "numnum:sum:POP_MIN": 4036516, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3267576, "numnum:min:POP_OTHER": 112572, "numnum:sum:POP_OTHER": 3380148, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 323786, "numnum:min:GEONAMEID": 264371, "numnum:sum:GEONAMEID": 588157, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3307379, "numnum:min:MAX_POP10": 2352834, "numnum:sum:MAX_POP10": 5660213, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3306823, "numnum:min:MAX_POP20": 3010089, "numnum:sum:MAX_POP20": 6316912, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3306823, "numnum:min:MAX_POP50": 3010089, "numnum:sum:MAX_POP50": 6316912, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3306823, "numnum:min:MAX_POP300": 3010089, "numnum:sum:MAX_POP300": 6316912, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 531, "numnum:min:MIN_AREAKM": 340, "numnum:sum:MIN_AREAKM": 871, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 534, "numnum:min:MAX_AREAKM": 509, "numnum:sum:MAX_AREAKM": 1043, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 205, "numnum:min:MIN_AREAMI": 131, "numnum:sum:MIN_AREAMI": 336, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 206, "numnum:min:MAX_AREAMI": 196, "numnum:sum:MAX_AREAMI": 402, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 355, "numnum:min:MIN_PERKM": 199, "numnum:sum:MIN_PERKM": 554, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 365, "numnum:min:MAX_PERKM": 296, "numnum:sum:MAX_PERKM": 661, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 221, "numnum:min:MIN_PERMI": 124, "numnum:sum:MIN_PERMI": 345, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 227, "numnum:min:MAX_PERMI": 184, "numnum:sum:MAX_PERMI": 411, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 32.425, "numnum:min:MIN_BBXMIN": 23.483333, "numnum:sum:MIN_BBXMIN": 55.908333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 32.425, "numnum:min:MAX_BBXMIN": 23.591667, "numnum:sum:MAX_BBXMIN": 56.016667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 33.008333, "numnum:min:MIN_BBXMAX": 23.916667, "numnum:sum:MIN_BBXMAX": 56.925, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 33.008333, "numnum:min:MAX_BBXMAX": 23.916667, "numnum:sum:MAX_BBXMAX": 56.925, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 39.841667, "numnum:min:MIN_BBYMIN": 37.9, "numnum:sum:MIN_BBYMIN": 77.741667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 39.841667, "numnum:min:MAX_BBYMIN": 37.908333, "numnum:sum:MAX_BBYMIN": 77.75, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 40.116667, "numnum:min:MIN_BBYMAX": 38.158333, "numnum:sum:MIN_BBYMAX": 78.275, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 40.116667, "numnum:min:MAX_BBYMAX": 38.158333, "numnum:sum:MAX_BBYMAX": 78.275, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 32.753878, "numnum:min:MEAN_BBXC": 23.741514, "numnum:sum:MEAN_BBXC": 56.495391999999998, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 39.957843, "numnum:min:MEAN_BBYC": 38.032045, "numnum:sum:MEAN_BBYC": 77.989888, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 68, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 68, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 3517182, "numnum:min:GN_POP": 729137, "numnum:sum:GN_POP": 4246319, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 850, "numnum:min:ELEVATION": 70, "numnum:sum:ELEVATION": 920, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 889, "numnum:min:GTOPO30": 110, "numnum:sum:GTOPO30": 999, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 500, "numnum:min:UN_FID": 198, "numnum:sum:UN_FID": 698, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 39.92, "numnum:min:UN_LAT": 37.94, "numnum:sum:UN_LAT": 77.86, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 32.85, "numnum:min:UN_LONG": 23.65, "numnum:sum:UN_LONG": 56.5, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1347, "numnum:min:POP1950": 281, "numnum:sum:POP1950": 1628, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1563, "numnum:min:POP1955": 439, "numnum:sum:POP1955": 2002, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1814, "numnum:min:POP1960": 635, "numnum:sum:POP1960": 2449, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2121, "numnum:min:POP1965": 954, "numnum:sum:POP1965": 3075, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2485, "numnum:min:POP1970": 1341, "numnum:sum:POP1970": 3826, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2738, "numnum:min:POP1975": 1709, "numnum:sum:POP1975": 4447, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2987, "numnum:min:POP1980": 1891, "numnum:sum:POP1980": 4878, "numnum:count:POP1985": 2, "numnum:max:POP1985": 3047, "numnum:min:POP1985": 2213, "numnum:sum:POP1985": 5260, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3070, "numnum:min:POP1990": 2561, "numnum:sum:POP1990": 5631, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3122, "numnum:min:POP1995": 2842, "numnum:sum:POP1995": 5964, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3179, "numnum:min:POP2000": 3179, "numnum:sum:POP2000": 6358, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3572, "numnum:min:POP2005": 3230, "numnum:sum:POP2005": 6802, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3716, "numnum:min:POP2010": 3242, "numnum:sum:POP2010": 6958, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3908, "numnum:min:POP2015": 3256, "numnum:sum:POP2015": 7164, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4178, "numnum:min:POP2020": 3278, "numnum:sum:POP2020": 7456, "numnum:count:POP2025": 2, "numnum:max:POP2025": 4403, "numnum:min:POP2025": 3300, "numnum:sum:POP2025": 7703, "numnum:count:POP2050": 2, "numnum:max:POP2050": 4589, "numnum:min:POP2050": 3326, "numnum:sum:POP2050": 7915, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.996163 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 420, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 22, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 40.181151, "numnum:min:LATITUDE": 33.500034, "numnum:sum:LATITUDE": 107.55315999999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 44.513551, "numnum:min:LONGITUDE": 35.509708, "numnum:sum:LONGITUDE": 116.32325500000002, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 2466000, "numnum:min:POP_MAX": 1102000, "numnum:sum:POP_MAX": 5414000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 2466000, "numnum:min:POP_MIN": 1093485, "numnum:sum:POP_MIN": 5271610, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3344577, "numnum:min:POP_OTHER": 1154748, "numnum:sum:POP_OTHER": 6161305, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 36, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 616052, "numnum:min:GEONAMEID": 170654, "numnum:sum:GEONAMEID": 1063487, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3398649, "numnum:min:MAX_POP10": 1200842, "numnum:sum:MAX_POP10": 6311616, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3865606, "numnum:min:MAX_POP20": 1200842, "numnum:sum:MAX_POP20": 6778916, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3865606, "numnum:min:MAX_POP50": 1200842, "numnum:sum:MAX_POP50": 6807140, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3865606, "numnum:min:MAX_POP300": 1200842, "numnum:sum:MAX_POP300": 6807140, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 532, "numnum:min:MIN_AREAKM": 191, "numnum:sum:MIN_AREAKM": 1152, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 705, "numnum:min:MAX_AREAKM": 191, "numnum:sum:MAX_AREAKM": 1367, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 205, "numnum:min:MIN_AREAMI": 74, "numnum:sum:MIN_AREAMI": 445, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 272, "numnum:min:MAX_AREAMI": 74, "numnum:sum:MAX_AREAMI": 528, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 608, "numnum:min:MIN_PERKM": 166, "numnum:sum:MIN_PERKM": 1177, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 768, "numnum:min:MAX_PERKM": 166, "numnum:sum:MAX_PERKM": 1391, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 378, "numnum:min:MIN_PERMI": 103, "numnum:sum:MIN_PERMI": 732, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 477, "numnum:min:MAX_PERMI": 103, "numnum:sum:MAX_PERMI": 864, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 44.391667, "numnum:min:MIN_BBXMIN": 35.441667, "numnum:sum:MIN_BBXMIN": 115.883334, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 44.391667, "numnum:min:MAX_BBXMIN": 35.441667, "numnum:sum:MAX_BBXMIN": 115.883334, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 44.6, "numnum:min:MIN_BBXMAX": 35.718541, "numnum:sum:MIN_BBXMAX": 116.793464, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 44.6, "numnum:min:MAX_BBXMAX": 35.758333, "numnum:sum:MAX_BBXMAX": 116.908333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 39.925, "numnum:min:MIN_BBYMIN": 33.283333, "numnum:sum:MIN_BBYMIN": 106.908333, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 39.925, "numnum:min:MAX_BBYMIN": 33.283333, "numnum:sum:MAX_BBYMIN": 106.908333, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 40.241667, "numnum:min:MIN_BBYMAX": 33.611711, "numnum:sum:MIN_BBYMAX": 108.02004500000001, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 40.241667, "numnum:min:MAX_BBYMAX": 33.625, "numnum:sum:MAX_BBYMAX": 108.033334, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 44.506293, "numnum:min:MEAN_BBXC": 35.600789, "numnum:sum:MEAN_BBXC": 116.382201, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 40.127356, "numnum:min:MEAN_BBYC": 33.474283, "numnum:sum:MEAN_BBYC": 107.49444599999998, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 15, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1916100, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 3009585, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1002, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 1058, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 493, "numnum:min:UN_FID": 341, "numnum:sum:UN_FID": 1211, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 40.2, "numnum:min:UN_LAT": 33.49, "numnum:sum:UN_LAT": 107.57000000000001, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 44.53, "numnum:min:UN_LONG": 35.49, "numnum:sum:UN_LONG": 116.31, "numnum:count:POP1950": 3, "numnum:max:POP1950": 367, "numnum:min:POP1950": 322, "numnum:sum:POP1950": 1030, "numnum:count:POP1955": 3, "numnum:max:POP1955": 461, "numnum:min:POP1955": 425, "numnum:sum:POP1955": 1317, "numnum:count:POP1960": 3, "numnum:max:POP1960": 579, "numnum:min:POP1960": 538, "numnum:sum:POP1960": 1678, "numnum:count:POP1965": 3, "numnum:max:POP1965": 733, "numnum:min:POP1965": 648, "numnum:sum:POP1965": 2108, "numnum:count:POP1970": 3, "numnum:max:POP1970": 923, "numnum:min:POP1970": 778, "numnum:sum:POP1970": 2615, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1500, "numnum:min:POP1975": 911, "numnum:sum:POP1975": 3533, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1623, "numnum:min:POP1980": 1042, "numnum:sum:POP1980": 4041, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1585, "numnum:min:POP1985": 1123, "numnum:sum:POP1985": 4254, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1691, "numnum:min:POP1990": 1175, "numnum:sum:POP1990": 4159, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1849, "numnum:min:POP1995": 1142, "numnum:sum:POP1995": 4259, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2044, "numnum:min:POP2000": 1111, "numnum:sum:POP2000": 4642, "numnum:count:POP2005": 3, "numnum:max:POP2005": 2330, "numnum:min:POP2005": 1103, "numnum:sum:POP2005": 5210, "numnum:count:POP2010": 3, "numnum:max:POP2010": 2466, "numnum:min:POP2010": 1102, "numnum:sum:POP2010": 5414, "numnum:count:POP2015": 3, "numnum:max:POP2015": 2675, "numnum:min:POP2015": 1102, "numnum:sum:POP2015": 5718, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2981, "numnum:min:POP2020": 1102, "numnum:sum:POP2020": 6134, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3293, "numnum:min:POP2025": 1102, "numnum:sum:POP2025": 6514, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3605, "numnum:min:POP2050": 1102, "numnum:sum:POP2050": 6880, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nicosia", "DIFFASCII": 0, "NAMEASCII": "Nicosia", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Capital of both", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cyprus", "SOV_A3": "CYP", "ADM0NAME": "Cyprus", "ADM0_A3": "CYP", "ISO_A2": "CY", "LATITUDE": 35.166676, "LONGITUDE": 33.366635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224300, "POP_MIN": 200452, "POP_OTHER": 222985, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 146268, "LS_NAME": "Nicosia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 224300, "MAX_POP20": 224300, "MAX_POP50": 224300, "MAX_POP300": 224300, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 128, "MAX_AREAKM": 128, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 68, "MAX_PERMI": 68, "MIN_BBXMIN": 33.275, "MAX_BBXMIN": 33.275, "MIN_BBXMAX": 33.425, "MAX_BBXMAX": 33.425, "MIN_BBYMIN": 35.041667, "MAX_BBYMIN": 35.041667, "MIN_BBYMAX": 35.225, "MAX_BBYMAX": 35.225, "MEAN_BBXC": 33.352244, "MEAN_BBYC": 35.15, "COMPARE": 0, "GN_ASCII": "Nicosia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 200452, "ELEVATION": 0, "GTOPO30": 128, "TIMEZONE": "Asia/Nicosia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 910, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 11, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 35.166676, "numnum:min:LATITUDE": 30.04996, "numnum:sum:LATITUDE": 97.296627, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 34.770012, "numnum:min:LONGITUDE": 31.249968, "numnum:sum:LONGITUDE": 99.386615, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 11893000, "numnum:min:POP_MAX": 224300, "numnum:sum:POP_MAX": 15229300, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 7734614, "numnum:min:POP_MIN": 200452, "numnum:sum:POP_MIN": 8313424, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 13720557, "numnum:min:POP_OTHER": 222985, "numnum:sum:POP_OTHER": 16250393, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 360630, "numnum:min:GEONAMEID": 146268, "numnum:sum:GEONAMEID": 800292, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 14936123, "numnum:min:MAX_POP10": 224300, "numnum:sum:MAX_POP10": 17484991, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 15091561, "numnum:min:MAX_POP20": 224300, "numnum:sum:MAX_POP20": 17640429, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 29872827, "numnum:min:MAX_POP50": 224300, "numnum:sum:MAX_POP50": 32421695, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 30682197, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 30906497, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 30696820, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 30696820, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 450, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1479, "numnum:min:MIN_AREAKM": 128, "numnum:sum:MIN_AREAKM": 2043, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 4900, "numnum:min:MAX_AREAKM": 128, "numnum:sum:MAX_AREAKM": 5464, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 571, "numnum:min:MIN_AREAMI": 49, "numnum:sum:MIN_AREAMI": 788, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 1892, "numnum:min:MAX_AREAMI": 49, "numnum:sum:MAX_AREAMI": 2109, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 1365, "numnum:min:MIN_PERKM": 109, "numnum:sum:MIN_PERKM": 1860, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 5010, "numnum:min:MAX_PERKM": 109, "numnum:sum:MAX_PERKM": 5505, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 848, "numnum:min:MIN_PERMI": 68, "numnum:sum:MIN_PERMI": 1156, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 3113, "numnum:min:MAX_PERMI": 68, "numnum:sum:MAX_PERMI": 3421, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 34.716667, "numnum:min:MIN_BBXMIN": 30.641667, "numnum:sum:MIN_BBXMIN": 98.633334, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 34.716667, "numnum:min:MAX_BBXMIN": 30.991693, "numnum:sum:MAX_BBXMIN": 98.98336, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 34.958333, "numnum:min:MIN_BBXMAX": 31.672096, "numnum:sum:MIN_BBXMAX": 100.055429, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 34.958333, "numnum:min:MAX_BBXMAX": 31.733333, "numnum:sum:MAX_BBXMAX": 100.11666600000001, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 35.041667, "numnum:min:MIN_BBYMIN": 29.3, "numnum:sum:MIN_BBYMIN": 96.191667, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 35.041667, "numnum:min:MAX_BBYMIN": 29.8, "numnum:sum:MAX_BBYMIN": 96.691667, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 35.225, "numnum:min:MIN_BBYMAX": 30.531354, "numnum:sum:MIN_BBYMAX": 97.964687, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 35.225, "numnum:min:MAX_BBYMAX": 31.158333, "numnum:sum:MAX_BBYMAX": 98.591666, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 34.836735, "numnum:min:MEAN_BBXC": 31.273845, "numnum:sum:MEAN_BBXC": 99.46282400000001, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 35.15, "numnum:min:MEAN_BBYC": 30.353647, "numnum:sum:MEAN_BBYC": 97.533913, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 4, "numnum:sum:ADMIN1_COD": 20, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 7734614, "numnum:min:GN_POP": 200452, "numnum:sum:GN_POP": 8313424, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 128, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9848, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 515, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 819, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 32.04, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 62.11, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 34.76, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 66.00999999999999, "numnum:count:POP1950": 3, "numnum:max:POP1950": 2494, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2912, "numnum:count:POP1955": 3, "numnum:max:POP1955": 3029, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3585, "numnum:count:POP1960": 3, "numnum:max:POP1960": 3680, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 4418, "numnum:count:POP1965": 3, "numnum:max:POP1965": 4738, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 5620, "numnum:count:POP1970": 3, "numnum:max:POP1970": 5585, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 6614, "numnum:count:POP1975": 3, "numnum:max:POP1975": 6450, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 7656, "numnum:count:POP1980": 3, "numnum:max:POP1980": 7349, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 8765, "numnum:count:POP1985": 3, "numnum:max:POP1985": 8328, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 10009, "numnum:count:POP1990": 3, "numnum:max:POP1990": 9061, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 11087, "numnum:count:POP1995": 3, "numnum:max:POP1995": 9707, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 12149, "numnum:count:POP2000": 3, "numnum:max:POP2000": 10534, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 13286, "numnum:count:POP2005": 3, "numnum:max:POP2005": 11487, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 14499, "numnum:count:POP2010": 3, "numnum:max:POP2010": 11893, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 15005, "numnum:count:POP2015": 3, "numnum:max:POP2015": 12503, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 15759, "numnum:count:POP2020": 3, "numnum:max:POP2020": 13465, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 16918, "numnum:count:POP2025": 3, "numnum:max:POP2025": 14451, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 18051, "numnum:count:POP2050": 3, "numnum:max:POP2050": 15561, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 19287, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ 33.354492, 35.173808 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 5, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 33.338648, "numnum:min:LATITUDE": 31.778408, "numnum:sum:LATITUDE": 65.11705599999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 44.393869, "numnum:min:LONGITUDE": 35.206626, "numnum:sum:LONGITUDE": 79.600495, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 5054000, "numnum:min:POP_MAX": 1029300, "numnum:sum:POP_MAX": 6083300, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 5054000, "numnum:min:POP_MIN": 801000, "numnum:sum:POP_MIN": 5855000, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 4959534, "numnum:min:POP_OTHER": 1072567, "numnum:sum:POP_OTHER": 6032101, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 281184, "numnum:min:GEONAMEID": 98182, "numnum:sum:GEONAMEID": 379366, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 5298025, "numnum:min:MAX_POP10": 1073782, "numnum:sum:MAX_POP10": 6371807, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 5298025, "numnum:min:MAX_POP20": 1073782, "numnum:sum:MAX_POP20": 6371807, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 5298025, "numnum:min:MAX_POP50": 1073782, "numnum:sum:MAX_POP50": 6371807, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 5298025, "numnum:min:MAX_POP300": 1073782, "numnum:sum:MAX_POP300": 6371807, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 587, "numnum:min:MIN_AREAKM": 246, "numnum:sum:MIN_AREAKM": 833, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 587, "numnum:min:MAX_AREAKM": 246, "numnum:sum:MAX_AREAKM": 833, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 227, "numnum:min:MIN_AREAMI": 95, "numnum:sum:MIN_AREAMI": 322, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 227, "numnum:min:MAX_AREAMI": 95, "numnum:sum:MAX_AREAMI": 322, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 365, "numnum:min:MIN_PERKM": 239, "numnum:sum:MIN_PERKM": 604, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 365, "numnum:min:MAX_PERKM": 239, "numnum:sum:MAX_PERKM": 604, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 227, "numnum:min:MIN_PERMI": 149, "numnum:sum:MIN_PERMI": 376, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 227, "numnum:min:MAX_PERMI": 149, "numnum:sum:MAX_PERMI": 376, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 44.241667, "numnum:min:MIN_BBXMIN": 35.1, "numnum:sum:MIN_BBXMIN": 79.341667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 44.241667, "numnum:min:MAX_BBXMIN": 35.1, "numnum:sum:MAX_BBXMIN": 79.341667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 44.575, "numnum:min:MIN_BBXMAX": 35.316667, "numnum:sum:MIN_BBXMAX": 79.89166700000001, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 44.575, "numnum:min:MAX_BBXMAX": 35.316667, "numnum:sum:MAX_BBXMAX": 79.89166700000001, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 33.141667, "numnum:min:MIN_BBYMIN": 31.683333, "numnum:sum:MIN_BBYMIN": 64.825, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 33.141667, "numnum:min:MAX_BBYMIN": 31.683333, "numnum:sum:MAX_BBYMIN": 64.825, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 33.575, "numnum:min:MIN_BBYMAX": 31.991667, "numnum:sum:MIN_BBYMAX": 65.566667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 33.575, "numnum:min:MAX_BBYMAX": 31.991667, "numnum:sum:MAX_BBYMAX": 65.566667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 44.401776, "numnum:min:MEAN_BBXC": 35.210651, "numnum:sum:MEAN_BBXC": 79.612427, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 33.332697, "numnum:min:MEAN_BBYC": 31.809862, "numnum:sum:MEAN_BBYC": 65.142559, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 7, "numnum:min:ADMIN1_COD": 6, "numnum:sum:ADMIN1_COD": 13, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 5672513, "numnum:min:GN_POP": 714000, "numnum:sum:GN_POP": 6386513, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 795, "numnum:min:GTOPO30": 41, "numnum:sum:GTOPO30": 836, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 300, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 300, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 33.33, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 33.33, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 44.39, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 44.39, "numnum:count:POP1950": 2, "numnum:max:POP1950": 579, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 579, "numnum:count:POP1955": 2, "numnum:max:POP1955": 719, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 719, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1019, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1019, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1614, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1614, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2070, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2070, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2620, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2620, "numnum:count:POP1980": 2, "numnum:max:POP1980": 3145, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3145, "numnum:count:POP1985": 2, "numnum:max:POP1985": 3607, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3607, "numnum:count:POP1990": 2, "numnum:max:POP1990": 4092, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 4092, "numnum:count:POP1995": 2, "numnum:max:POP1995": 4598, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 4598, "numnum:count:POP2000": 2, "numnum:max:POP2000": 5200, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 5200, "numnum:count:POP2005": 2, "numnum:max:POP2005": 5327, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 5327, "numnum:count:POP2010": 2, "numnum:max:POP2010": 5054, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 5054, "numnum:count:POP2015": 2, "numnum:max:POP2015": 5891, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 5891, "numnum:count:POP2020": 2, "numnum:max:POP2020": 6618, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 6618, "numnum:count:POP2025": 2, "numnum:max:POP2025": 7345, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 7345, "numnum:count:POP2050": 2, "numnum:max:POP2050": 8060, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 8060, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.321349 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 310, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 33.871975, "numnum:min:LATITUDE": 33.500034, "numnum:sum:LATITUDE": 67.37200899999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 36.299996, "numnum:min:LONGITUDE": 35.509708, "numnum:sum:LONGITUDE": 71.80970400000001, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2466000, "numnum:min:POP_MAX": 1846000, "numnum:sum:POP_MAX": 4312000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2466000, "numnum:min:POP_MIN": 1712125, "numnum:sum:POP_MIN": 4178125, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3344577, "numnum:min:POP_OTHER": 1661980, "numnum:sum:POP_OTHER": 5006557, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 276781, "numnum:min:GEONAMEID": 170654, "numnum:sum:GEONAMEID": 447435, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3398649, "numnum:min:MAX_POP10": 1712125, "numnum:sum:MAX_POP10": 5110774, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3865606, "numnum:min:MAX_POP20": 1712468, "numnum:sum:MAX_POP20": 5578074, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3865606, "numnum:min:MAX_POP50": 1740692, "numnum:sum:MAX_POP50": 5606298, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3865606, "numnum:min:MAX_POP300": 1740692, "numnum:sum:MAX_POP300": 5606298, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 532, "numnum:min:MIN_AREAKM": 429, "numnum:sum:MIN_AREAKM": 961, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 705, "numnum:min:MAX_AREAKM": 471, "numnum:sum:MAX_AREAKM": 1176, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 205, "numnum:min:MIN_AREAMI": 166, "numnum:sum:MIN_AREAMI": 371, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 272, "numnum:min:MAX_AREAMI": 182, "numnum:sum:MAX_AREAMI": 454, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 608, "numnum:min:MIN_PERKM": 403, "numnum:sum:MIN_PERKM": 1011, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 768, "numnum:min:MAX_PERKM": 457, "numnum:sum:MAX_PERKM": 1225, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 378, "numnum:min:MIN_PERMI": 251, "numnum:sum:MIN_PERMI": 629, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 477, "numnum:min:MAX_PERMI": 284, "numnum:sum:MAX_PERMI": 761, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 36.05, "numnum:min:MIN_BBXMIN": 35.441667, "numnum:sum:MIN_BBXMIN": 71.491667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 36.05, "numnum:min:MAX_BBXMIN": 35.441667, "numnum:sum:MAX_BBXMIN": 71.491667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 36.474923, "numnum:min:MIN_BBXMAX": 35.718541, "numnum:sum:MIN_BBXMAX": 72.193464, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 36.55, "numnum:min:MAX_BBXMAX": 35.758333, "numnum:sum:MAX_BBXMAX": 72.308333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 33.7, "numnum:min:MIN_BBYMIN": 33.283333, "numnum:sum:MIN_BBYMIN": 66.983333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 33.7, "numnum:min:MAX_BBYMIN": 33.283333, "numnum:sum:MAX_BBYMIN": 66.983333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 34.166667, "numnum:min:MIN_BBYMAX": 33.611711, "numnum:sum:MIN_BBYMAX": 67.778378, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 34.166667, "numnum:min:MAX_BBYMAX": 33.625, "numnum:sum:MAX_BBYMAX": 67.79166699999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 36.275119, "numnum:min:MEAN_BBXC": 35.600789, "numnum:sum:MEAN_BBXC": 71.875908, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 33.892807, "numnum:min:MEAN_BBYC": 33.474283, "numnum:sum:MEAN_BBYC": 67.36708999999999, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 4, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 4, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1916100, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 1916100, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 56, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 56, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 493, "numnum:min:UN_FID": 341, "numnum:sum:UN_FID": 834, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 33.88, "numnum:min:UN_LAT": 33.49, "numnum:sum:UN_LAT": 67.37, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 36.29, "numnum:min:UN_LONG": 35.49, "numnum:sum:UN_LONG": 71.78, "numnum:count:POP1950": 2, "numnum:max:POP1950": 367, "numnum:min:POP1950": 322, "numnum:sum:POP1950": 689, "numnum:count:POP1955": 2, "numnum:max:POP1955": 461, "numnum:min:POP1955": 425, "numnum:sum:POP1955": 886, "numnum:count:POP1960": 2, "numnum:max:POP1960": 579, "numnum:min:POP1960": 561, "numnum:sum:POP1960": 1140, "numnum:count:POP1965": 2, "numnum:max:POP1965": 733, "numnum:min:POP1965": 727, "numnum:sum:POP1965": 1460, "numnum:count:POP1970": 2, "numnum:max:POP1970": 923, "numnum:min:POP1970": 914, "numnum:sum:POP1970": 1837, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1500, "numnum:min:POP1975": 1122, "numnum:sum:POP1975": 2622, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1623, "numnum:min:POP1980": 1376, "numnum:sum:POP1980": 2999, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1585, "numnum:min:POP1985": 1546, "numnum:sum:POP1985": 3131, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1691, "numnum:min:POP1990": 1293, "numnum:sum:POP1990": 2984, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1849, "numnum:min:POP1995": 1268, "numnum:sum:POP1995": 3117, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2044, "numnum:min:POP2000": 1487, "numnum:sum:POP2000": 3531, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2330, "numnum:min:POP2005": 1777, "numnum:sum:POP2005": 4107, "numnum:count:POP2010": 2, "numnum:max:POP2010": 2466, "numnum:min:POP2010": 1846, "numnum:sum:POP2010": 4312, "numnum:count:POP2015": 2, "numnum:max:POP2015": 2675, "numnum:min:POP2015": 1941, "numnum:sum:POP2015": 4616, "numnum:count:POP2020": 2, "numnum:max:POP2020": 2981, "numnum:min:POP2020": 2051, "numnum:sum:POP2020": 5032, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3293, "numnum:min:POP2025": 2119, "numnum:sum:POP2025": 5412, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3605, "numnum:min:POP2050": 2173, "numnum:sum:POP2050": 5778, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amman", "DIFFASCII": 0, "NAMEASCII": "Amman", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Jordan", "SOV_A3": "JOR", "ADM0NAME": "Jordan", "ADM0_A3": "JOR", "ADM1NAME": "Amman", "ISO_A2": "JO", "LATITUDE": 31.950025, "LONGITUDE": 35.9333, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1060000, "POP_MIN": 1060000, "POP_OTHER": 2633729, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 250441, "MEGANAME": "Amman", "LS_NAME": "Amman", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2725138, "MAX_POP20": 3684787, "MAX_POP50": 3684787, "MAX_POP300": 3684787, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 403, "MAX_AREAKM": 545, "MIN_AREAMI": 156, "MAX_AREAMI": 210, "MIN_PERKM": 258, "MAX_PERKM": 361, "MIN_PERMI": 160, "MAX_PERMI": 224, "MIN_BBXMIN": 35.775, "MAX_BBXMIN": 35.775, "MIN_BBXMAX": 36.041667, "MAX_BBXMAX": 36.158333, "MIN_BBYMIN": 31.783333, "MAX_BBYMIN": 31.783333, "MIN_BBYMAX": 32.083333, "MAX_BBYMAX": 32.166667, "MEAN_BBXC": 35.928711, "MEAN_BBYC": 31.948606, "COMPARE": 0, "GN_ASCII": "Amman", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1275857, "ELEVATION": 0, "GTOPO30": 765, "TIMEZONE": "Asia/Amman", "GEONAMESNO": "GeoNames match general.", "UN_FID": 322, "UN_ADM0": "Jordan", "UN_LAT": 31.94, "UN_LONG": 35.93, "POP1950": 90, "POP1955": 140, "POP1960": 218, "POP1965": 299, "POP1970": 388, "POP1975": 500, "POP1980": 636, "POP1985": 736, "POP1990": 851, "POP1995": 973, "POP2000": 1007, "POP2005": 1042, "POP2010": 1060, "POP2015": 1106, "POP2020": 1185, "POP2025": 1268, "POP2050": 1359, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 35.947266, 31.952162 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yerevan", "DIFFASCII": 0, "NAMEASCII": "Yerevan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Armenia", "SOV_A3": "ARM", "ADM0NAME": "Armenia", "ADM0_A3": "ARM", "ADM1NAME": "Erevan", "ISO_A2": "AM", "LATITUDE": 40.181151, "LONGITUDE": 44.513551, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1102000, "POP_MIN": 1093485, "POP_OTHER": 1154748, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 616052, "MEGANAME": "Yerevan", "LS_NAME": "Yerevan", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1200842, "MAX_POP20": 1200842, "MAX_POP50": 1200842, "MAX_POP300": 1200842, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 191, "MAX_AREAKM": 191, "MIN_AREAMI": 74, "MAX_AREAMI": 74, "MIN_PERKM": 166, "MAX_PERKM": 166, "MIN_PERMI": 103, "MAX_PERMI": 103, "MIN_BBXMIN": 44.391667, "MAX_BBXMIN": 44.391667, "MIN_BBXMAX": 44.6, "MAX_BBXMAX": 44.6, "MIN_BBYMIN": 39.925, "MAX_BBYMIN": 39.925, "MIN_BBYMAX": 40.241667, "MAX_BBYMAX": 40.241667, "MEAN_BBXC": 44.506293, "MEAN_BBYC": 40.127356, "COMPARE": 0, "GN_ASCII": "Yerevan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1093485, "ELEVATION": 0, "GTOPO30": 1002, "TIMEZONE": "Asia/Yerevan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 377, "UN_ADM0": "Armenia", "UN_LAT": 40.2, "UN_LONG": 44.53, "POP1950": 341, "POP1955": 431, "POP1960": 538, "POP1965": 648, "POP1970": 778, "POP1975": 911, "POP1980": 1042, "POP1985": 1123, "POP1990": 1175, "POP1995": 1142, "POP2000": 1111, "POP2005": 1103, "POP2010": 1102, "POP2015": 1102, "POP2020": 1102, "POP2025": 1102, "POP2050": 1102, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 520, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 40.181151, "numnum:min:LATITUDE": 31.778408, "numnum:sum:LATITUDE": 105.298207, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 44.513551, "numnum:min:LONGITUDE": 35.206626, "numnum:sum:LONGITUDE": 124.114046, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 5054000, "numnum:min:POP_MAX": 1029300, "numnum:sum:POP_MAX": 7185300, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 5054000, "numnum:min:POP_MIN": 801000, "numnum:sum:POP_MIN": 6948485, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 4959534, "numnum:min:POP_OTHER": 1072567, "numnum:sum:POP_OTHER": 7186849, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 37, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 36, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 616052, "numnum:min:GEONAMEID": 98182, "numnum:sum:GEONAMEID": 995418, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 5298025, "numnum:min:MAX_POP10": 1073782, "numnum:sum:MAX_POP10": 7572649, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 5298025, "numnum:min:MAX_POP20": 1073782, "numnum:sum:MAX_POP20": 7572649, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 5298025, "numnum:min:MAX_POP50": 1073782, "numnum:sum:MAX_POP50": 7572649, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 5298025, "numnum:min:MAX_POP300": 1073782, "numnum:sum:MAX_POP300": 7572649, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 587, "numnum:min:MIN_AREAKM": 191, "numnum:sum:MIN_AREAKM": 1024, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 587, "numnum:min:MAX_AREAKM": 191, "numnum:sum:MAX_AREAKM": 1024, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 227, "numnum:min:MIN_AREAMI": 74, "numnum:sum:MIN_AREAMI": 396, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 227, "numnum:min:MAX_AREAMI": 74, "numnum:sum:MAX_AREAMI": 396, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 365, "numnum:min:MIN_PERKM": 166, "numnum:sum:MIN_PERKM": 770, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 365, "numnum:min:MAX_PERKM": 166, "numnum:sum:MAX_PERKM": 770, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 227, "numnum:min:MIN_PERMI": 103, "numnum:sum:MIN_PERMI": 479, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 227, "numnum:min:MAX_PERMI": 103, "numnum:sum:MAX_PERMI": 479, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 44.391667, "numnum:min:MIN_BBXMIN": 35.1, "numnum:sum:MIN_BBXMIN": 123.73333399999999, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 44.391667, "numnum:min:MAX_BBXMIN": 35.1, "numnum:sum:MAX_BBXMIN": 123.73333399999999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 44.6, "numnum:min:MIN_BBXMAX": 35.316667, "numnum:sum:MIN_BBXMAX": 124.491667, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 44.6, "numnum:min:MAX_BBXMAX": 35.316667, "numnum:sum:MAX_BBXMAX": 124.491667, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 39.925, "numnum:min:MIN_BBYMIN": 31.683333, "numnum:sum:MIN_BBYMIN": 104.75, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 39.925, "numnum:min:MAX_BBYMIN": 31.683333, "numnum:sum:MAX_BBYMIN": 104.75, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 40.241667, "numnum:min:MIN_BBYMAX": 31.991667, "numnum:sum:MIN_BBYMAX": 105.808334, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 40.241667, "numnum:min:MAX_BBYMAX": 31.991667, "numnum:sum:MAX_BBYMAX": 105.808334, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 44.506293, "numnum:min:MEAN_BBXC": 35.210651, "numnum:sum:MEAN_BBXC": 124.11872, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 40.127356, "numnum:min:MEAN_BBYC": 31.809862, "numnum:sum:MEAN_BBYC": 105.269915, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 6, "numnum:sum:ADMIN1_COD": 24, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 5672513, "numnum:min:GN_POP": 714000, "numnum:sum:GN_POP": 7479998, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1002, "numnum:min:GTOPO30": 41, "numnum:sum:GTOPO30": 1838, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 377, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 677, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 40.2, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 73.53, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 44.53, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 88.92, "numnum:count:POP1950": 3, "numnum:max:POP1950": 579, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 920, "numnum:count:POP1955": 3, "numnum:max:POP1955": 719, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1150, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1019, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1557, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1614, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2262, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2070, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2848, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2620, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3531, "numnum:count:POP1980": 3, "numnum:max:POP1980": 3145, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4187, "numnum:count:POP1985": 3, "numnum:max:POP1985": 3607, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 4730, "numnum:count:POP1990": 3, "numnum:max:POP1990": 4092, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5267, "numnum:count:POP1995": 3, "numnum:max:POP1995": 4598, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5740, "numnum:count:POP2000": 3, "numnum:max:POP2000": 5200, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6311, "numnum:count:POP2005": 3, "numnum:max:POP2005": 5327, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6430, "numnum:count:POP2010": 3, "numnum:max:POP2010": 5054, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 6156, "numnum:count:POP2015": 3, "numnum:max:POP2015": 5891, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 6993, "numnum:count:POP2020": 3, "numnum:max:POP2020": 6618, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 7720, "numnum:count:POP2025": 3, "numnum:max:POP2025": 7345, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 8447, "numnum:count:POP2050": 3, "numnum:max:POP2050": 8060, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 9162, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Khartoum", "NAMEALT": "Al-Khartum", "DIFFASCII": 0, "NAMEASCII": "Khartoum", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sudan", "SOV_A3": "SDN", "ADM0NAME": "Sudan", "ADM0_A3": "SDN", "ADM1NAME": "Khartoum", "ISO_A2": "SD", "LATITUDE": 15.588078, "LONGITUDE": 32.534179, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4754000, "POP_MIN": 1974647, "POP_OTHER": 2325931, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 379252, "MEGANAME": "Al-Khartum", "LS_NAME": "Khartoum", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2395309, "MAX_POP20": 2395309, "MAX_POP50": 2395309, "MAX_POP300": 4542697, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 348, "MAX_AREAKM": 630, "MIN_AREAMI": 134, "MAX_AREAMI": 243, "MIN_PERKM": 237, "MAX_PERKM": 424, "MIN_PERMI": 147, "MAX_PERMI": 263, "MIN_BBXMIN": 32.341667, "MAX_BBXMIN": 32.458333, "MIN_BBXMAX": 32.691667, "MAX_BBXMAX": 32.691667, "MIN_BBYMIN": 15.325, "MAX_BBYMIN": 15.325, "MIN_BBYMAX": 15.699422, "MAX_BBYMAX": 15.825, "MEAN_BBXC": 32.550462, "MEAN_BBYC": 15.559101, "COMPARE": 0, "GN_ASCII": "Khartoum", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 29, "GN_POP": 1974647, "ELEVATION": 0, "GTOPO30": 378, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 466, "UN_ADM0": "Sudan", "UN_LAT": 15.55, "UN_LONG": 32.52, "POP1950": 183, "POP1955": 252, "POP1960": 347, "POP1965": 477, "POP1970": 657, "POP1975": 886, "POP1980": 1164, "POP1985": 1611, "POP1990": 2360, "POP1995": 3242, "POP2000": 3949, "POP2005": 4518, "POP2010": 4754, "POP2015": 5185, "POP2020": 6077, "POP2025": 7017, "POP2050": 7937, "CITYALT": "Khartoum", "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 19, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1020, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 40, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 15.588078, "numnum:min:LATITUDE": 0.316659, "numnum:sum:LATITUDE": 72.051108, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 44.206593, "numnum:min:LONGITUDE": 31.580026, "numnum:sum:LONGITUDE": 261.685452, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 20, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 39, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 4754000, "numnum:min:POP_MAX": 111975, "numnum:sum:POP_MAX": 12937777, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 2757729, "numnum:min:POP_MIN": 111975, "numnum:sum:POP_MIN": 9201336, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 3013653, "numnum:min:POP_OTHER": 111975, "numnum:sum:POP_OTHER": 10269863, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 79, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 79, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 379252, "numnum:min:GEONAMEID": 71137, "numnum:sum:GEONAMEID": 1968210, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 2984087, "numnum:min:MAX_POP10": 111975, "numnum:sum:MAX_POP10": 10438619, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 3176486, "numnum:min:MAX_POP20": 111975, "numnum:sum:MAX_POP20": 10628817, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 3491912, "numnum:min:MAX_POP50": 111975, "numnum:sum:MAX_POP50": 11113807, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 4542697, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 13107481, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 650, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 462, "numnum:min:MIN_AREAKM": 21, "numnum:sum:MIN_AREAKM": 1528, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 1182, "numnum:min:MAX_AREAKM": 21, "numnum:sum:MAX_AREAKM": 2590, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 178, "numnum:min:MIN_AREAMI": 8, "numnum:sum:MIN_AREAMI": 589, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 457, "numnum:min:MAX_AREAMI": 8, "numnum:sum:MAX_AREAMI": 1001, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 397, "numnum:min:MIN_PERKM": 30, "numnum:sum:MIN_PERKM": 1324, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 1325, "numnum:min:MAX_PERKM": 30, "numnum:sum:MAX_PERKM": 2518, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 247, "numnum:min:MIN_PERMI": 18, "numnum:sum:MIN_PERMI": 822, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 823, "numnum:min:MAX_PERMI": 18, "numnum:sum:MAX_PERMI": 1563, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 44.15, "numnum:min:MIN_BBXMIN": 31.575, "numnum:sum:MIN_BBXMIN": 261.01666700000006, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 44.15, "numnum:min:MAX_BBXMIN": 31.575, "numnum:sum:MAX_BBXMIN": 261.183333, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 44.258333, "numnum:min:MIN_BBXMAX": 31.625, "numnum:sum:MIN_BBXMAX": 262.483334, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 44.258333, "numnum:min:MAX_BBXMAX": 31.625, "numnum:sum:MAX_BBXMAX": 263, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 15.325, "numnum:min:MIN_BBYMIN": 0.033333, "numnum:sum:MIN_BBYMIN": 70.233333, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 15.325, "numnum:min:MAX_BBYMIN": 0.166719, "numnum:sum:MAX_BBYMIN": 71.005166, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 15.699422, "numnum:min:MIN_BBYMAX": 0.475, "numnum:sum:MIN_BBYMAX": 72.724421, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 15.825, "numnum:min:MAX_BBYMAX": 0.475, "numnum:sum:MAX_BBYMAX": 72.849999, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 44.206615, "numnum:min:MEAN_BBXC": 31.6015, "numnum:sum:MEAN_BBXC": 261.948767, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 15.559101, "numnum:min:MEAN_BBYC": 0.323809, "numnum:sum:MEAN_BBYC": 71.828725, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 44, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 142, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 2757729, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 7273386, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 2363, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 6859, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 587, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1740, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 15.55, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 40.25, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 44.2, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 147.99, "numnum:count:POP1950": 7, "numnum:max:POP1950": 392, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 716, "numnum:count:POP1955": 7, "numnum:max:POP1955": 451, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 871, "numnum:count:POP1960": 7, "numnum:max:POP1960": 519, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1075, "numnum:count:POP1965": 7, "numnum:max:POP1965": 597, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1385, "numnum:count:POP1970": 7, "numnum:max:POP1970": 729, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1837, "numnum:count:POP1975": 7, "numnum:max:POP1975": 926, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2351, "numnum:count:POP1980": 7, "numnum:max:POP1980": 1175, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3046, "numnum:count:POP1985": 7, "numnum:max:POP1985": 1611, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 4084, "numnum:count:POP1990": 7, "numnum:max:POP1990": 2360, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5559, "numnum:count:POP1995": 7, "numnum:max:POP1995": 3242, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 7345, "numnum:count:POP2000": 7, "numnum:max:POP2000": 3949, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 8904, "numnum:count:POP2005": 7, "numnum:max:POP2005": 4518, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 10539, "numnum:count:POP2010": 7, "numnum:max:POP2010": 4754, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 11282, "numnum:count:POP2015": 7, "numnum:max:POP2015": 5185, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 12580, "numnum:count:POP2020": 7, "numnum:max:POP2020": 6077, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 15195, "numnum:count:POP2025": 7, "numnum:max:POP2025": 7017, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 18242, "numnum:count:POP2050": 7, "numnum:max:POP2050": 7937, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 21673, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 32.519531, 15.580711 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amman", "DIFFASCII": 0, "NAMEASCII": "Amman", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Jordan", "SOV_A3": "JOR", "ADM0NAME": "Jordan", "ADM0_A3": "JOR", "ADM1NAME": "Amman", "ISO_A2": "JO", "LATITUDE": 31.950025, "LONGITUDE": 35.9333, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1060000, "POP_MIN": 1060000, "POP_OTHER": 2633729, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 250441, "MEGANAME": "Amman", "LS_NAME": "Amman", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2725138, "MAX_POP20": 3684787, "MAX_POP50": 3684787, "MAX_POP300": 3684787, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 403, "MAX_AREAKM": 545, "MIN_AREAMI": 156, "MAX_AREAMI": 210, "MIN_PERKM": 258, "MAX_PERKM": 361, "MIN_PERMI": 160, "MAX_PERMI": 224, "MIN_BBXMIN": 35.775, "MAX_BBXMIN": 35.775, "MIN_BBXMAX": 36.041667, "MAX_BBXMAX": 36.158333, "MIN_BBYMIN": 31.783333, "MAX_BBYMIN": 31.783333, "MIN_BBYMAX": 32.083333, "MAX_BBYMAX": 32.166667, "MEAN_BBXC": 35.928711, "MEAN_BBYC": 31.948606, "COMPARE": 0, "GN_ASCII": "Amman", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1275857, "ELEVATION": 0, "GTOPO30": 765, "TIMEZONE": "Asia/Amman", "GEONAMESNO": "GeoNames match general.", "UN_FID": 322, "UN_ADM0": "Jordan", "UN_LAT": 31.94, "UN_LONG": 35.93, "POP1950": 90, "POP1955": 140, "POP1960": 218, "POP1965": 299, "POP1970": 388, "POP1975": 500, "POP1980": 636, "POP1985": 736, "POP1990": 851, "POP1995": 973, "POP2000": 1007, "POP2005": 1042, "POP2010": 1060, "POP2015": 1106, "POP2020": 1185, "POP2025": 1268, "POP2050": 1359, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 310, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 31.950025, "numnum:min:LATITUDE": 15.588078, "numnum:sum:LATITUDE": 47.538103, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 35.9333, "numnum:min:LONGITUDE": 32.534179, "numnum:sum:LONGITUDE": 68.467479, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 4754000, "numnum:min:POP_MAX": 1060000, "numnum:sum:POP_MAX": 5814000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1974647, "numnum:min:POP_MIN": 1060000, "numnum:sum:POP_MIN": 3034647, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2633729, "numnum:min:POP_OTHER": 2325931, "numnum:sum:POP_OTHER": 4959660, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 379252, "numnum:min:GEONAMEID": 250441, "numnum:sum:GEONAMEID": 629693, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2725138, "numnum:min:MAX_POP10": 2395309, "numnum:sum:MAX_POP10": 5120447, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3684787, "numnum:min:MAX_POP20": 2395309, "numnum:sum:MAX_POP20": 6080096, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3684787, "numnum:min:MAX_POP50": 2395309, "numnum:sum:MAX_POP50": 6080096, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 4542697, "numnum:min:MAX_POP300": 3684787, "numnum:sum:MAX_POP300": 8227484, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 403, "numnum:min:MIN_AREAKM": 348, "numnum:sum:MIN_AREAKM": 751, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 630, "numnum:min:MAX_AREAKM": 545, "numnum:sum:MAX_AREAKM": 1175, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 156, "numnum:min:MIN_AREAMI": 134, "numnum:sum:MIN_AREAMI": 290, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 243, "numnum:min:MAX_AREAMI": 210, "numnum:sum:MAX_AREAMI": 453, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 258, "numnum:min:MIN_PERKM": 237, "numnum:sum:MIN_PERKM": 495, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 424, "numnum:min:MAX_PERKM": 361, "numnum:sum:MAX_PERKM": 785, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 160, "numnum:min:MIN_PERMI": 147, "numnum:sum:MIN_PERMI": 307, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 263, "numnum:min:MAX_PERMI": 224, "numnum:sum:MAX_PERMI": 487, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 35.775, "numnum:min:MIN_BBXMIN": 32.341667, "numnum:sum:MIN_BBXMIN": 68.116667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 35.775, "numnum:min:MAX_BBXMIN": 32.458333, "numnum:sum:MAX_BBXMIN": 68.233333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 36.041667, "numnum:min:MIN_BBXMAX": 32.691667, "numnum:sum:MIN_BBXMAX": 68.733334, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 36.158333, "numnum:min:MAX_BBXMAX": 32.691667, "numnum:sum:MAX_BBXMAX": 68.85, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 31.783333, "numnum:min:MIN_BBYMIN": 15.325, "numnum:sum:MIN_BBYMIN": 47.108333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 31.783333, "numnum:min:MAX_BBYMIN": 15.325, "numnum:sum:MAX_BBYMIN": 47.108333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 32.083333, "numnum:min:MIN_BBYMAX": 15.699422, "numnum:sum:MIN_BBYMAX": 47.782755, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 32.166667, "numnum:min:MAX_BBYMAX": 15.825, "numnum:sum:MAX_BBYMAX": 47.99166699999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 35.928711, "numnum:min:MEAN_BBXC": 32.550462, "numnum:sum:MEAN_BBXC": 68.479173, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 31.948606, "numnum:min:MEAN_BBYC": 15.559101, "numnum:sum:MEAN_BBYC": 47.507707, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 29, "numnum:min:ADMIN1_COD": 11, "numnum:sum:ADMIN1_COD": 40, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1974647, "numnum:min:GN_POP": 1275857, "numnum:sum:GN_POP": 3250504, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 765, "numnum:min:GTOPO30": 378, "numnum:sum:GTOPO30": 1143, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 466, "numnum:min:UN_FID": 322, "numnum:sum:UN_FID": 788, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 31.94, "numnum:min:UN_LAT": 15.55, "numnum:sum:UN_LAT": 47.49, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 35.93, "numnum:min:UN_LONG": 32.52, "numnum:sum:UN_LONG": 68.45, "numnum:count:POP1950": 2, "numnum:max:POP1950": 183, "numnum:min:POP1950": 90, "numnum:sum:POP1950": 273, "numnum:count:POP1955": 2, "numnum:max:POP1955": 252, "numnum:min:POP1955": 140, "numnum:sum:POP1955": 392, "numnum:count:POP1960": 2, "numnum:max:POP1960": 347, "numnum:min:POP1960": 218, "numnum:sum:POP1960": 565, "numnum:count:POP1965": 2, "numnum:max:POP1965": 477, "numnum:min:POP1965": 299, "numnum:sum:POP1965": 776, "numnum:count:POP1970": 2, "numnum:max:POP1970": 657, "numnum:min:POP1970": 388, "numnum:sum:POP1970": 1045, "numnum:count:POP1975": 2, "numnum:max:POP1975": 886, "numnum:min:POP1975": 500, "numnum:sum:POP1975": 1386, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1164, "numnum:min:POP1980": 636, "numnum:sum:POP1980": 1800, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1611, "numnum:min:POP1985": 736, "numnum:sum:POP1985": 2347, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2360, "numnum:min:POP1990": 851, "numnum:sum:POP1990": 3211, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3242, "numnum:min:POP1995": 973, "numnum:sum:POP1995": 4215, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3949, "numnum:min:POP2000": 1007, "numnum:sum:POP2000": 4956, "numnum:count:POP2005": 2, "numnum:max:POP2005": 4518, "numnum:min:POP2005": 1042, "numnum:sum:POP2005": 5560, "numnum:count:POP2010": 2, "numnum:max:POP2010": 4754, "numnum:min:POP2010": 1060, "numnum:sum:POP2010": 5814, "numnum:count:POP2015": 2, "numnum:max:POP2015": 5185, "numnum:min:POP2015": 1106, "numnum:sum:POP2015": 6291, "numnum:count:POP2020": 2, "numnum:max:POP2020": 6077, "numnum:min:POP2020": 1185, "numnum:sum:POP2020": 7262, "numnum:count:POP2025": 2, "numnum:max:POP2025": 7017, "numnum:min:POP2025": 1268, "numnum:sum:POP2025": 8285, "numnum:count:POP2050": 2, "numnum:max:POP2050": 7937, "numnum:min:POP2050": 1359, "numnum:sum:POP2050": 9296, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 35.947266, 31.952162 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 6, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 51.181125, "numnum:min:LATITUDE": 9.560022, "numnum:sum:LATITUDE": 60.741147, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 71.427774, "numnum:min:LONGITUDE": 44.06531, "numnum:sum:LONGITUDE": 115.493084, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 477876, "numnum:min:POP_MAX": 345604, "numnum:sum:POP_MAX": 823480, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 325021, "numnum:min:POP_MIN": 247018, "numnum:sum:POP_MIN": 572039, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 317445, "numnum:min:POP_OTHER": 247018, "numnum:sum:POP_OTHER": 564463, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 10, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 20, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 20, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1526273, "numnum:min:GEONAMEID": 57289, "numnum:sum:GEONAMEID": 1583562, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 325021, "numnum:min:MAX_POP10": 247018, "numnum:sum:MAX_POP10": 572039, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 325021, "numnum:min:MAX_POP20": 247018, "numnum:sum:MAX_POP20": 572039, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 325021, "numnum:min:MAX_POP50": 247018, "numnum:sum:MAX_POP50": 572039, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 325021, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 325021, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 150, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 104, "numnum:min:MIN_AREAKM": 40, "numnum:sum:MIN_AREAKM": 144, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 104, "numnum:min:MAX_AREAKM": 40, "numnum:sum:MAX_AREAKM": 144, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 40, "numnum:min:MIN_AREAMI": 15, "numnum:sum:MIN_AREAMI": 55, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 40, "numnum:min:MAX_AREAMI": 15, "numnum:sum:MAX_AREAMI": 55, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 101, "numnum:min:MIN_PERKM": 37, "numnum:sum:MIN_PERKM": 138, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 101, "numnum:min:MAX_PERKM": 37, "numnum:sum:MAX_PERKM": 138, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 63, "numnum:min:MIN_PERMI": 23, "numnum:sum:MIN_PERMI": 86, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 63, "numnum:min:MAX_PERMI": 23, "numnum:sum:MAX_PERMI": 86, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 71.325, "numnum:min:MIN_BBXMIN": 44.025, "numnum:sum:MIN_BBXMIN": 115.35, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 71.325, "numnum:min:MAX_BBXMIN": 44.025, "numnum:sum:MAX_BBXMIN": 115.35, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 71.533333, "numnum:min:MIN_BBXMAX": 44.1, "numnum:sum:MIN_BBXMAX": 115.633333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 71.533333, "numnum:min:MAX_BBXMAX": 44.1, "numnum:sum:MAX_BBXMAX": 115.633333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 51.1, "numnum:min:MIN_BBYMIN": 9.516667, "numnum:sum:MIN_BBYMIN": 60.616667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 51.1, "numnum:min:MAX_BBYMIN": 9.516667, "numnum:sum:MAX_BBYMIN": 60.616667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 51.225, "numnum:min:MIN_BBYMAX": 9.591667, "numnum:sum:MIN_BBYMAX": 60.816667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 51.225, "numnum:min:MAX_BBYMAX": 9.591667, "numnum:sum:MAX_BBYMAX": 60.816667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 71.43275, "numnum:min:MEAN_BBXC": 44.06445, "numnum:sum:MEAN_BBXC": 115.49719999999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 51.164443, "numnum:min:MEAN_BBYC": 9.557004, "numnum:sum:MEAN_BBYC": 60.721447, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 20, "numnum:min:ADMIN1_COD": 5, "numnum:sum:ADMIN1_COD": 25, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 477876, "numnum:min:GN_POP": 345604, "numnum:sum:GN_POP": 823480, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1247, "numnum:min:GTOPO30": 339, "numnum:sum:GTOPO30": 1586, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.535749 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 270, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 18, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 15.333339, "numnum:min:LATITUDE": 0.316659, "numnum:sum:LATITUDE": 20.479973, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 38.933324, "numnum:min:LONGITUDE": 31.580026, "numnum:sum:LONGITUDE": 103.096674, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 20, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 20, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1420000, "numnum:min:POP_MAX": 111975, "numnum:sum:POP_MAX": 2152777, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1353189, "numnum:min:POP_MIN": 111975, "numnum:sum:POP_MIN": 2029094, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2153702, "numnum:min:POP_OTHER": 111975, "numnum:sum:POP_OTHER": 2852771, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 32, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 32, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 373303, "numnum:min:GEONAMEID": 232422, "numnum:sum:GEONAMEID": 949025, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2155592, "numnum:min:MAX_POP10": 111975, "numnum:sum:MAX_POP10": 2888369, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2153391, "numnum:min:MAX_POP20": 111975, "numnum:sum:MAX_POP20": 2886168, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 2322955, "numnum:min:MAX_POP50": 111975, "numnum:sum:MAX_POP50": 3055732, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 2322955, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 2943757, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 405, "numnum:min:MIN_AREAKM": 21, "numnum:sum:MIN_AREAKM": 516, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 465, "numnum:min:MAX_AREAKM": 21, "numnum:sum:MAX_AREAKM": 576, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 156, "numnum:min:MIN_AREAMI": 8, "numnum:sum:MIN_AREAMI": 199, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 180, "numnum:min:MAX_AREAMI": 8, "numnum:sum:MAX_AREAMI": 223, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 391, "numnum:min:MIN_PERKM": 30, "numnum:sum:MIN_PERKM": 514, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 470, "numnum:min:MAX_PERKM": 30, "numnum:sum:MAX_PERKM": 593, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 243, "numnum:min:MIN_PERMI": 18, "numnum:sum:MIN_PERMI": 319, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 292, "numnum:min:MAX_PERMI": 18, "numnum:sum:MAX_PERMI": 368, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 38.858333, "numnum:min:MIN_BBXMIN": 31.575, "numnum:sum:MIN_BBXMIN": 102.88333300000001, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 38.858333, "numnum:min:MAX_BBXMIN": 31.575, "numnum:sum:MAX_BBXMIN": 102.933333, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 38.975, "numnum:min:MIN_BBXMAX": 31.625, "numnum:sum:MIN_BBXMAX": 103.4, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 38.975, "numnum:min:MAX_BBXMAX": 31.625, "numnum:sum:MAX_BBXMAX": 103.4, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 15.225, "numnum:min:MIN_BBYMIN": 0.033333, "numnum:sum:MIN_BBYMIN": 20.075, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 15.225, "numnum:min:MAX_BBYMIN": 0.166719, "numnum:sum:MAX_BBYMIN": 20.208385999999999, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 15.408333, "numnum:min:MIN_BBYMAX": 0.475, "numnum:sum:MIN_BBYMAX": 20.766666, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 15.408333, "numnum:min:MAX_BBYMAX": 0.475, "numnum:sum:MAX_BBYMAX": 20.766666, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 38.926873, "numnum:min:MEAN_BBXC": 31.6015, "numnum:sum:MEAN_BBXC": 103.143059, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 15.327408, "numnum:min:MEAN_BBYC": 0.323809, "numnum:sum:MEAN_BBYC": 20.496384, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 44, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 62, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1353189, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 1917119, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 2360, "numnum:min:GTOPO30": 551, "numnum:sum:GTOPO30": 4117, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 507, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 507, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0.32, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0.32, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 32.57, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 32.57, "numnum:count:POP1950": 3, "numnum:max:POP1950": 95, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 95, "numnum:count:POP1955": 3, "numnum:max:POP1955": 110, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 110, "numnum:count:POP1960": 3, "numnum:max:POP1960": 137, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 137, "numnum:count:POP1965": 3, "numnum:max:POP1965": 222, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 222, "numnum:count:POP1970": 3, "numnum:max:POP1970": 340, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 340, "numnum:count:POP1975": 3, "numnum:max:POP1975": 398, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 398, "numnum:count:POP1980": 3, "numnum:max:POP1980": 469, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 469, "numnum:count:POP1985": 3, "numnum:max:POP1985": 595, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 595, "numnum:count:POP1990": 3, "numnum:max:POP1990": 755, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 755, "numnum:count:POP1995": 3, "numnum:max:POP1995": 912, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 912, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1097, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1097, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1318, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1318, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1420, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1420, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1597, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1597, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1979, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1979, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2506, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2506, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3198, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3198, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 710, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 15, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 43.805012, "numnum:min:LATITUDE": 41.311702, "numnum:sum:LATITUDE": 127.98979299999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 87.575006, "numnum:min:LONGITUDE": 69.294933, "numnum:sum:LONGITUDE": 231.455143, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 2184000, "numnum:min:POP_MAX": 837000, "numnum:sum:POP_MAX": 5172000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1978028, "numnum:min:POP_MIN": 804212, "numnum:sum:POP_MIN": 4290465, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2806287, "numnum:min:POP_OTHER": 781714, "numnum:sum:POP_OTHER": 5632402, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 35, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 35, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1529102, "numnum:min:GEONAMEID": 1512569, "numnum:sum:GEONAMEID": 4570346, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2865234, "numnum:min:MAX_POP10": 804212, "numnum:sum:MAX_POP10": 5735492, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2865890, "numnum:min:MAX_POP20": 804212, "numnum:sum:MAX_POP20": 5736148, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 2865890, "numnum:min:MAX_POP50": 804212, "numnum:sum:MAX_POP50": 5736148, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 2865890, "numnum:min:MAX_POP300": 804212, "numnum:sum:MAX_POP300": 5736148, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 639, "numnum:min:MIN_AREAKM": 245, "numnum:sum:MIN_AREAKM": 1245, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 643, "numnum:min:MAX_AREAKM": 245, "numnum:sum:MAX_AREAKM": 1249, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 247, "numnum:min:MIN_AREAMI": 94, "numnum:sum:MIN_AREAMI": 480, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 248, "numnum:min:MAX_AREAMI": 94, "numnum:sum:MAX_AREAMI": 481, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 377, "numnum:min:MIN_PERKM": 190, "numnum:sum:MIN_PERKM": 885, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 383, "numnum:min:MAX_PERKM": 190, "numnum:sum:MAX_PERKM": 891, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 234, "numnum:min:MIN_PERMI": 118, "numnum:sum:MIN_PERMI": 550, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 238, "numnum:min:MAX_PERMI": 118, "numnum:sum:MAX_PERMI": 554, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 87.358333, "numnum:min:MIN_BBXMIN": 69.05, "numnum:sum:MIN_BBXMIN": 230.83333299999999, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 87.358333, "numnum:min:MAX_BBXMIN": 69.05, "numnum:sum:MAX_BBXMIN": 230.83333299999999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 87.725, "numnum:min:MIN_BBXMAX": 69.436467, "numnum:sum:MIN_BBXMAX": 231.961467, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 87.725, "numnum:min:MAX_BBXMAX": 69.45, "numnum:sum:MAX_BBXMAX": 231.975, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 43.641667, "numnum:min:MIN_BBYMIN": 41.141667, "numnum:sum:MIN_BBYMIN": 127.550001, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 43.641667, "numnum:min:MAX_BBYMIN": 41.141667, "numnum:sum:MAX_BBYMIN": 127.550001, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 44.016667, "numnum:min:MIN_BBYMAX": 41.483333, "numnum:sum:MIN_BBYMAX": 128.5, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 44.016667, "numnum:min:MAX_BBYMAX": 41.483333, "numnum:sum:MAX_BBYMAX": 128.5, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 87.578494, "numnum:min:MEAN_BBXC": 69.256717, "numnum:sum:MEAN_BBXC": 231.43903400000003, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 43.854525, "numnum:min:MEAN_BBYC": 41.318916, "numnum:sum:MEAN_BBYC": 128.046358, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 13, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 27, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1978028, "numnum:min:GN_POP": 900000, "numnum:sum:GN_POP": 4386253, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 915, "numnum:min:GTOPO30": 460, "numnum:sum:GTOPO30": 2147, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 580, "numnum:min:UN_FID": 118, "numnum:sum:UN_FID": 1038, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 43.78, "numnum:min:UN_LAT": 41.24, "numnum:sum:UN_LAT": 127.89, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 87.58, "numnum:min:UN_LONG": 69.34, "numnum:sum:UN_LONG": 231.69, "numnum:count:POP1950": 3, "numnum:max:POP1950": 755, "numnum:min:POP1950": 150, "numnum:sum:POP1950": 1158, "numnum:count:POP1955": 3, "numnum:max:POP1955": 843, "numnum:min:POP1955": 186, "numnum:sum:POP1955": 1341, "numnum:count:POP1960": 3, "numnum:max:POP1960": 964, "numnum:min:POP1960": 236, "numnum:sum:POP1960": 1584, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1165, "numnum:min:POP1965": 322, "numnum:sum:POP1965": 1959, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1403, "numnum:min:POP1970": 433, "numnum:sum:POP1970": 2417, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1612, "numnum:min:POP1975": 485, "numnum:sum:POP1975": 2812, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1818, "numnum:min:POP1980": 538, "numnum:sum:POP1980": 3237, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1958, "numnum:min:POP1985": 583, "numnum:sum:POP1985": 3570, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2100, "numnum:min:POP1990": 635, "numnum:sum:POP1990": 3896, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2116, "numnum:min:POP1995": 703, "numnum:sum:POP1995": 4236, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2135, "numnum:min:POP2000": 770, "numnum:sum:POP2000": 4635, "numnum:count:POP2005": 3, "numnum:max:POP2005": 2158, "numnum:min:POP2005": 817, "numnum:sum:POP2005": 5000, "numnum:count:POP2010": 3, "numnum:max:POP2010": 2184, "numnum:min:POP2010": 837, "numnum:sum:POP2010": 5172, "numnum:count:POP2015": 3, "numnum:max:POP2015": 2340, "numnum:min:POP2015": 869, "numnum:sum:POP2015": 5456, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2620, "numnum:min:POP2020": 934, "numnum:sum:POP2020": 5970, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2851, "numnum:min:POP2025": 1011, "numnum:sum:POP2025": 6498, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3038, "numnum:min:POP2050": 1096, "numnum:sum:POP2050": 7026, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sanaa", "NAMEALT": "Sana'a'", "DIFFASCII": 0, "NAMEASCII": "Sanaa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Yemen", "SOV_A3": "YEM", "ADM0NAME": "Yemen", "ADM0_A3": "YEM", "ADM1NAME": "Amanat Al Asimah", "ISO_A2": "YE", "LATITUDE": 15.354733, "LONGITUDE": 44.206593, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2008000, "POP_MIN": 1835853, "POP_OTHER": 1742507, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 71137, "MEGANAME": "Sana'a'", "LS_NAME": "Sanaa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1835853, "MAX_POP20": 1835853, "MAX_POP50": 1835853, "MAX_POP300": 1835853, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 160, "MAX_AREAKM": 160, "MIN_AREAMI": 62, "MAX_AREAMI": 62, "MIN_PERKM": 132, "MAX_PERKM": 132, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": 44.15, "MAX_BBXMIN": 44.15, "MIN_BBXMAX": 44.258333, "MAX_BBXMAX": 44.258333, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.508333, "MAX_BBYMAX": 15.508333, "MEAN_BBXC": 44.206615, "MEAN_BBYC": 15.376031, "COMPARE": 0, "GN_ASCII": "Sanaa", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 587, "UN_ADM0": "Yemen", "UN_LAT": 15.36, "UN_LONG": 44.2, "POP1950": 46, "POP1955": 58, "POP1960": 72, "POP1965": 89, "POP1970": 111, "POP1975": 141, "POP1980": 238, "POP1985": 402, "POP1990": 653, "POP1995": 1034, "POP2000": 1365, "POP2005": 1801, "POP2010": 2008, "POP2015": 2345, "POP2020": 2955, "POP2025": 3636, "POP2050": 4382, "CITYALT": "Sanaa", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.368950 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Baku", "DIFFASCII": 0, "NAMEASCII": "Baku", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Azerbaijan", "SOV_A3": "AZE", "ADM0NAME": "Azerbaijan", "ADM0_A3": "AZE", "ADM1NAME": "Baki", "ISO_A2": "AZ", "LATITUDE": 40.395272, "LONGITUDE": 49.862217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2122300, "POP_MIN": 1892000, "POP_OTHER": 1518801, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 587084, "MEGANAME": "Baku", "LS_NAME": "Baku", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1581087, "MAX_POP20": 1581475, "MAX_POP50": 1581475, "MAX_POP300": 1581475, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 249, "MIN_AREAMI": 95, "MAX_AREAMI": 96, "MIN_PERKM": 174, "MAX_PERKM": 179, "MIN_PERMI": 108, "MAX_PERMI": 111, "MIN_BBXMIN": 49.7, "MAX_BBXMIN": 49.716667, "MIN_BBXMAX": 50.016667, "MAX_BBXMAX": 50.016667, "MIN_BBYMIN": 40.316667, "MAX_BBYMIN": 40.316667, "MIN_BBYMAX": 40.5, "MAX_BBYMAX": 40.5, "MEAN_BBXC": 49.881373, "MEAN_BBYC": 40.41632, "COMPARE": 0, "GN_ASCII": "Baku", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1116513, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Baku", "GEONAMESNO": "GeoNames match general.", "UN_FID": 200, "UN_ADM0": "Azerbaijan", "UN_LAT": 40.32, "UN_LONG": 49.81, "POP1950": 897, "POP1955": 940, "POP1960": 1005, "POP1965": 1132, "POP1970": 1274, "POP1975": 1429, "POP1980": 1574, "POP1985": 1660, "POP1990": 1733, "POP1995": 1766, "POP2000": 1806, "POP2005": 1867, "POP2010": 1892, "POP2015": 1931, "POP2020": 2006, "POP2025": 2097, "POP2050": 2187, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 49.877930, 40.380028 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Djibouti", "DIFFASCII": 0, "NAMEASCII": "Djibouti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Djibouti", "SOV_A3": "DJI", "ADM0NAME": "Djibouti", "ADM0_A3": "DJI", "ADM1NAME": "Djibouti", "ISO_A2": "DJ", "LATITUDE": 11.595014, "LONGITUDE": 43.148002, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 923000, "POP_MIN": 604013, "POP_OTHER": 335001, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 223817, "LS_NAME": "Djibouti", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 335001, "MAX_POP20": 335001, "MAX_POP50": 335001, "MAX_POP300": 335001, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 42, "MAX_AREAKM": 42, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 43.066667, "MAX_BBXMIN": 43.066667, "MIN_BBXMAX": 43.166667, "MAX_BBXMAX": 43.166667, "MIN_BBYMIN": 11.533333, "MAX_BBYMIN": 11.533333, "MIN_BBYMAX": 11.625, "MAX_BBYMAX": 11.625, "MEAN_BBXC": 43.129167, "MEAN_BBYC": 11.5715, "COMPARE": 0, "GN_ASCII": "Djibouti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 623891, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Djibouti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 11, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 570, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 17, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 51.181125, "numnum:min:LATITUDE": 9.03331, "numnum:sum:LATITUDE": 81.369471, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 71.427774, "numnum:min:LONGITUDE": 38.700004, "numnum:sum:LONGITUDE": 197.34109, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 13, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 3100000, "numnum:min:POP_MAX": 345604, "numnum:sum:POP_MAX": 4846480, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 2757729, "numnum:min:POP_MIN": 247018, "numnum:sum:POP_MIN": 3933781, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 3013653, "numnum:min:POP_OTHER": 247018, "numnum:sum:POP_OTHER": 3913117, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 43, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 43, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 1526273, "numnum:min:GEONAMEID": 57289, "numnum:sum:GEONAMEID": 2152358, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 2984087, "numnum:min:MAX_POP10": 247018, "numnum:sum:MAX_POP10": 3891127, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 3176486, "numnum:min:MAX_POP20": 247018, "numnum:sum:MAX_POP20": 4083526, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 3491912, "numnum:min:MAX_POP50": 247018, "numnum:sum:MAX_POP50": 4398952, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 3450173, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 4110195, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 462, "numnum:min:MIN_AREAKM": 40, "numnum:sum:MIN_AREAKM": 648, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 1182, "numnum:min:MAX_AREAKM": 40, "numnum:sum:MAX_AREAKM": 1368, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 178, "numnum:min:MIN_AREAMI": 15, "numnum:sum:MIN_AREAMI": 249, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 457, "numnum:min:MAX_AREAMI": 15, "numnum:sum:MAX_AREAMI": 528, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 397, "numnum:min:MIN_PERKM": 37, "numnum:sum:MIN_PERKM": 579, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 1325, "numnum:min:MAX_PERKM": 37, "numnum:sum:MAX_PERKM": 1507, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 247, "numnum:min:MIN_PERMI": 23, "numnum:sum:MIN_PERMI": 360, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 823, "numnum:min:MAX_PERMI": 23, "numnum:sum:MAX_PERMI": 936, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 71.325, "numnum:min:MIN_BBXMIN": 38.575, "numnum:sum:MIN_BBXMIN": 196.991667, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 71.325, "numnum:min:MAX_BBXMIN": 38.575, "numnum:sum:MAX_BBXMIN": 196.991667, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 71.533333, "numnum:min:MIN_BBXMAX": 38.966667, "numnum:sum:MIN_BBXMAX": 197.76666699999999, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 71.533333, "numnum:min:MAX_BBXMAX": 39.483333, "numnum:sum:MAX_BBXMAX": 198.283333, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 51.1, "numnum:min:MIN_BBYMIN": 8.033333, "numnum:sum:MIN_BBYMIN": 80.183333, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 51.1, "numnum:min:MAX_BBYMIN": 8.67178, "numnum:sum:MAX_BBYMIN": 80.82178, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 51.225, "numnum:min:MIN_BBYMAX": 9.125, "numnum:sum:MIN_BBYMAX": 81.566667, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 51.225, "numnum:min:MAX_BBYMAX": 9.125, "numnum:sum:MAX_BBYMAX": 81.566667, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 71.43275, "numnum:min:MEAN_BBXC": 38.919464, "numnum:sum:MEAN_BBXC": 197.545831, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 51.164443, "numnum:min:MEAN_BBYC": 8.825709, "numnum:sum:MEAN_BBYC": 81.118656, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 44, "numnum:min:ADMIN1_COD": 5, "numnum:sum:ADMIN1_COD": 76, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 2757729, "numnum:min:GN_POP": 345604, "numnum:sum:GN_POP": 4205100, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 2363, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 3950, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 180, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 180, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 9.02, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 9.02, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 38.7, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 38.7, "numnum:count:POP1950": 4, "numnum:max:POP1950": 392, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 392, "numnum:count:POP1955": 4, "numnum:max:POP1955": 451, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 451, "numnum:count:POP1960": 4, "numnum:max:POP1960": 519, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 519, "numnum:count:POP1965": 4, "numnum:max:POP1965": 597, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 597, "numnum:count:POP1970": 4, "numnum:max:POP1970": 729, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 729, "numnum:count:POP1975": 4, "numnum:max:POP1975": 926, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 926, "numnum:count:POP1980": 4, "numnum:max:POP1980": 1175, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1175, "numnum:count:POP1985": 4, "numnum:max:POP1985": 1476, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1476, "numnum:count:POP1990": 4, "numnum:max:POP1990": 1791, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1791, "numnum:count:POP1995": 4, "numnum:max:POP1995": 2157, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2157, "numnum:count:POP2000": 4, "numnum:max:POP2000": 2493, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2493, "numnum:count:POP2005": 4, "numnum:max:POP2005": 2902, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2902, "numnum:count:POP2010": 4, "numnum:max:POP2010": 3100, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3100, "numnum:count:POP2015": 4, "numnum:max:POP2015": 3453, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3453, "numnum:count:POP2020": 4, "numnum:max:POP2020": 4184, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4184, "numnum:count:POP2025": 4, "numnum:max:POP2025": 5083, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5083, "numnum:count:POP2050": 4, "numnum:max:POP2050": 6156, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 6156, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 43.154297, 11.609193 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 500, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 35.671943, "numnum:min:LATITUDE": 29.369718, "numnum:sum:LATITUDE": 65.041661, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 51.424344, "numnum:min:LONGITUDE": 47.978301, "numnum:sum:LONGITUDE": 99.402645, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 5, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 7873000, "numnum:min:POP_MAX": 2063000, "numnum:sum:POP_MAX": 9936000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 7153309, "numnum:min:POP_MIN": 60064, "numnum:sum:POP_MIN": 7213373, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 8209012, "numnum:min:POP_OTHER": 1682968, "numnum:sum:POP_OTHER": 9891980, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 285787, "numnum:min:GEONAMEID": 112931, "numnum:sum:GEONAMEID": 398718, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 8258981, "numnum:min:MAX_POP10": 1732952, "numnum:sum:MAX_POP10": 9991933, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 8258981, "numnum:min:MAX_POP20": 2142805, "numnum:sum:MAX_POP20": 10401786, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 8258981, "numnum:min:MAX_POP50": 2142805, "numnum:sum:MAX_POP50": 10401786, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 8258981, "numnum:min:MAX_POP300": 2142805, "numnum:sum:MAX_POP300": 10401786, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 496, "numnum:min:MIN_AREAKM": 264, "numnum:sum:MIN_AREAKM": 760, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 496, "numnum:min:MAX_AREAKM": 366, "numnum:sum:MAX_AREAKM": 862, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 191, "numnum:min:MIN_AREAMI": 102, "numnum:sum:MIN_AREAMI": 293, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 191, "numnum:min:MAX_AREAMI": 141, "numnum:sum:MAX_AREAMI": 332, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 245, "numnum:min:MIN_PERKM": 162, "numnum:sum:MIN_PERKM": 407, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 249, "numnum:min:MAX_PERKM": 245, "numnum:sum:MAX_PERKM": 494, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 152, "numnum:min:MIN_PERMI": 101, "numnum:sum:MIN_PERMI": 253, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 155, "numnum:min:MAX_PERMI": 152, "numnum:sum:MAX_PERMI": 307, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 51.216667, "numnum:min:MIN_BBXMIN": 47.8, "numnum:sum:MIN_BBXMIN": 99.016667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 51.216667, "numnum:min:MAX_BBXMIN": 47.821052, "numnum:sum:MAX_BBXMIN": 99.03771900000001, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 51.6, "numnum:min:MIN_BBXMAX": 48.1, "numnum:sum:MIN_BBXMAX": 99.7, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 51.6, "numnum:min:MAX_BBXMAX": 48.15, "numnum:sum:MAX_BBXMAX": 99.75, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 35.55, "numnum:min:MIN_BBYMIN": 29.066667, "numnum:sum:MIN_BBYMIN": 64.61666699999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 35.55, "numnum:min:MAX_BBYMIN": 29.225, "numnum:sum:MAX_BBYMIN": 64.775, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 35.825, "numnum:min:MIN_BBYMAX": 29.391667, "numnum:sum:MIN_BBYMAX": 65.216667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 35.825, "numnum:min:MAX_BBYMAX": 29.391667, "numnum:sum:MAX_BBYMAX": 65.216667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 51.416848, "numnum:min:MEAN_BBXC": 47.993999, "numnum:sum:MEAN_BBXC": 99.410847, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 35.709171, "numnum:min:MEAN_BBYC": 29.277119, "numnum:sum:MEAN_BBYC": 64.98629, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 26, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 26, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7153309, "numnum:min:GN_POP": 60064, "numnum:sum:GN_POP": 7213373, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1149, "numnum:min:GTOPO30": 12, "numnum:sum:GTOPO30": 1161, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 339, "numnum:min:UN_FID": 297, "numnum:sum:UN_FID": 636, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 35.77, "numnum:min:UN_LAT": 29.38, "numnum:sum:UN_LAT": 65.15, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 51.44, "numnum:min:UN_LONG": 47.97, "numnum:sum:UN_LONG": 99.41, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1041, "numnum:min:POP1950": 63, "numnum:sum:POP1950": 1104, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1396, "numnum:min:POP1955": 106, "numnum:sum:POP1955": 1502, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1873, "numnum:min:POP1960": 179, "numnum:sum:POP1960": 2052, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2511, "numnum:min:POP1965": 303, "numnum:sum:POP1965": 2814, "numnum:count:POP1970": 2, "numnum:max:POP1970": 3290, "numnum:min:POP1970": 553, "numnum:sum:POP1970": 3843, "numnum:count:POP1975": 2, "numnum:max:POP1975": 4273, "numnum:min:POP1975": 688, "numnum:sum:POP1975": 4961, "numnum:count:POP1980": 2, "numnum:max:POP1980": 5079, "numnum:min:POP1980": 891, "numnum:sum:POP1980": 5970, "numnum:count:POP1985": 2, "numnum:max:POP1985": 5839, "numnum:min:POP1985": 1122, "numnum:sum:POP1985": 6961, "numnum:count:POP1990": 2, "numnum:max:POP1990": 6365, "numnum:min:POP1990": 1392, "numnum:sum:POP1990": 7757, "numnum:count:POP1995": 2, "numnum:max:POP1995": 6687, "numnum:min:POP1995": 1190, "numnum:sum:POP1995": 7877, "numnum:count:POP2000": 2, "numnum:max:POP2000": 7128, "numnum:min:POP2000": 1499, "numnum:sum:POP2000": 8627, "numnum:count:POP2005": 2, "numnum:max:POP2005": 7653, "numnum:min:POP2005": 1888, "numnum:sum:POP2005": 9541, "numnum:count:POP2010": 2, "numnum:max:POP2010": 7873, "numnum:min:POP2010": 2063, "numnum:sum:POP2010": 9936, "numnum:count:POP2015": 2, "numnum:max:POP2015": 8221, "numnum:min:POP2015": 2305, "numnum:sum:POP2015": 10526, "numnum:count:POP2020": 2, "numnum:max:POP2020": 8832, "numnum:min:POP2020": 2592, "numnum:sum:POP2020": 11424, "numnum:count:POP2025": 2, "numnum:max:POP2025": 9404, "numnum:min:POP2025": 2790, "numnum:sum:POP2025": 12194, "numnum:count:POP2050": 2, "numnum:max:POP2050": 9814, "numnum:min:POP2050": 2956, "numnum:sum:POP2050": 12770, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 42.873079, "numnum:min:LATITUDE": 41.311702, "numnum:sum:LATITUDE": 84.18478099999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 74.585204, "numnum:min:LONGITUDE": 69.294933, "numnum:sum:LONGITUDE": 143.880137, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2184000, "numnum:min:POP_MAX": 837000, "numnum:sum:POP_MAX": 3021000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1978028, "numnum:min:POP_MIN": 804212, "numnum:sum:POP_MIN": 2782240, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2806287, "numnum:min:POP_OTHER": 781714, "numnum:sum:POP_OTHER": 3588001, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1528675, "numnum:min:GEONAMEID": 1512569, "numnum:sum:GEONAMEID": 3041244, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2865234, "numnum:min:MAX_POP10": 804212, "numnum:sum:MAX_POP10": 3669446, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2865890, "numnum:min:MAX_POP20": 804212, "numnum:sum:MAX_POP20": 3670102, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 2865890, "numnum:min:MAX_POP50": 804212, "numnum:sum:MAX_POP50": 3670102, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 2865890, "numnum:min:MAX_POP300": 804212, "numnum:sum:MAX_POP300": 3670102, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 639, "numnum:min:MIN_AREAKM": 245, "numnum:sum:MIN_AREAKM": 884, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 643, "numnum:min:MAX_AREAKM": 245, "numnum:sum:MAX_AREAKM": 888, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 247, "numnum:min:MIN_AREAMI": 94, "numnum:sum:MIN_AREAMI": 341, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 248, "numnum:min:MAX_AREAMI": 94, "numnum:sum:MAX_AREAMI": 342, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 377, "numnum:min:MIN_PERKM": 190, "numnum:sum:MIN_PERKM": 567, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 383, "numnum:min:MAX_PERKM": 190, "numnum:sum:MAX_PERKM": 573, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 234, "numnum:min:MIN_PERMI": 118, "numnum:sum:MIN_PERMI": 352, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 238, "numnum:min:MAX_PERMI": 118, "numnum:sum:MAX_PERMI": 356, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 74.425, "numnum:min:MIN_BBXMIN": 69.05, "numnum:sum:MIN_BBXMIN": 143.475, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 74.425, "numnum:min:MAX_BBXMIN": 69.05, "numnum:sum:MAX_BBXMIN": 143.475, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 74.8, "numnum:min:MIN_BBXMAX": 69.436467, "numnum:sum:MIN_BBXMAX": 144.236467, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 74.8, "numnum:min:MAX_BBXMAX": 69.45, "numnum:sum:MAX_BBXMAX": 144.25, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 42.766667, "numnum:min:MIN_BBYMIN": 41.141667, "numnum:sum:MIN_BBYMIN": 83.908334, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 42.766667, "numnum:min:MAX_BBYMIN": 41.141667, "numnum:sum:MAX_BBYMIN": 83.908334, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 43, "numnum:min:MIN_BBYMAX": 41.483333, "numnum:sum:MIN_BBYMAX": 84.483333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 43, "numnum:min:MAX_BBYMAX": 41.483333, "numnum:sum:MAX_BBYMAX": 84.483333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 74.603823, "numnum:min:MEAN_BBXC": 69.256717, "numnum:sum:MEAN_BBXC": 143.86054000000002, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 42.872917, "numnum:min:MEAN_BBYC": 41.318916, "numnum:sum:MEAN_BBYC": 84.191833, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 13, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 14, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1978028, "numnum:min:GN_POP": 900000, "numnum:sum:GN_POP": 2878028, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 772, "numnum:min:GTOPO30": 460, "numnum:sum:GTOPO30": 1232, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 580, "numnum:min:UN_FID": 340, "numnum:sum:UN_FID": 920, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 42.87, "numnum:min:UN_LAT": 41.24, "numnum:sum:UN_LAT": 84.11, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 74.77, "numnum:min:UN_LONG": 69.34, "numnum:sum:UN_LONG": 144.11, "numnum:count:POP1950": 2, "numnum:max:POP1950": 755, "numnum:min:POP1950": 150, "numnum:sum:POP1950": 905, "numnum:count:POP1955": 2, "numnum:max:POP1955": 843, "numnum:min:POP1955": 186, "numnum:sum:POP1955": 1029, "numnum:count:POP1960": 2, "numnum:max:POP1960": 964, "numnum:min:POP1960": 236, "numnum:sum:POP1960": 1200, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1165, "numnum:min:POP1965": 322, "numnum:sum:POP1965": 1487, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1403, "numnum:min:POP1970": 433, "numnum:sum:POP1970": 1836, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1612, "numnum:min:POP1975": 485, "numnum:sum:POP1975": 2097, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1818, "numnum:min:POP1980": 538, "numnum:sum:POP1980": 2356, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1958, "numnum:min:POP1985": 583, "numnum:sum:POP1985": 2541, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2100, "numnum:min:POP1990": 635, "numnum:sum:POP1990": 2735, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2116, "numnum:min:POP1995": 703, "numnum:sum:POP1995": 2819, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2135, "numnum:min:POP2000": 770, "numnum:sum:POP2000": 2905, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2158, "numnum:min:POP2005": 817, "numnum:sum:POP2005": 2975, "numnum:count:POP2010": 2, "numnum:max:POP2010": 2184, "numnum:min:POP2010": 837, "numnum:sum:POP2010": 3021, "numnum:count:POP2015": 2, "numnum:max:POP2015": 2247, "numnum:min:POP2015": 869, "numnum:sum:POP2015": 3116, "numnum:count:POP2020": 2, "numnum:max:POP2020": 2416, "numnum:min:POP2020": 934, "numnum:sum:POP2020": 3350, "numnum:count:POP2025": 2, "numnum:max:POP2025": 2636, "numnum:min:POP2025": 1011, "numnum:sum:POP2025": 3647, "numnum:count:POP2050": 2, "numnum:max:POP2050": 2892, "numnum:min:POP2050": 1096, "numnum:sum:POP2050": 3988, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Riyadh", "NAMEALT": "Ar-Riyadh", "DIFFASCII": 0, "NAMEASCII": "Riyadh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Saudi Arabia", "SOV_A3": "SAU", "ADM0NAME": "Saudi Arabia", "ADM0_A3": "SAU", "ADM1NAME": "Ar Riyad", "ISO_A2": "SA", "LATITUDE": 24.640833, "LONGITUDE": 46.772742, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4465000, "POP_MIN": 4205961, "POP_OTHER": 5148778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 108410, "MEGANAME": "Ar-Riyadh", "LS_NAME": "Riyadh", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5322753, "MAX_POP20": 5322753, "MAX_POP50": 5322753, "MAX_POP300": 5322753, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 854, "MAX_AREAKM": 854, "MIN_AREAMI": 330, "MAX_AREAMI": 330, "MIN_PERKM": 459, "MAX_PERKM": 459, "MIN_PERMI": 285, "MAX_PERMI": 285, "MIN_BBXMIN": 46.516667, "MAX_BBXMIN": 46.516667, "MIN_BBXMAX": 46.933333, "MAX_BBXMAX": 46.933333, "MIN_BBYMIN": 24.516667, "MAX_BBYMIN": 24.516667, "MIN_BBYMAX": 24.833333, "MAX_BBYMAX": 24.833333, "MEAN_BBXC": 46.740447, "MEAN_BBYC": 24.678984, "COMPARE": 0, "GN_ASCII": "Riyadh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 4205961, "ELEVATION": 0, "GTOPO30": 618, "TIMEZONE": "Asia/Riyadh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 444, "UN_ADM0": "Saudi Arabia", "UN_LAT": 24.65, "UN_LONG": 46.77, "POP1950": 111, "POP1955": 131, "POP1960": 156, "POP1965": 227, "POP1970": 408, "POP1975": 710, "POP1980": 1055, "POP1985": 1566, "POP1990": 2325, "POP1995": 3035, "POP2000": 3567, "POP2005": 4193, "POP2010": 4465, "POP2015": 4856, "POP2020": 5405, "POP2025": 5866, "POP2050": 6275, "CITYALT": "Riyadh", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 650, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 5, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 26.236136, "numnum:min:LATITUDE": 24.640833, "numnum:sum:LATITUDE": 50.876969, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 50.583052, "numnum:min:LONGITUDE": 46.772742, "numnum:sum:LONGITUDE": 97.355794, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 4465000, "numnum:min:POP_MAX": 563920, "numnum:sum:POP_MAX": 5028920, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 4205961, "numnum:min:POP_MIN": 157474, "numnum:sum:POP_MIN": 4363435, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 5148778, "numnum:min:POP_OTHER": 563666, "numnum:sum:POP_OTHER": 5712444, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 290340, "numnum:min:GEONAMEID": 108410, "numnum:sum:GEONAMEID": 398750, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 5322753, "numnum:min:MAX_POP10": 563920, "numnum:sum:MAX_POP10": 5886673, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 5322753, "numnum:min:MAX_POP20": 563920, "numnum:sum:MAX_POP20": 5886673, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 5322753, "numnum:min:MAX_POP50": 563920, "numnum:sum:MAX_POP50": 5886673, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 5322753, "numnum:min:MAX_POP300": 563920, "numnum:sum:MAX_POP300": 5886673, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 854, "numnum:min:MIN_AREAKM": 178, "numnum:sum:MIN_AREAKM": 1032, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 854, "numnum:min:MAX_AREAKM": 178, "numnum:sum:MAX_AREAKM": 1032, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 330, "numnum:min:MIN_AREAMI": 69, "numnum:sum:MIN_AREAMI": 399, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 330, "numnum:min:MAX_AREAMI": 69, "numnum:sum:MAX_AREAMI": 399, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 459, "numnum:min:MIN_PERKM": 184, "numnum:sum:MIN_PERKM": 643, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 459, "numnum:min:MAX_PERKM": 184, "numnum:sum:MAX_PERKM": 643, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 285, "numnum:min:MIN_PERMI": 115, "numnum:sum:MIN_PERMI": 400, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 285, "numnum:min:MAX_PERMI": 115, "numnum:sum:MAX_PERMI": 400, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 50.441667, "numnum:min:MIN_BBXMIN": 46.516667, "numnum:sum:MIN_BBXMIN": 96.95833400000001, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 50.441667, "numnum:min:MAX_BBXMIN": 46.516667, "numnum:sum:MAX_BBXMIN": 96.95833400000001, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 50.633333, "numnum:min:MIN_BBXMAX": 46.933333, "numnum:sum:MIN_BBXMAX": 97.566666, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 50.633333, "numnum:min:MAX_BBXMAX": 46.933333, "numnum:sum:MAX_BBXMAX": 97.566666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 26.05, "numnum:min:MIN_BBYMIN": 24.516667, "numnum:sum:MIN_BBYMIN": 50.566667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 26.05, "numnum:min:MAX_BBYMIN": 24.516667, "numnum:sum:MAX_BBYMIN": 50.566667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 26.25, "numnum:min:MIN_BBYMAX": 24.833333, "numnum:sum:MIN_BBYMAX": 51.083332999999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 26.25, "numnum:min:MAX_BBYMAX": 24.833333, "numnum:sum:MAX_BBYMAX": 51.083332999999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 50.542529, "numnum:min:MEAN_BBXC": 46.740447, "numnum:sum:MEAN_BBXC": 97.282976, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 26.164763, "numnum:min:MEAN_BBYC": 24.678984, "numnum:sum:MEAN_BBYC": 50.843747, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 10, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 12, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 4205961, "numnum:min:GN_POP": 147074, "numnum:sum:GN_POP": 4353035, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 618, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9381, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 444, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 444, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 24.65, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 24.65, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 46.77, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 46.77, "numnum:count:POP1950": 2, "numnum:max:POP1950": 111, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 111, "numnum:count:POP1955": 2, "numnum:max:POP1955": 131, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 131, "numnum:count:POP1960": 2, "numnum:max:POP1960": 156, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 156, "numnum:count:POP1965": 2, "numnum:max:POP1965": 227, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 227, "numnum:count:POP1970": 2, "numnum:max:POP1970": 408, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 408, "numnum:count:POP1975": 2, "numnum:max:POP1975": 710, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 710, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1055, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1055, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1566, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1566, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2325, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2325, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3035, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3035, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3567, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3567, "numnum:count:POP2005": 2, "numnum:max:POP2005": 4193, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4193, "numnum:count:POP2010": 2, "numnum:max:POP2010": 4465, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4465, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4856, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4856, "numnum:count:POP2020": 2, "numnum:max:POP2020": 5405, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5405, "numnum:count:POP2025": 2, "numnum:max:POP2025": 5866, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5866, "numnum:count:POP2050": 2, "numnum:max:POP2050": 6275, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 6275, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ 46.757812, 24.647017 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEALT": "Ürümqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102, "MEGANAME": "Ürümqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046, "MAX_POP20": 2066046, "MAX_POP50": 2066046, "MAX_POP300": 2066046, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 361, "MAX_AREAKM": 361, "MIN_AREAMI": 139, "MAX_AREAMI": 139, "MIN_PERKM": 318, "MAX_PERKM": 318, "MIN_PERMI": 198, "MAX_PERMI": 198, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13, "GN_POP": 1508225, "ELEVATION": 0, "GTOPO30": 915, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253, "POP1955": 312, "POP1960": 384, "POP1965": 472, "POP1970": 581, "POP1975": 715, "POP1980": 881, "POP1985": 1029, "POP1990": 1161, "POP1995": 1417, "POP2000": 1730, "POP2005": 2025, "POP2010": 2151, "POP2015": 2340, "POP2020": 2620, "POP2025": 2851, "POP2050": 3038, "CITYALT": "Urumqi", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 710, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 43.805012, "numnum:min:LATITUDE": 35.671943, "numnum:sum:LATITUDE": 119.872227, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 87.575006, "numnum:min:LONGITUDE": 49.862217, "numnum:sum:LONGITUDE": 188.861567, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 7873000, "numnum:min:POP_MAX": 2122300, "numnum:sum:POP_MAX": 12146300, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 7153309, "numnum:min:POP_MIN": 1508225, "numnum:sum:POP_MIN": 10553534, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 8209012, "numnum:min:POP_OTHER": 1518801, "numnum:sum:POP_OTHER": 11772214, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 37, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 37, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1529102, "numnum:min:GEONAMEID": 112931, "numnum:sum:GEONAMEID": 2229117, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 8258981, "numnum:min:MAX_POP10": 1581087, "numnum:sum:MAX_POP10": 11906114, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 8258981, "numnum:min:MAX_POP20": 1581475, "numnum:sum:MAX_POP20": 11906502, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 8258981, "numnum:min:MAX_POP50": 1581475, "numnum:sum:MAX_POP50": 11906502, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 8258981, "numnum:min:MAX_POP300": 1581475, "numnum:sum:MAX_POP300": 11906502, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 496, "numnum:min:MIN_AREAKM": 246, "numnum:sum:MIN_AREAKM": 1103, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 496, "numnum:min:MAX_AREAKM": 249, "numnum:sum:MAX_AREAKM": 1106, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 191, "numnum:min:MIN_AREAMI": 95, "numnum:sum:MIN_AREAMI": 425, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 191, "numnum:min:MAX_AREAMI": 96, "numnum:sum:MAX_AREAMI": 426, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 318, "numnum:min:MIN_PERKM": 174, "numnum:sum:MIN_PERKM": 737, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 318, "numnum:min:MAX_PERKM": 179, "numnum:sum:MAX_PERKM": 742, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 198, "numnum:min:MIN_PERMI": 108, "numnum:sum:MIN_PERMI": 458, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 198, "numnum:min:MAX_PERMI": 111, "numnum:sum:MAX_PERMI": 461, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 87.358333, "numnum:min:MIN_BBXMIN": 49.7, "numnum:sum:MIN_BBXMIN": 188.275, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 87.358333, "numnum:min:MAX_BBXMIN": 49.716667, "numnum:sum:MAX_BBXMIN": 188.291667, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 87.725, "numnum:min:MIN_BBXMAX": 50.016667, "numnum:sum:MIN_BBXMAX": 189.341667, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 87.725, "numnum:min:MAX_BBXMAX": 50.016667, "numnum:sum:MAX_BBXMAX": 189.341667, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 43.641667, "numnum:min:MIN_BBYMIN": 35.55, "numnum:sum:MIN_BBYMIN": 119.508334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 43.641667, "numnum:min:MAX_BBYMIN": 35.55, "numnum:sum:MAX_BBYMIN": 119.508334, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 44.016667, "numnum:min:MIN_BBYMAX": 35.825, "numnum:sum:MIN_BBYMAX": 120.341667, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 44.016667, "numnum:min:MAX_BBYMAX": 35.825, "numnum:sum:MAX_BBYMAX": 120.341667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 87.578494, "numnum:min:MEAN_BBXC": 49.881373, "numnum:sum:MEAN_BBXC": 188.876715, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 43.854525, "numnum:min:MEAN_BBYC": 35.709171, "numnum:sum:MEAN_BBYC": 119.980016, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 26, "numnum:min:ADMIN1_COD": 9, "numnum:sum:ADMIN1_COD": 48, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 7153309, "numnum:min:GN_POP": 1116513, "numnum:sum:GN_POP": 9778047, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1149, "numnum:min:GTOPO30": 30, "numnum:sum:GTOPO30": 2094, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 297, "numnum:min:UN_FID": 118, "numnum:sum:UN_FID": 615, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 43.78, "numnum:min:UN_LAT": 35.77, "numnum:sum:UN_LAT": 119.87, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 87.58, "numnum:min:UN_LONG": 49.81, "numnum:sum:UN_LONG": 188.82999999999999, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1041, "numnum:min:POP1950": 253, "numnum:sum:POP1950": 2191, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1396, "numnum:min:POP1955": 312, "numnum:sum:POP1955": 2648, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1873, "numnum:min:POP1960": 384, "numnum:sum:POP1960": 3262, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2511, "numnum:min:POP1965": 472, "numnum:sum:POP1965": 4115, "numnum:count:POP1970": 3, "numnum:max:POP1970": 3290, "numnum:min:POP1970": 581, "numnum:sum:POP1970": 5145, "numnum:count:POP1975": 3, "numnum:max:POP1975": 4273, "numnum:min:POP1975": 715, "numnum:sum:POP1975": 6417, "numnum:count:POP1980": 3, "numnum:max:POP1980": 5079, "numnum:min:POP1980": 881, "numnum:sum:POP1980": 7534, "numnum:count:POP1985": 3, "numnum:max:POP1985": 5839, "numnum:min:POP1985": 1029, "numnum:sum:POP1985": 8528, "numnum:count:POP1990": 3, "numnum:max:POP1990": 6365, "numnum:min:POP1990": 1161, "numnum:sum:POP1990": 9259, "numnum:count:POP1995": 3, "numnum:max:POP1995": 6687, "numnum:min:POP1995": 1417, "numnum:sum:POP1995": 9870, "numnum:count:POP2000": 3, "numnum:max:POP2000": 7128, "numnum:min:POP2000": 1730, "numnum:sum:POP2000": 10664, "numnum:count:POP2005": 3, "numnum:max:POP2005": 7653, "numnum:min:POP2005": 1867, "numnum:sum:POP2005": 11545, "numnum:count:POP2010": 3, "numnum:max:POP2010": 7873, "numnum:min:POP2010": 1892, "numnum:sum:POP2010": 11916, "numnum:count:POP2015": 3, "numnum:max:POP2015": 8221, "numnum:min:POP2015": 1931, "numnum:sum:POP2015": 12492, "numnum:count:POP2020": 3, "numnum:max:POP2020": 8832, "numnum:min:POP2020": 2006, "numnum:sum:POP2020": 13458, "numnum:count:POP2025": 3, "numnum:max:POP2025": 9404, "numnum:min:POP2025": 2097, "numnum:sum:POP2025": 14352, "numnum:count:POP2050": 3, "numnum:max:POP2050": 9814, "numnum:min:POP2050": 2187, "numnum:sum:POP2050": 15039, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ 87.583008, 43.802819 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Doha", "DIFFASCII": 0, "NAMEASCII": "Doha", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Qatar", "SOV_A3": "QAT", "ADM0NAME": "Qatar", "ADM0_A3": "QAT", "ADM1NAME": "Ad Dawhah", "ISO_A2": "QA", "LATITUDE": 25.286556, "LONGITUDE": 51.532968, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 1450000, "POP_MIN": 731310, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 290030, "LS_NAME": "Doha", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 731310, "MAX_POP20": 731310, "MAX_POP50": 731310, "MAX_POP300": 731310, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 270, "MAX_AREAKM": 270, "MIN_AREAMI": 104, "MAX_AREAMI": 104, "MIN_PERKM": 205, "MAX_PERKM": 205, "MIN_PERMI": 127, "MAX_PERMI": 127, "MIN_BBXMIN": 51.358333, "MAX_BBXMIN": 51.358333, "MIN_BBXMAX": 51.583333, "MAX_BBXMAX": 51.583333, "MIN_BBYMIN": 25.158333, "MAX_BBYMIN": 25.158333, "MIN_BBYMAX": 25.408333, "MAX_BBYMAX": 25.408333, "MEAN_BBXC": 51.468439, "MEAN_BBYC": 25.281154, "COMPARE": 0, "GN_ASCII": "Doha", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 344939, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Asia/Qatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 350, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 25.286556, "numnum:min:LATITUDE": 25.229996, "numnum:sum:LATITUDE": 50.516552000000007, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 55.279974, "numnum:min:LONGITUDE": 51.532968, "numnum:sum:LONGITUDE": 106.81294199999999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 1, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1450000, "numnum:min:POP_MAX": 1379000, "numnum:sum:POP_MAX": 2829000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1137347, "numnum:min:POP_MIN": 731310, "numnum:sum:POP_MIN": 1868657, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1166878, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 1166878, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 292223, "numnum:min:GEONAMEID": 290030, "numnum:sum:GEONAMEID": 582253, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1193251, "numnum:min:MAX_POP10": 731310, "numnum:sum:MAX_POP10": 1924561, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2244726, "numnum:min:MAX_POP20": 731310, "numnum:sum:MAX_POP20": 2976036, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 2244726, "numnum:min:MAX_POP50": 731310, "numnum:sum:MAX_POP50": 2976036, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 2244726, "numnum:min:MAX_POP300": 731310, "numnum:sum:MAX_POP300": 2976036, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 2244726, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 2244726, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 270, "numnum:min:MIN_AREAKM": 187, "numnum:sum:MIN_AREAKM": 457, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 407, "numnum:min:MAX_AREAKM": 270, "numnum:sum:MAX_AREAKM": 677, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 104, "numnum:min:MIN_AREAMI": 72, "numnum:sum:MIN_AREAMI": 176, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 157, "numnum:min:MAX_AREAMI": 104, "numnum:sum:MAX_AREAMI": 261, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 205, "numnum:min:MIN_PERKM": 158, "numnum:sum:MIN_PERKM": 363, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 278, "numnum:min:MAX_PERKM": 205, "numnum:sum:MAX_PERKM": 483, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 127, "numnum:min:MIN_PERMI": 98, "numnum:sum:MIN_PERMI": 225, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 173, "numnum:min:MAX_PERMI": 127, "numnum:sum:MAX_PERMI": 300, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 55.175, "numnum:min:MIN_BBXMIN": 51.358333, "numnum:sum:MIN_BBXMIN": 106.533333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 55.175, "numnum:min:MAX_BBXMIN": 51.358333, "numnum:sum:MAX_BBXMIN": 106.533333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 55.437142, "numnum:min:MIN_BBXMAX": 51.583333, "numnum:sum:MIN_BBXMAX": 107.020475, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 55.533333, "numnum:min:MAX_BBXMAX": 51.583333, "numnum:sum:MAX_BBXMAX": 107.11666600000001, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 25.158333, "numnum:min:MIN_BBYMIN": 25.1, "numnum:sum:MIN_BBYMIN": 50.258333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 25.158333, "numnum:min:MAX_BBYMIN": 25.1, "numnum:sum:MAX_BBYMIN": 50.258333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 25.408333, "numnum:min:MIN_BBYMAX": 25.308333, "numnum:sum:MIN_BBYMAX": 50.716666000000007, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 25.433333, "numnum:min:MAX_BBYMAX": 25.408333, "numnum:sum:MAX_BBYMAX": 50.841666000000007, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 55.361736, "numnum:min:MEAN_BBXC": 51.468439, "numnum:sum:MEAN_BBXC": 106.830175, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 25.281154, "numnum:min:MEAN_BBYC": 25.258666, "numnum:sum:MEAN_BBYC": 50.539820000000009, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 3, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 4, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1137347, "numnum:min:GN_POP": 344939, "numnum:sum:GN_POP": 1482286, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 21, "numnum:min:GTOPO30": 9, "numnum:sum:GTOPO30": 30, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 498, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 498, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 25.27, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 25.27, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 55.32, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 55.32, "numnum:count:POP1950": 2, "numnum:max:POP1950": 20, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 20, "numnum:count:POP1955": 2, "numnum:max:POP1955": 28, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 28, "numnum:count:POP1960": 2, "numnum:max:POP1960": 40, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 40, "numnum:count:POP1965": 2, "numnum:max:POP1965": 51, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 51, "numnum:count:POP1970": 2, "numnum:max:POP1970": 80, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 80, "numnum:count:POP1975": 2, "numnum:max:POP1975": 167, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 167, "numnum:count:POP1980": 2, "numnum:max:POP1980": 254, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 254, "numnum:count:POP1985": 2, "numnum:max:POP1985": 345, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 345, "numnum:count:POP1990": 2, "numnum:max:POP1990": 473, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 473, "numnum:count:POP1995": 2, "numnum:max:POP1995": 650, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 650, "numnum:count:POP2000": 2, "numnum:max:POP2000": 938, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 938, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1272, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1272, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1379, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1379, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1516, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1516, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1709, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1709, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1894, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1894, "numnum:count:POP2050": 2, "numnum:max:POP2050": 2077, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2077, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 51.547852, 25.284438 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 24, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 37.949995, "numnum:min:LATITUDE": 23.613325, "numnum:sum:LATITUDE": 86.030004, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 58.593312, "numnum:min:LONGITUDE": 54.366593, "numnum:sum:LONGITUDE": 171.34320400000002, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 734697, "numnum:min:POP_MAX": 603492, "numnum:sum:POP_MAX": 2065889, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 586861, "numnum:min:POP_MIN": 560230, "numnum:sum:POP_MIN": 1725073, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 586861, "numnum:min:POP_OTHER": 556048, "numnum:sum:POP_OTHER": 1703139, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 11, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 33, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 292968, "numnum:min:GEONAMEID": 162183, "numnum:sum:GEONAMEID": 742437, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 586861, "numnum:min:MAX_POP10": 560230, "numnum:sum:MAX_POP10": 1725073, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 589324, "numnum:min:MAX_POP20": 560230, "numnum:sum:MAX_POP20": 1736415, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 589324, "numnum:min:MAX_POP50": 560230, "numnum:sum:MAX_POP50": 1736415, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 589324, "numnum:min:MAX_POP300": 560230, "numnum:sum:MAX_POP300": 1736415, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 108, "numnum:min:MIN_AREAKM": 96, "numnum:sum:MIN_AREAKM": 308, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 128, "numnum:min:MAX_AREAKM": 96, "numnum:sum:MAX_AREAKM": 328, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 42, "numnum:min:MIN_AREAMI": 37, "numnum:sum:MIN_AREAMI": 119, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 49, "numnum:min:MAX_AREAMI": 37, "numnum:sum:MAX_AREAMI": 126, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 121, "numnum:min:MIN_PERKM": 87, "numnum:sum:MIN_PERKM": 317, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 144, "numnum:min:MAX_PERKM": 87, "numnum:sum:MAX_PERKM": 352, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 75, "numnum:min:MIN_PERMI": 54, "numnum:sum:MIN_PERMI": 197, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 90, "numnum:min:MAX_PERMI": 54, "numnum:sum:MAX_PERMI": 219, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 58.333333, "numnum:min:MIN_BBXMIN": 54.316667, "numnum:sum:MIN_BBXMIN": 170.85000000000003, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 58.333333, "numnum:min:MAX_BBXMIN": 54.316667, "numnum:sum:MAX_BBXMIN": 170.93637, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 58.6, "numnum:min:MIN_BBXMAX": 54.525, "numnum:sum:MIN_BBXMAX": 171.608333, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 58.6, "numnum:min:MAX_BBXMAX": 54.525, "numnum:sum:MAX_BBXMAX": 171.608333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 37.866667, "numnum:min:MIN_BBYMIN": 23.558333, "numnum:sum:MIN_BBYMIN": 85.81666700000001, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 37.866667, "numnum:min:MAX_BBYMIN": 23.558333, "numnum:sum:MAX_BBYMIN": 85.81666700000001, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 38.016667, "numnum:min:MIN_BBYMAX": 23.641667, "numnum:sum:MIN_BBYMAX": 86.183334, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 38.016667, "numnum:min:MAX_BBYMAX": 23.641667, "numnum:sum:MAX_BBYMAX": 86.183334, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 58.474684, "numnum:min:MEAN_BBXC": 54.410671, "numnum:sum:MEAN_BBXC": 171.256698, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 37.94619, "numnum:min:MEAN_BBYC": 23.599306, "numnum:sum:MEAN_BBYC": 85.989839, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 6, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 8, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 797000, "numnum:min:GN_POP": 603492, "numnum:sum:GN_POP": 2128192, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 219, "numnum:min:GTOPO30": 14, "numnum:sum:GTOPO30": 302, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 3, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 3, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 3, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 3, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 3, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 3, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 3, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 3, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 3, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 3, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 3, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 3, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 3, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 3, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 3, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 3, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 3, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.447150 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Riyadh", "NAMEALT": "Ar-Riyadh", "DIFFASCII": 0, "NAMEASCII": "Riyadh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Saudi Arabia", "SOV_A3": "SAU", "ADM0NAME": "Saudi Arabia", "ADM0_A3": "SAU", "ADM1NAME": "Ar Riyad", "ISO_A2": "SA", "LATITUDE": 24.640833, "LONGITUDE": 46.772742, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4465000, "POP_MIN": 4205961, "POP_OTHER": 5148778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 108410, "MEGANAME": "Ar-Riyadh", "LS_NAME": "Riyadh", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5322753, "MAX_POP20": 5322753, "MAX_POP50": 5322753, "MAX_POP300": 5322753, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 854, "MAX_AREAKM": 854, "MIN_AREAMI": 330, "MAX_AREAMI": 330, "MIN_PERKM": 459, "MAX_PERKM": 459, "MIN_PERMI": 285, "MAX_PERMI": 285, "MIN_BBXMIN": 46.516667, "MAX_BBXMIN": 46.516667, "MIN_BBXMAX": 46.933333, "MAX_BBXMAX": 46.933333, "MIN_BBYMIN": 24.516667, "MAX_BBYMIN": 24.516667, "MIN_BBYMAX": 24.833333, "MAX_BBYMAX": 24.833333, "MEAN_BBXC": 46.740447, "MEAN_BBYC": 24.678984, "COMPARE": 0, "GN_ASCII": "Riyadh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 4205961, "ELEVATION": 0, "GTOPO30": 618, "TIMEZONE": "Asia/Riyadh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 444, "UN_ADM0": "Saudi Arabia", "UN_LAT": 24.65, "UN_LONG": 46.77, "POP1950": 111, "POP1955": 131, "POP1960": 156, "POP1965": 227, "POP1970": 408, "POP1975": 710, "POP1980": 1055, "POP1985": 1566, "POP1990": 2325, "POP1995": 3035, "POP2000": 3567, "POP2005": 4193, "POP2010": 4465, "POP2015": 4856, "POP2020": 5405, "POP2025": 5866, "POP2050": 6275, "CITYALT": "Riyadh", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ 46.757812, 24.647017 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 38.560035, "numnum:min:LATITUDE": 2.066681, "numnum:sum:LATITUDE": 40.626716, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 68.773879, "numnum:min:LONGITUDE": 45.366678, "numnum:sum:LONGITUDE": 114.140557, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1100000, "numnum:min:POP_MAX": 1086244, "numnum:sum:POP_MAX": 2186244, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 875388, "numnum:min:POP_MIN": 679400, "numnum:sum:POP_MIN": 1554788, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1081361, "numnum:min:POP_OTHER": 849392, "numnum:sum:POP_OTHER": 1930753, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1221874, "numnum:min:GEONAMEID": 53654, "numnum:sum:GEONAMEID": 1275528, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1086244, "numnum:min:MAX_POP10": 875388, "numnum:sum:MAX_POP10": 1961632, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1086244, "numnum:min:MAX_POP20": 875388, "numnum:sum:MAX_POP20": 1961632, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1086244, "numnum:min:MAX_POP50": 875388, "numnum:sum:MAX_POP50": 1961632, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1086244, "numnum:min:MAX_POP300": 875388, "numnum:sum:MAX_POP300": 1961632, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 415, "numnum:min:MIN_AREAKM": 99, "numnum:sum:MIN_AREAKM": 514, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 415, "numnum:min:MAX_AREAKM": 99, "numnum:sum:MAX_AREAKM": 514, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 160, "numnum:min:MIN_AREAMI": 38, "numnum:sum:MIN_AREAMI": 198, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 160, "numnum:min:MAX_AREAMI": 38, "numnum:sum:MAX_AREAMI": 198, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 411, "numnum:min:MIN_PERKM": 68, "numnum:sum:MIN_PERKM": 479, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 411, "numnum:min:MAX_PERKM": 68, "numnum:sum:MAX_PERKM": 479, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 255, "numnum:min:MIN_PERMI": 43, "numnum:sum:MIN_PERMI": 298, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 255, "numnum:min:MAX_PERMI": 43, "numnum:sum:MAX_PERMI": 298, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 68.641667, "numnum:min:MIN_BBXMIN": 45.25, "numnum:sum:MIN_BBXMIN": 113.891667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 68.641667, "numnum:min:MAX_BBXMIN": 45.25, "numnum:sum:MAX_BBXMIN": 113.891667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 69.15, "numnum:min:MIN_BBXMAX": 45.416667, "numnum:sum:MIN_BBXMAX": 114.566667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 69.15, "numnum:min:MAX_BBXMAX": 45.416667, "numnum:sum:MAX_BBXMAX": 114.566667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 38.416667, "numnum:min:MIN_BBYMIN": 2, "numnum:sum:MIN_BBYMIN": 40.416667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 38.416667, "numnum:min:MAX_BBYMIN": 2, "numnum:sum:MAX_BBYMIN": 40.416667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 38.675, "numnum:min:MIN_BBYMAX": 2.116667, "numnum:sum:MIN_BBYMAX": 40.791667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 38.675, "numnum:min:MAX_BBYMAX": 2.116667, "numnum:sum:MAX_BBYMAX": 40.791667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 68.864837, "numnum:min:MEAN_BBXC": 45.331178, "numnum:sum:MEAN_BBXC": 114.19601499999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 38.542754, "numnum:min:MEAN_BBYC": 2.054239, "numnum:sum:MEAN_BBYC": 40.596993000000008, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2587183, "numnum:min:GN_POP": 543107, "numnum:sum:GN_POP": 3130290, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 808, "numnum:min:GTOPO30": 39, "numnum:sum:GTOPO30": 847, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 454, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 454, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 2.04, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 2.04, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 45.34, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 45.34, "numnum:count:POP1950": 2, "numnum:max:POP1950": 69, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 69, "numnum:count:POP1955": 2, "numnum:max:POP1955": 73, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 73, "numnum:count:POP1960": 2, "numnum:max:POP1960": 94, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 94, "numnum:count:POP1965": 2, "numnum:max:POP1965": 146, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 146, "numnum:count:POP1970": 2, "numnum:max:POP1970": 272, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 272, "numnum:count:POP1975": 2, "numnum:max:POP1975": 445, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 445, "numnum:count:POP1980": 2, "numnum:max:POP1980": 551, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 551, "numnum:count:POP1985": 2, "numnum:max:POP1985": 747, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 747, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1035, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1035, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1147, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1147, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1201, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1201, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1415, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1415, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1100, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1100, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1500, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1500, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1794, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1794, "numnum:count:POP2025": 2, "numnum:max:POP2025": 2142, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2142, "numnum:count:POP2050": 2, "numnum:max:POP2050": 2529, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2529, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 45.351562, 2.064982 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Manama", "DIFFASCII": 0, "NAMEASCII": "Manama", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahrain", "SOV_A3": "BHR", "ADM0NAME": "Bahrain", "ADM0_A3": "BHR", "ISO_A2": "BH", "LATITUDE": 26.236136, "LONGITUDE": 50.583052, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 563920, "POP_MIN": 157474, "POP_OTHER": 563666, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 290340, "LS_NAME": "Manama", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 563920, "MAX_POP20": 563920, "MAX_POP50": 563920, "MAX_POP300": 563920, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 178, "MAX_AREAKM": 178, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 115, "MAX_PERMI": 115, "MIN_BBXMIN": 50.441667, "MAX_BBXMIN": 50.441667, "MIN_BBXMAX": 50.633333, "MAX_BBXMAX": 50.633333, "MIN_BBYMIN": 26.05, "MAX_BBYMIN": 26.05, "MIN_BBYMAX": 26.25, "MAX_BBYMAX": 26.25, "MEAN_BBXC": 50.542529, "MEAN_BBYC": 26.164763, "COMPARE": 0, "GN_ASCII": "Manama", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 147074, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Bahrain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 400, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 26.236136, "numnum:min:LATITUDE": 25.229996, "numnum:sum:LATITUDE": 76.752688, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 55.279974, "numnum:min:LONGITUDE": 50.583052, "numnum:sum:LONGITUDE": 157.395994, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 1, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1450000, "numnum:min:POP_MAX": 563920, "numnum:sum:POP_MAX": 3392920, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1137347, "numnum:min:POP_MIN": 157474, "numnum:sum:POP_MIN": 2026131, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1166878, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 1730544, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 35, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 32, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 292223, "numnum:min:GEONAMEID": 290030, "numnum:sum:GEONAMEID": 872593, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1193251, "numnum:min:MAX_POP10": 563920, "numnum:sum:MAX_POP10": 2488481, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2244726, "numnum:min:MAX_POP20": 563920, "numnum:sum:MAX_POP20": 3539956, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 2244726, "numnum:min:MAX_POP50": 563920, "numnum:sum:MAX_POP50": 3539956, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 2244726, "numnum:min:MAX_POP300": 563920, "numnum:sum:MAX_POP300": 3539956, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 2244726, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 2244726, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 270, "numnum:min:MIN_AREAKM": 178, "numnum:sum:MIN_AREAKM": 635, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 407, "numnum:min:MAX_AREAKM": 178, "numnum:sum:MAX_AREAKM": 855, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 104, "numnum:min:MIN_AREAMI": 69, "numnum:sum:MIN_AREAMI": 245, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 157, "numnum:min:MAX_AREAMI": 69, "numnum:sum:MAX_AREAMI": 330, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 205, "numnum:min:MIN_PERKM": 158, "numnum:sum:MIN_PERKM": 547, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 278, "numnum:min:MAX_PERKM": 184, "numnum:sum:MAX_PERKM": 667, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 127, "numnum:min:MIN_PERMI": 98, "numnum:sum:MIN_PERMI": 340, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 173, "numnum:min:MAX_PERMI": 115, "numnum:sum:MAX_PERMI": 415, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 55.175, "numnum:min:MIN_BBXMIN": 50.441667, "numnum:sum:MIN_BBXMIN": 156.97500000000003, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 55.175, "numnum:min:MAX_BBXMIN": 50.441667, "numnum:sum:MAX_BBXMIN": 156.97500000000003, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 55.437142, "numnum:min:MIN_BBXMAX": 50.633333, "numnum:sum:MIN_BBXMAX": 157.653808, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 55.533333, "numnum:min:MAX_BBXMAX": 50.633333, "numnum:sum:MAX_BBXMAX": 157.749999, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 26.05, "numnum:min:MIN_BBYMIN": 25.1, "numnum:sum:MIN_BBYMIN": 76.308333, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 26.05, "numnum:min:MAX_BBYMIN": 25.1, "numnum:sum:MAX_BBYMIN": 76.308333, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 26.25, "numnum:min:MIN_BBYMAX": 25.308333, "numnum:sum:MIN_BBYMAX": 76.966666, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 26.25, "numnum:min:MAX_BBYMAX": 25.408333, "numnum:sum:MAX_BBYMAX": 77.091666, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 55.361736, "numnum:min:MEAN_BBXC": 50.542529, "numnum:sum:MEAN_BBXC": 157.372704, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 26.164763, "numnum:min:MEAN_BBYC": 25.258666, "numnum:sum:MEAN_BBYC": 76.704583, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 3, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 6, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1137347, "numnum:min:GN_POP": 147074, "numnum:sum:GN_POP": 1629360, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 21, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9969, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 498, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 498, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 25.27, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 25.27, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 55.32, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 55.32, "numnum:count:POP1950": 3, "numnum:max:POP1950": 20, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 20, "numnum:count:POP1955": 3, "numnum:max:POP1955": 28, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 28, "numnum:count:POP1960": 3, "numnum:max:POP1960": 40, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 40, "numnum:count:POP1965": 3, "numnum:max:POP1965": 51, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 51, "numnum:count:POP1970": 3, "numnum:max:POP1970": 80, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 80, "numnum:count:POP1975": 3, "numnum:max:POP1975": 167, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 167, "numnum:count:POP1980": 3, "numnum:max:POP1980": 254, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 254, "numnum:count:POP1985": 3, "numnum:max:POP1985": 345, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 345, "numnum:count:POP1990": 3, "numnum:max:POP1990": 473, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 473, "numnum:count:POP1995": 3, "numnum:max:POP1995": 650, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 650, "numnum:count:POP2000": 3, "numnum:max:POP2000": 938, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 938, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1272, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1272, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1379, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1379, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1516, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1516, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1709, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1709, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1894, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1894, "numnum:count:POP2050": 3, "numnum:max:POP2050": 2077, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2077, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kabul", "DIFFASCII": 0, "NAMEASCII": "Kabul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Afghanistan", "SOV_A3": "AFG", "ADM0NAME": "Afghanistan", "ADM0_A3": "AFG", "ADM1NAME": "Kabul", "ISO_A2": "AF", "LATITUDE": 34.51669, "LONGITUDE": 69.18326, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3277000, "POP_MIN": 3043532, "POP_OTHER": 3475519, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1138958, "MEGANAME": "Kabul", "LS_NAME": "Kabul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3720671, "MAX_POP20": 3720671, "MAX_POP50": 4803365, "MAX_POP300": 4793793, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 1471, "MIN_AREAMI": 229, "MAX_AREAMI": 568, "MIN_PERKM": 409, "MAX_PERKM": 1100, "MIN_PERMI": 254, "MAX_PERMI": 683, "MIN_BBXMIN": 68.866667, "MAX_BBXMIN": 68.866667, "MIN_BBXMAX": 69.308333, "MAX_BBXMAX": 69.783333, "MIN_BBYMIN": 34.433333, "MAX_BBYMIN": 34.433333, "MIN_BBYMAX": 34.768813, "MAX_BBYMAX": 35.166667, "MEAN_BBXC": 69.144173, "MEAN_BBYC": 34.688498, "COMPARE": 0, "GN_ASCII": "Kabul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 3043532, "ELEVATION": 0, "GTOPO30": 1808, "TIMEZONE": "Asia/Kabul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 320, "UN_ADM0": "Afghanistan", "UN_LAT": 34.53, "UN_LONG": 69.13, "POP1950": 129, "POP1955": 184, "POP1960": 263, "POP1965": 369, "POP1970": 472, "POP1975": 674, "POP1980": 978, "POP1985": 1160, "POP1990": 1306, "POP1995": 1616, "POP2000": 1963, "POP2005": 2994, "POP2010": 3277, "POP2015": 3768, "POP2020": 4730, "POP2025": 5836, "POP2050": 7175, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ 69.169922, 34.524661 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 37.949995, "numnum:min:LATITUDE": 24.466684, "numnum:sum:LATITUDE": 62.416679, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 58.383299, "numnum:min:LONGITUDE": 54.366593, "numnum:sum:LONGITUDE": 112.749892, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 727700, "numnum:min:POP_MAX": 603492, "numnum:sum:POP_MAX": 1331192, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 577982, "numnum:min:POP_MIN": 560230, "numnum:sum:POP_MIN": 1138212, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 560230, "numnum:min:POP_OTHER": 556048, "numnum:sum:POP_OTHER": 1116278, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 11, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 292968, "numnum:min:GEONAMEID": 162183, "numnum:sum:GEONAMEID": 455151, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 577982, "numnum:min:MAX_POP10": 560230, "numnum:sum:MAX_POP10": 1138212, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 589324, "numnum:min:MAX_POP20": 560230, "numnum:sum:MAX_POP20": 1149554, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 589324, "numnum:min:MAX_POP50": 560230, "numnum:sum:MAX_POP50": 1149554, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 589324, "numnum:min:MAX_POP300": 560230, "numnum:sum:MAX_POP300": 1149554, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 108, "numnum:min:MIN_AREAKM": 96, "numnum:sum:MIN_AREAKM": 204, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 128, "numnum:min:MAX_AREAKM": 96, "numnum:sum:MAX_AREAKM": 224, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 42, "numnum:min:MIN_AREAMI": 37, "numnum:sum:MIN_AREAMI": 79, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 49, "numnum:min:MAX_AREAMI": 37, "numnum:sum:MAX_AREAMI": 86, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 109, "numnum:min:MIN_PERKM": 87, "numnum:sum:MIN_PERKM": 196, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 144, "numnum:min:MAX_PERKM": 87, "numnum:sum:MAX_PERKM": 231, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 68, "numnum:min:MIN_PERMI": 54, "numnum:sum:MIN_PERMI": 122, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 90, "numnum:min:MAX_PERMI": 54, "numnum:sum:MAX_PERMI": 144, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 58.2, "numnum:min:MIN_BBXMIN": 54.316667, "numnum:sum:MIN_BBXMIN": 112.51666700000001, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 58.28637, "numnum:min:MAX_BBXMIN": 54.316667, "numnum:sum:MAX_BBXMIN": 112.603037, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 58.483333, "numnum:min:MIN_BBXMAX": 54.525, "numnum:sum:MIN_BBXMAX": 113.008333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 58.483333, "numnum:min:MAX_BBXMAX": 54.525, "numnum:sum:MAX_BBXMAX": 113.008333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 37.866667, "numnum:min:MIN_BBYMIN": 24.391667, "numnum:sum:MIN_BBYMIN": 62.258334000000008, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 37.866667, "numnum:min:MAX_BBYMIN": 24.391667, "numnum:sum:MAX_BBYMIN": 62.258334000000008, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 38.016667, "numnum:min:MIN_BBYMAX": 24.525, "numnum:sum:MIN_BBYMAX": 62.541667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 38.016667, "numnum:min:MAX_BBYMAX": 24.525, "numnum:sum:MAX_BBYMAX": 62.541667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 58.371343, "numnum:min:MEAN_BBXC": 54.410671, "numnum:sum:MEAN_BBXC": 112.782014, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 37.94619, "numnum:min:MEAN_BBYC": 24.444343, "numnum:sum:MEAN_BBYC": 62.390533000000008, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 1, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 727700, "numnum:min:GN_POP": 603492, "numnum:sum:GN_POP": 1331192, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 219, "numnum:min:GTOPO30": 14, "numnum:sum:GTOPO30": 233, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.447150 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356, "MAX_POP20": 742356, "MAX_POP50": 7482035, "MAX_POP300": 7482969, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 772, "MAX_AREAKM": 5463, "MIN_AREAMI": 298, "MAX_AREAMI": 2109, "MIN_PERKM": 545, "MAX_PERKM": 4154, "MIN_PERMI": 339, "MAX_PERMI": 2581, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 601600, "ELEVATION": 0, "GTOPO30": 497, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36, "POP1955": 41, "POP1960": 45, "POP1965": 56, "POP1970": 70, "POP1975": 107, "POP1980": 189, "POP1985": 260, "POP1990": 343, "POP1995": 452, "POP2000": 594, "POP2005": 732, "POP2010": 780, "POP2015": 851, "POP2020": 988, "POP2025": 1148, "POP2050": 1320, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 3, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 33.699996, "numnum:min:LATITUDE": 28.600023, "numnum:sum:LATITUDE": 62.300019, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 77.19998, "numnum:min:LONGITUDE": 73.166634, "numnum:sum:LONGITUDE": 150.366614, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 780000, "numnum:min:POP_MAX": 317797, "numnum:sum:POP_MAX": 1097797, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 601600, "numnum:min:POP_MIN": 317797, "numnum:sum:POP_MIN": 919397, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 8060107, "numnum:min:POP_OTHER": 893673, "numnum:sum:POP_OTHER": 8953780, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 11, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1261481, "numnum:min:GEONAMEID": 1176615, "numnum:sum:GEONAMEID": 2438096, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 8761047, "numnum:min:MAX_POP10": 742356, "numnum:sum:MAX_POP10": 9503403, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 13414375, "numnum:min:MAX_POP20": 742356, "numnum:sum:MAX_POP20": 14156731, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 32426336, "numnum:min:MAX_POP50": 7482035, "numnum:sum:MAX_POP50": 39908371, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 32424761, "numnum:min:MAX_POP300": 7482969, "numnum:sum:MAX_POP300": 39907730, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 224908923, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 224908923, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 864, "numnum:min:MIN_AREAKM": 772, "numnum:sum:MIN_AREAKM": 1636, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 186559, "numnum:min:MAX_AREAKM": 5463, "numnum:sum:MAX_AREAKM": 192022, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 334, "numnum:min:MIN_AREAMI": 298, "numnum:sum:MIN_AREAMI": 632, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 72030, "numnum:min:MAX_AREAMI": 2109, "numnum:sum:MAX_AREAMI": 74139, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 545, "numnum:min:MIN_PERKM": 244, "numnum:sum:MIN_PERKM": 789, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 130296, "numnum:min:MAX_PERKM": 4154, "numnum:sum:MAX_PERKM": 134450, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 339, "numnum:min:MIN_PERMI": 152, "numnum:sum:MIN_PERMI": 491, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 80962, "numnum:min:MAX_PERMI": 2581, "numnum:sum:MAX_PERMI": 83543, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 72.286464, "numnum:min:MIN_BBXMIN": 71.033333, "numnum:sum:MIN_BBXMIN": 143.319797, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 76.943289, "numnum:min:MAX_BBXMIN": 73.033333, "numnum:sum:MAX_BBXMIN": 149.976622, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 77.43183, "numnum:min:MIN_BBXMAX": 73.516667, "numnum:sum:MIN_BBXMAX": 150.948497, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 82.566667, "numnum:min:MAX_BBXMAX": 73.816667, "numnum:sum:MAX_BBXMAX": 156.383334, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 32.7, "numnum:min:MIN_BBYMIN": 24, "numnum:sum:MIN_BBYMIN": 56.7, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 33.258333, "numnum:min:MAX_BBYMIN": 28.152007, "numnum:sum:MAX_BBYMIN": 61.410340000000008, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 33.766667, "numnum:min:MIN_BBYMAX": 28.738629, "numnum:sum:MIN_BBYMAX": 62.505296, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 34.533333, "numnum:min:MAX_BBYMAX": 33.466667, "numnum:sum:MAX_BBYMAX": 68, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 77.27294500000001, "numnum:min:MEAN_BBXC": 73.182617, "numnum:sum:MEAN_BBXC": 150.455562, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 33.557939, "numnum:min:MEAN_BBYC": 28.382537, "numnum:sum:MEAN_BBYC": 61.940476, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 7, "numnum:sum:ADMIN1_COD": 15, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 601600, "numnum:min:GN_POP": 317797, "numnum:sum:GN_POP": 919397, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 497, "numnum:min:GTOPO30": 205, "numnum:sum:GTOPO30": 702, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 401, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 401, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 33.71, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 33.71, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 73.06, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 73.06, "numnum:count:POP1950": 2, "numnum:max:POP1950": 36, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 36, "numnum:count:POP1955": 2, "numnum:max:POP1955": 41, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 41, "numnum:count:POP1960": 2, "numnum:max:POP1960": 45, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 45, "numnum:count:POP1965": 2, "numnum:max:POP1965": 56, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 56, "numnum:count:POP1970": 2, "numnum:max:POP1970": 70, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 70, "numnum:count:POP1975": 2, "numnum:max:POP1975": 107, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 107, "numnum:count:POP1980": 2, "numnum:max:POP1980": 189, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 189, "numnum:count:POP1985": 2, "numnum:max:POP1985": 260, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 260, "numnum:count:POP1990": 2, "numnum:max:POP1990": 343, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 343, "numnum:count:POP1995": 2, "numnum:max:POP1995": 452, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 452, "numnum:count:POP2000": 2, "numnum:max:POP2000": 594, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 594, "numnum:count:POP2005": 2, "numnum:max:POP2005": 732, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 732, "numnum:count:POP2010": 2, "numnum:max:POP2010": 780, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 780, "numnum:count:POP2015": 2, "numnum:max:POP2015": 851, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 851, "numnum:count:POP2020": 2, "numnum:max:POP2020": 988, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 988, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1148, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1148, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1320, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1320, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.687782 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861, "MAX_POP20": 586861, "MAX_POP50": 586861, "MAX_POP300": 586861, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 797000, "ELEVATION": 0, "GTOPO30": 69, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 24, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 38.560035, "numnum:min:LATITUDE": 2.066681, "numnum:sum:LATITUDE": 64.24004099999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 68.773879, "numnum:min:LONGITUDE": 45.366678, "numnum:sum:LONGITUDE": 172.733869, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1100000, "numnum:min:POP_MAX": 734697, "numnum:sum:POP_MAX": 2920941, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 875388, "numnum:min:POP_MIN": 586861, "numnum:sum:POP_MIN": 2141649, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1081361, "numnum:min:POP_OTHER": 586861, "numnum:sum:POP_OTHER": 2517614, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 35, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1221874, "numnum:min:GEONAMEID": 53654, "numnum:sum:GEONAMEID": 1562814, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1086244, "numnum:min:MAX_POP10": 586861, "numnum:sum:MAX_POP10": 2548493, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1086244, "numnum:min:MAX_POP20": 586861, "numnum:sum:MAX_POP20": 2548493, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1086244, "numnum:min:MAX_POP50": 586861, "numnum:sum:MAX_POP50": 2548493, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1086244, "numnum:min:MAX_POP300": 586861, "numnum:sum:MAX_POP300": 2548493, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 415, "numnum:min:MIN_AREAKM": 99, "numnum:sum:MIN_AREAKM": 618, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 415, "numnum:min:MAX_AREAKM": 99, "numnum:sum:MAX_AREAKM": 618, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 160, "numnum:min:MIN_AREAMI": 38, "numnum:sum:MIN_AREAMI": 238, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 160, "numnum:min:MAX_AREAMI": 38, "numnum:sum:MAX_AREAMI": 238, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 411, "numnum:min:MIN_PERKM": 68, "numnum:sum:MIN_PERKM": 600, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 411, "numnum:min:MAX_PERKM": 68, "numnum:sum:MAX_PERKM": 600, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 255, "numnum:min:MIN_PERMI": 43, "numnum:sum:MIN_PERMI": 373, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 255, "numnum:min:MAX_PERMI": 43, "numnum:sum:MAX_PERMI": 373, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 68.641667, "numnum:min:MIN_BBXMIN": 45.25, "numnum:sum:MIN_BBXMIN": 172.22500000000003, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 68.641667, "numnum:min:MAX_BBXMIN": 45.25, "numnum:sum:MAX_BBXMIN": 172.22500000000003, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 69.15, "numnum:min:MIN_BBXMAX": 45.416667, "numnum:sum:MIN_BBXMAX": 173.16666700000003, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 69.15, "numnum:min:MAX_BBXMAX": 45.416667, "numnum:sum:MAX_BBXMAX": 173.16666700000003, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 38.416667, "numnum:min:MIN_BBYMIN": 2, "numnum:sum:MIN_BBYMIN": 63.974999999999997, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 38.416667, "numnum:min:MAX_BBYMIN": 2, "numnum:sum:MAX_BBYMIN": 63.974999999999997, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 38.675, "numnum:min:MIN_BBYMAX": 2.116667, "numnum:sum:MIN_BBYMAX": 64.433334, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 38.675, "numnum:min:MAX_BBYMAX": 2.116667, "numnum:sum:MAX_BBYMAX": 64.433334, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 68.864837, "numnum:min:MEAN_BBXC": 45.331178, "numnum:sum:MEAN_BBXC": 172.670699, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 38.542754, "numnum:min:MEAN_BBYC": 2.054239, "numnum:sum:MEAN_BBYC": 64.196299, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 6, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 8, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 2587183, "numnum:min:GN_POP": 543107, "numnum:sum:GN_POP": 3927290, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 808, "numnum:min:GTOPO30": 39, "numnum:sum:GTOPO30": 916, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 454, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 454, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 2.04, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 2.04, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 45.34, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 45.34, "numnum:count:POP1950": 3, "numnum:max:POP1950": 69, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 69, "numnum:count:POP1955": 3, "numnum:max:POP1955": 73, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 73, "numnum:count:POP1960": 3, "numnum:max:POP1960": 94, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 94, "numnum:count:POP1965": 3, "numnum:max:POP1965": 146, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 146, "numnum:count:POP1970": 3, "numnum:max:POP1970": 272, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 272, "numnum:count:POP1975": 3, "numnum:max:POP1975": 445, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 445, "numnum:count:POP1980": 3, "numnum:max:POP1980": 551, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 551, "numnum:count:POP1985": 3, "numnum:max:POP1985": 747, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 747, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1035, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1035, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1147, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1147, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1201, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1201, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1415, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1415, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1100, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1100, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1500, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1500, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1794, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1794, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2142, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2142, "numnum:count:POP2050": 3, "numnum:max:POP2050": 2529, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2529, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 58.579102, 23.604262 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 85.341797, 27.722436 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kabul", "DIFFASCII": 0, "NAMEASCII": "Kabul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Afghanistan", "SOV_A3": "AFG", "ADM0NAME": "Afghanistan", "ADM0_A3": "AFG", "ADM1NAME": "Kabul", "ISO_A2": "AF", "LATITUDE": 34.51669, "LONGITUDE": 69.18326, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3277000, "POP_MIN": 3043532, "POP_OTHER": 3475519, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1138958, "MEGANAME": "Kabul", "LS_NAME": "Kabul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3720671, "MAX_POP20": 3720671, "MAX_POP50": 4803365, "MAX_POP300": 4793793, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 1471, "MIN_AREAMI": 229, "MAX_AREAMI": 568, "MIN_PERKM": 409, "MAX_PERKM": 1100, "MIN_PERMI": 254, "MAX_PERMI": 683, "MIN_BBXMIN": 68.866667, "MAX_BBXMIN": 68.866667, "MIN_BBXMAX": 69.308333, "MAX_BBXMAX": 69.783333, "MIN_BBYMIN": 34.433333, "MAX_BBYMIN": 34.433333, "MIN_BBYMAX": 34.768813, "MAX_BBYMAX": 35.166667, "MEAN_BBXC": 69.144173, "MEAN_BBYC": 34.688498, "COMPARE": 0, "GN_ASCII": "Kabul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 3043532, "ELEVATION": 0, "GTOPO30": 1808, "TIMEZONE": "Asia/Kabul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 320, "UN_ADM0": "Afghanistan", "UN_LAT": 34.53, "UN_LONG": 69.13, "POP1950": 129, "POP1955": 184, "POP1960": 263, "POP1965": 369, "POP1970": 472, "POP1975": 674, "POP1980": 978, "POP1985": 1160, "POP1990": 1306, "POP1995": 1616, "POP2000": 1963, "POP2005": 2994, "POP2010": 3277, "POP2015": 3768, "POP2020": 4730, "POP2025": 5836, "POP2050": 7175, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 2, "numnum:sum:LABELRANK": 7, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 34.51669, "numnum:min:LATITUDE": 33.699996, "numnum:sum:LATITUDE": 68.216686, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 73.166634, "numnum:min:LONGITUDE": 69.18326, "numnum:sum:LONGITUDE": 142.349894, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3277000, "numnum:min:POP_MAX": 780000, "numnum:sum:POP_MAX": 4057000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3043532, "numnum:min:POP_MIN": 601600, "numnum:sum:POP_MIN": 3645132, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3475519, "numnum:min:POP_OTHER": 893673, "numnum:sum:POP_OTHER": 4369192, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1176615, "numnum:min:GEONAMEID": 1138958, "numnum:sum:GEONAMEID": 2315573, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3720671, "numnum:min:MAX_POP10": 742356, "numnum:sum:MAX_POP10": 4463027, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3720671, "numnum:min:MAX_POP20": 742356, "numnum:sum:MAX_POP20": 4463027, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 7482035, "numnum:min:MAX_POP50": 4803365, "numnum:sum:MAX_POP50": 12285400, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 7482969, "numnum:min:MAX_POP300": 4793793, "numnum:sum:MAX_POP300": 12276762, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 772, "numnum:min:MIN_AREAKM": 594, "numnum:sum:MIN_AREAKM": 1366, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 5463, "numnum:min:MAX_AREAKM": 1471, "numnum:sum:MAX_AREAKM": 6934, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 298, "numnum:min:MIN_AREAMI": 229, "numnum:sum:MIN_AREAMI": 527, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 2109, "numnum:min:MAX_AREAMI": 568, "numnum:sum:MAX_AREAMI": 2677, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 545, "numnum:min:MIN_PERKM": 409, "numnum:sum:MIN_PERKM": 954, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 4154, "numnum:min:MAX_PERKM": 1100, "numnum:sum:MAX_PERKM": 5254, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 339, "numnum:min:MIN_PERMI": 254, "numnum:sum:MIN_PERMI": 593, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 2581, "numnum:min:MAX_PERMI": 683, "numnum:sum:MAX_PERMI": 3264, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 72.286464, "numnum:min:MIN_BBXMIN": 68.866667, "numnum:sum:MIN_BBXMIN": 141.153131, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 73.033333, "numnum:min:MAX_BBXMIN": 68.866667, "numnum:sum:MAX_BBXMIN": 141.9, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 73.516667, "numnum:min:MIN_BBXMAX": 69.308333, "numnum:sum:MIN_BBXMAX": 142.825, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 73.816667, "numnum:min:MAX_BBXMAX": 69.783333, "numnum:sum:MAX_BBXMAX": 143.6, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 34.433333, "numnum:min:MIN_BBYMIN": 32.7, "numnum:sum:MIN_BBYMIN": 67.133333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 34.433333, "numnum:min:MAX_BBYMIN": 33.258333, "numnum:sum:MAX_BBYMIN": 67.691666, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 34.768813, "numnum:min:MIN_BBYMAX": 33.766667, "numnum:sum:MIN_BBYMAX": 68.53548, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 35.166667, "numnum:min:MAX_BBYMAX": 34.533333, "numnum:sum:MAX_BBYMAX": 69.69999999999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 73.182617, "numnum:min:MEAN_BBXC": 69.144173, "numnum:sum:MEAN_BBXC": 142.32679, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 34.688498, "numnum:min:MEAN_BBYC": 33.557939, "numnum:sum:MEAN_BBYC": 68.246437, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 13, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 21, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 3043532, "numnum:min:GN_POP": 601600, "numnum:sum:GN_POP": 3645132, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1808, "numnum:min:GTOPO30": 497, "numnum:sum:GTOPO30": 2305, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 401, "numnum:min:UN_FID": 320, "numnum:sum:UN_FID": 721, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 34.53, "numnum:min:UN_LAT": 33.71, "numnum:sum:UN_LAT": 68.24000000000001, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 73.06, "numnum:min:UN_LONG": 69.13, "numnum:sum:UN_LONG": 142.19, "numnum:count:POP1950": 2, "numnum:max:POP1950": 129, "numnum:min:POP1950": 36, "numnum:sum:POP1950": 165, "numnum:count:POP1955": 2, "numnum:max:POP1955": 184, "numnum:min:POP1955": 41, "numnum:sum:POP1955": 225, "numnum:count:POP1960": 2, "numnum:max:POP1960": 263, "numnum:min:POP1960": 45, "numnum:sum:POP1960": 308, "numnum:count:POP1965": 2, "numnum:max:POP1965": 369, "numnum:min:POP1965": 56, "numnum:sum:POP1965": 425, "numnum:count:POP1970": 2, "numnum:max:POP1970": 472, "numnum:min:POP1970": 70, "numnum:sum:POP1970": 542, "numnum:count:POP1975": 2, "numnum:max:POP1975": 674, "numnum:min:POP1975": 107, "numnum:sum:POP1975": 781, "numnum:count:POP1980": 2, "numnum:max:POP1980": 978, "numnum:min:POP1980": 189, "numnum:sum:POP1980": 1167, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1160, "numnum:min:POP1985": 260, "numnum:sum:POP1985": 1420, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1306, "numnum:min:POP1990": 343, "numnum:sum:POP1990": 1649, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1616, "numnum:min:POP1995": 452, "numnum:sum:POP1995": 2068, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1963, "numnum:min:POP2000": 594, "numnum:sum:POP2000": 2557, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2994, "numnum:min:POP2005": 732, "numnum:sum:POP2005": 3726, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3277, "numnum:min:POP2010": 780, "numnum:sum:POP2010": 4057, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3768, "numnum:min:POP2015": 851, "numnum:sum:POP2015": 4619, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4730, "numnum:min:POP2020": 988, "numnum:sum:POP2020": 5718, "numnum:count:POP2025": 2, "numnum:max:POP2025": 5836, "numnum:min:POP2025": 1148, "numnum:sum:POP2025": 6984, "numnum:count:POP2050": 2, "numnum:max:POP2050": 7175, "numnum:min:POP2050": 1320, "numnum:sum:POP2050": 8495, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ 69.169922, 34.524661 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.449790 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.613459 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 0, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 0, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 600, "numnum:sum:NATSCALE": 1200, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 1, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 2, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 22.494969, "numnum:min:LATITUDE": 19.01699, "numnum:sum:LATITUDE": 41.511959000000008, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 88.324676, "numnum:min:LONGITUDE": 72.856989, "numnum:sum:LONGITUDE": 161.181665, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 18978000, "numnum:min:POP_MAX": 14787000, "numnum:sum:POP_MAX": 33765000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 12691836, "numnum:min:POP_MIN": 4631392, "numnum:sum:POP_MIN": 17323228, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 12426085, "numnum:min:POP_OTHER": 7783716, "numnum:sum:POP_OTHER": 20209801, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 14, "numnum:sum:RANK_MAX": 28, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 26, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1275339, "numnum:min:GEONAMEID": 1275004, "numnum:sum:GEONAMEID": 2550343, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 12814908, "numnum:min:MAX_POP10": 8143162, "numnum:sum:MAX_POP10": 20958070, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 20149761, "numnum:min:MAX_POP20": 18577087, "numnum:sum:MAX_POP20": 38726848, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 48715672, "numnum:min:MAX_POP50": 20149761, "numnum:sum:MAX_POP50": 68865433, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 87652060, "numnum:min:MAX_POP300": 20149761, "numnum:sum:MAX_POP300": 107801821, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 20149761, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 20149761, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 2490, "numnum:min:MIN_AREAKM": 442, "numnum:sum:MIN_AREAKM": 2932, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 53331, "numnum:min:MAX_AREAKM": 1479, "numnum:sum:MAX_AREAKM": 54810, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 962, "numnum:min:MIN_AREAMI": 171, "numnum:sum:MIN_AREAMI": 1133, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 20591, "numnum:min:MAX_AREAMI": 571, "numnum:sum:MAX_AREAMI": 21162, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 244, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 244, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 35493, "numnum:min:MAX_PERKM": 1021, "numnum:sum:MAX_PERKM": 36514, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 152, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 152, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 22054, "numnum:min:MAX_PERMI": 634, "numnum:sum:MAX_PERMI": 22688, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 85.483333, "numnum:min:MIN_BBXMIN": 72.758333, "numnum:sum:MIN_BBXMIN": 158.241666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 87.714444, "numnum:min:MAX_BBXMIN": 72.775, "numnum:sum:MAX_BBXMIN": 160.489444, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 88.85, "numnum:min:MIN_BBXMAX": 72.983154, "numnum:sum:MIN_BBXMAX": 161.83315399999999, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 89.455426, "numnum:min:MAX_BBXMAX": 73.266667, "numnum:sum:MAX_BBXMAX": 162.722093, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 19.866667, "numnum:min:MIN_BBYMIN": 18.891667, "numnum:sum:MIN_BBYMIN": 38.758334000000008, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 22.056849, "numnum:min:MAX_BBYMIN": 18.891667, "numnum:sum:MAX_BBYMIN": 40.948516, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 22.575491, "numnum:min:MIN_BBYMAX": 19.308333, "numnum:sum:MIN_BBYMAX": 41.883824000000007, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 25.259961, "numnum:min:MAX_BBYMAX": 19.491667, "numnum:sum:MAX_BBYMAX": 44.751628, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 88.040398, "numnum:min:MEAN_BBXC": 72.959776, "numnum:sum:MEAN_BBXC": 161.00017400000002, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 22.616509, "numnum:min:MEAN_BBYC": 19.189154, "numnum:sum:MEAN_BBYC": 41.805662999999999, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 28, "numnum:min:ADMIN1_COD": 16, "numnum:sum:ADMIN1_COD": 44, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 12691836, "numnum:min:GN_POP": 4631392, "numnum:sum:GN_POP": 17323228, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 16, "numnum:min:GTOPO30": 12, "numnum:sum:GTOPO30": 28, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 253, "numnum:min:UN_FID": 245, "numnum:sum:UN_FID": 498, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 22.54, "numnum:min:UN_LAT": 19.07, "numnum:sum:UN_LAT": 41.61, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 88.33, "numnum:min:UN_LONG": 72.82, "numnum:sum:UN_LONG": 161.14999999999999, "numnum:count:POP1950": 2, "numnum:max:POP1950": 4513, "numnum:min:POP1950": 2857, "numnum:sum:POP1950": 7370, "numnum:count:POP1955": 2, "numnum:max:POP1955": 5055, "numnum:min:POP1955": 3432, "numnum:sum:POP1955": 8487, "numnum:count:POP1960": 2, "numnum:max:POP1960": 5652, "numnum:min:POP1960": 4060, "numnum:sum:POP1960": 9712, "numnum:count:POP1965": 2, "numnum:max:POP1965": 6261, "numnum:min:POP1965": 4854, "numnum:sum:POP1965": 11115, "numnum:count:POP1970": 2, "numnum:max:POP1970": 6926, "numnum:min:POP1970": 5811, "numnum:sum:POP1970": 12737, "numnum:count:POP1975": 2, "numnum:max:POP1975": 7888, "numnum:min:POP1975": 7082, "numnum:sum:POP1975": 14970, "numnum:count:POP1980": 2, "numnum:max:POP1980": 9030, "numnum:min:POP1980": 8658, "numnum:sum:POP1980": 17688, "numnum:count:POP1985": 2, "numnum:max:POP1985": 10341, "numnum:min:POP1985": 9946, "numnum:sum:POP1985": 20287, "numnum:count:POP1990": 2, "numnum:max:POP1990": 12308, "numnum:min:POP1990": 10890, "numnum:sum:POP1990": 23198, "numnum:count:POP1995": 2, "numnum:max:POP1995": 14111, "numnum:min:POP1995": 11924, "numnum:sum:POP1995": 26035, "numnum:count:POP2000": 2, "numnum:max:POP2000": 16086, "numnum:min:POP2000": 13058, "numnum:sum:POP2000": 29144, "numnum:count:POP2005": 2, "numnum:max:POP2005": 18202, "numnum:min:POP2005": 14282, "numnum:sum:POP2005": 32484, "numnum:count:POP2010": 2, "numnum:max:POP2010": 18978, "numnum:min:POP2010": 14787, "numnum:sum:POP2010": 33765, "numnum:count:POP2015": 2, "numnum:max:POP2015": 20072, "numnum:min:POP2015": 15577, "numnum:sum:POP2015": 35649, "numnum:count:POP2020": 2, "numnum:max:POP2020": 21946, "numnum:min:POP2020": 17039, "numnum:sum:POP2020": 38985, "numnum:count:POP2025": 2, "numnum:max:POP2025": 24051, "numnum:min:POP2025": 18707, "numnum:sum:POP2025": 42758, "numnum:count:POP2050": 2, "numnum:max:POP2050": 26385, "numnum:min:POP2050": 20560, "numnum:sum:POP2050": 46945, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.471955 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 27.716692, "numnum:min:LATITUDE": 27.472986, "numnum:sum:LATITUDE": 55.189678, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 89.639014, "numnum:min:LONGITUDE": 85.316642, "numnum:sum:LONGITUDE": 174.955656, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 895000, "numnum:min:POP_MAX": 98676, "numnum:sum:POP_MAX": 993676, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 895000, "numnum:min:POP_MIN": 79185, "numnum:sum:POP_MIN": 974185, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1099610, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 1099610, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 11, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 19, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1283240, "numnum:min:GEONAMEID": 1252416, "numnum:sum:GEONAMEID": 2535656, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1154222, "numnum:min:MAX_POP10": 274538, "numnum:sum:MAX_POP10": 1428760, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2297630, "numnum:min:MAX_POP20": 274538, "numnum:sum:MAX_POP20": 2572168, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 2297630, "numnum:min:MAX_POP50": 275382, "numnum:sum:MAX_POP50": 2573012, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 2297630, "numnum:min:MAX_POP300": 275382, "numnum:sum:MAX_POP300": 2573012, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 233, "numnum:min:MIN_AREAKM": 37, "numnum:sum:MIN_AREAKM": 270, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 580, "numnum:min:MAX_AREAKM": 38, "numnum:sum:MAX_AREAKM": 618, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 90, "numnum:min:MIN_AREAMI": 14, "numnum:sum:MIN_AREAMI": 104, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 224, "numnum:min:MAX_AREAMI": 15, "numnum:sum:MAX_AREAMI": 239, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 228, "numnum:min:MIN_PERKM": 65, "numnum:sum:MIN_PERKM": 293, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 511, "numnum:min:MAX_PERKM": 68, "numnum:sum:MAX_PERKM": 579, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 142, "numnum:min:MIN_PERMI": 40, "numnum:sum:MIN_PERMI": 182, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 318, "numnum:min:MAX_PERMI": 42, "numnum:sum:MAX_PERMI": 360, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 89.591667, "numnum:min:MIN_BBXMIN": 85.108333, "numnum:sum:MIN_BBXMIN": 174.7, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 89.591667, "numnum:min:MAX_BBXMIN": 85.108333, "numnum:sum:MAX_BBXMIN": 174.7, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 89.675, "numnum:min:MIN_BBXMAX": 85.450066, "numnum:sum:MIN_BBXMAX": 175.125066, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 89.683333, "numnum:min:MAX_BBXMAX": 85.675, "numnum:sum:MAX_BBXMAX": 175.35833300000003, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 27.541667, "numnum:min:MIN_BBYMIN": 27.408333, "numnum:sum:MIN_BBYMIN": 54.95, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 27.669456, "numnum:min:MAX_BBYMIN": 27.408333, "numnum:sum:MAX_BBYMIN": 55.077788999999999, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 27.85, "numnum:min:MIN_BBYMAX": 27.558333, "numnum:sum:MIN_BBYMAX": 55.408333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 27.85, "numnum:min:MAX_BBYMAX": 27.558333, "numnum:sum:MAX_BBYMAX": 55.408333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 89.637539, "numnum:min:MEAN_BBXC": 85.356097, "numnum:sum:MEAN_BBXC": 174.993636, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 27.697735, "numnum:min:MEAN_BBYC": 27.477943, "numnum:sum:MEAN_BBYC": 55.175678000000008, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 20, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 20, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1442271, "numnum:min:GN_POP": 98676, "numnum:sum:GN_POP": 1540947, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 2320, "numnum:min:ELEVATION": 1317, "numnum:sum:ELEVATION": 3637, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 2737, "numnum:min:GTOPO30": 1304, "numnum:sum:GTOPO30": 4041, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 378, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 378, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 27.71, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 27.71, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 85.31, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 85.31, "numnum:count:POP1950": 2, "numnum:max:POP1950": 104, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 104, "numnum:count:POP1955": 2, "numnum:max:POP1955": 110, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 110, "numnum:count:POP1960": 2, "numnum:max:POP1960": 119, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 119, "numnum:count:POP1965": 2, "numnum:max:POP1965": 132, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 132, "numnum:count:POP1970": 2, "numnum:max:POP1970": 147, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 147, "numnum:count:POP1975": 2, "numnum:max:POP1975": 180, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 180, "numnum:count:POP1980": 2, "numnum:max:POP1980": 225, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 225, "numnum:count:POP1985": 2, "numnum:max:POP1985": 297, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 297, "numnum:count:POP1990": 2, "numnum:max:POP1990": 398, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 398, "numnum:count:POP1995": 2, "numnum:max:POP1995": 509, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 509, "numnum:count:POP2000": 2, "numnum:max:POP2000": 644, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 644, "numnum:count:POP2005": 2, "numnum:max:POP2005": 815, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 815, "numnum:count:POP2010": 2, "numnum:max:POP2010": 895, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 895, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1029, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1029, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1284, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1284, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1578, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1578, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1907, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1907, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 85.341797, 27.722436 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Bangalore", "NAMEALT": "Bengaluru", "DIFFASCII": 0, "NAMEASCII": "Bangalore", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Karnataka", "ISO_A2": "IN", "LATITUDE": 12.969995, "LONGITUDE": 77.56001, "CHANGED": 3, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 6787000, "POP_MIN": 5104047, "POP_OTHER": 8102712, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1277333, "MEGANAME": "Bangalore", "LS_NAME": "Bangalore", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8181096, "MAX_POP20": 8181096, "MAX_POP50": 8553953, "MAX_POP300": 8553953, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2443, "MAX_AREAKM": 2836, "MIN_AREAMI": 943, "MAX_AREAMI": 1095, "MIN_PERKM": 1908, "MAX_PERKM": 2412, "MIN_PERMI": 1186, "MAX_PERMI": 1499, "MIN_BBXMIN": 77.275, "MAX_BBXMIN": 77.275, "MIN_BBXMAX": 77.996673, "MAX_BBXMAX": 78.15, "MIN_BBYMIN": 12.325, "MAX_BBYMIN": 12.325, "MIN_BBYMAX": 13.333333, "MAX_BBYMAX": 13.333333, "MEAN_BBXC": 77.703019, "MEAN_BBYC": 12.841733, "COMPARE": 1, "GN_ASCII": "Bengaluru", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 5104047, "ELEVATION": 920, "GTOPO30": 914, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 219, "UN_ADM0": "India", "UN_LAT": 12.97, "UN_LONG": 77.58, "POP1950": 746, "POP1955": 939, "POP1960": 1166, "POP1965": 1377, "POP1970": 1615, "POP1975": 2111, "POP1980": 2812, "POP1985": 3395, "POP1990": 4036, "POP1995": 4744, "POP2000": 5567, "POP2005": 6465, "POP2010": 6787, "POP2015": 7229, "POP2020": 7967, "POP2025": 8795, "POP2050": 9719, "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 17, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1180, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 23, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 47.916673, "numnum:min:LATITUDE": 4.166708, "numnum:sum:LATITUDE": 133.27840600000003, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 106.916616, "numnum:min:LONGITUDE": 73.499947, "numnum:sum:LONGITUDE": 612.262915, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 17, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 2, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 12797394, "numnum:min:POP_MAX": 112927, "numnum:sum:POP_MAX": 25038147, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 7000940, "numnum:min:POP_MIN": 103693, "numnum:sum:POP_MIN": 17261555, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 14995538, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 40433804, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 78, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 77, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 3465927, "numnum:min:GEONAMEID": 1185241, "numnum:sum:GEONAMEID": 14185427, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 14548962, "numnum:min:MAX_POP10": 112927, "numnum:sum:MAX_POP10": 38421208, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 21394172, "numnum:min:MAX_POP20": 112927, "numnum:sum:MAX_POP20": 47999644, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 53845691, "numnum:min:MAX_POP50": 112927, "numnum:sum:MAX_POP50": 95089174, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 78549234, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 97745557, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 5912, "numnum:min:MIN_AREAKM": 3, "numnum:sum:MIN_AREAKM": 14348, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 49912, "numnum:min:MAX_AREAKM": 3, "numnum:sum:MAX_AREAKM": 86219, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 2283, "numnum:min:MIN_AREAMI": 1, "numnum:sum:MIN_AREAMI": 5539, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 19271, "numnum:min:MAX_AREAMI": 1, "numnum:sum:MAX_AREAMI": 33289, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 2296, "numnum:min:MIN_PERKM": 7, "numnum:sum:MIN_PERKM": 7789, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 19314, "numnum:min:MAX_PERKM": 7, "numnum:sum:MAX_PERKM": 41508, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 1427, "numnum:min:MIN_PERMI": 5, "numnum:sum:MIN_PERMI": 4840, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 12001, "numnum:min:MAX_PERMI": 5, "numnum:sum:MAX_PERMI": 25792, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 106.725, "numnum:min:MIN_BBXMIN": 73.5, "numnum:sum:MIN_BBXMIN": 608.4254579999999, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 106.725, "numnum:min:MAX_BBXMIN": 73.5, "numnum:sum:MAX_BBXMIN": 610.4671599999999, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 107.041667, "numnum:min:MIN_BBXMAX": 73.516667, "numnum:sum:MIN_BBXMAX": 614.268953, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 107.041667, "numnum:min:MAX_BBXMAX": 73.516667, "numnum:sum:MAX_BBXMAX": 618.5583330000001, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 47.883333, "numnum:min:MIN_BBYMIN": 4.166667, "numnum:sum:MIN_BBYMIN": 127.80543500000002, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 47.883333, "numnum:min:MAX_BBYMIN": 4.166667, "numnum:sum:MAX_BBYMIN": 131.486172, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 48.016667, "numnum:min:MIN_BBYMAX": 4.183333, "numnum:sum:MIN_BBYMAX": 135.843196, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 48.016667, "numnum:min:MAX_BBYMAX": 4.183333, "numnum:sum:MAX_BBYMAX": 137.60412300000002, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 106.883013, "numnum:min:MEAN_BBXC": 73.508333, "numnum:sum:MEAN_BBXC": 612.628735, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 47.932237, "numnum:min:MEAN_BBYC": 4.175, "numnum:sum:MEAN_BBYC": 133.605324, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 2, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 81, "numnum:min:ADMIN1_COD": 17, "numnum:sum:ADMIN1_COD": 223, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 10356500, "numnum:min:GN_POP": 2138, "numnum:sum:GN_POP": 20590766, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 920, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 920, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 1299, "numnum:min:GTOPO30": 4, "numnum:sum:GTOPO30": 4380, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 369, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 986, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 47.92, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 115.26, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 106.91, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 378.96, "numnum:count:POP1950": 7, "numnum:max:POP1950": 768, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1920, "numnum:count:POP1955": 7, "numnum:max:POP1955": 939, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2382, "numnum:count:POP1960": 7, "numnum:max:POP1960": 1166, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2959, "numnum:count:POP1965": 7, "numnum:max:POP1965": 1377, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3773, "numnum:count:POP1970": 7, "numnum:max:POP1970": 1615, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 4879, "numnum:count:POP1975": 7, "numnum:max:POP1975": 2221, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 6599, "numnum:count:POP1980": 7, "numnum:max:POP1980": 3266, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 8794, "numnum:count:POP1985": 7, "numnum:max:POP1985": 4660, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 11186, "numnum:count:POP1990": 7, "numnum:max:POP1990": 6621, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 14184, "numnum:count:POP1995": 7, "numnum:max:POP1995": 8332, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 17140, "numnum:count:POP2000": 7, "numnum:max:POP2000": 10285, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 20534, "numnum:count:POP2005": 7, "numnum:max:POP2005": 12576, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 23962, "numnum:count:POP2010": 7, "numnum:max:POP2010": 13485, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 25280, "numnum:count:POP2015": 7, "numnum:max:POP2015": 14796, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 27210, "numnum:count:POP2020": 7, "numnum:max:POP2020": 17015, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 30594, "numnum:count:POP2025": 7, "numnum:max:POP2025": 19422, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 34275, "numnum:count:POP2050": 7, "numnum:max:POP2050": 22015, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 38166, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.983148 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta", "accum2": 1, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1720, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 22.494969, "numnum:min:LATITUDE": 4.166708, "numnum:sum:LATITUDE": 65.580628, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 88.324676, "numnum:min:LONGITUDE": 72.856989, "numnum:sum:LONGITUDE": 392.099373, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 7, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 2, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 18978000, "numnum:min:POP_MAX": 112927, "numnum:sum:POP_MAX": 40881927, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 12691836, "numnum:min:POP_MIN": 103693, "numnum:sum:POP_MIN": 22747968, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 12426085, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 30803487, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 60, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 58, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 3465927, "numnum:min:GEONAMEID": 1275004, "numnum:sum:GEONAMEID": 10467789, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 12814908, "numnum:min:MAX_POP10": 112927, "numnum:sum:MAX_POP10": 31916511, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 20149761, "numnum:min:MAX_POP20": 112927, "numnum:sum:MAX_POP20": 49763850, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 48715672, "numnum:min:MAX_POP50": 112927, "numnum:sum:MAX_POP50": 80275292, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 87652060, "numnum:min:MAX_POP300": 112927, "numnum:sum:MAX_POP300": 126228532, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 20149761, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 20149761, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 2490, "numnum:min:MIN_AREAKM": 3, "numnum:sum:MIN_AREAKM": 6432, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 53331, "numnum:min:MAX_AREAKM": 3, "numnum:sum:MAX_AREAKM": 63887, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 962, "numnum:min:MIN_AREAMI": 1, "numnum:sum:MIN_AREAMI": 2484, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 20591, "numnum:min:MAX_AREAMI": 1, "numnum:sum:MAX_AREAMI": 24666, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 1908, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 3006, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 35493, "numnum:min:MAX_PERKM": 7, "numnum:sum:MAX_PERKM": 44276, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 1186, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 1869, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 22054, "numnum:min:MAX_PERMI": 5, "numnum:sum:MAX_PERMI": 27512, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 85.483333, "numnum:min:MIN_BBXMIN": 72.758333, "numnum:sum:MIN_BBXMIN": 388.816666, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 87.714444, "numnum:min:MAX_BBXMIN": 72.775, "numnum:sum:MAX_BBXMIN": 391.06444400000006, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 88.85, "numnum:min:MIN_BBXMAX": 72.983154, "numnum:sum:MIN_BBXMAX": 393.44404699999998, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 89.455426, "numnum:min:MAX_BBXMAX": 73.266667, "numnum:sum:MAX_BBXMAX": 395.222093, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 19.866667, "numnum:min:MIN_BBYMIN": 4.166667, "numnum:sum:MIN_BBYMIN": 61.166668000000019, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 22.056849, "numnum:min:MAX_BBYMIN": 4.166667, "numnum:sum:MAX_BBYMIN": 64.29463000000001, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 22.575491, "numnum:min:MIN_BBYMAX": 4.183333, "numnum:sum:MIN_BBYMAX": 67.033823, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 25.259961, "numnum:min:MAX_BBYMAX": 4.183333, "numnum:sum:MAX_BBYMAX": 70.068294, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 88.040398, "numnum:min:MEAN_BBXC": 72.959776, "numnum:sum:MEAN_BBXC": 392.208375, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 22.616509, "numnum:min:MEAN_BBYC": 4.175, "numnum:sum:MEAN_BBYC": 66.04519499999999, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 2, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 28, "numnum:min:ADMIN1_COD": 16, "numnum:sum:ADMIN1_COD": 98, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 12691836, "numnum:min:GN_POP": 2138, "numnum:sum:GN_POP": 22646413, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 920, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 920, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 927, "numnum:min:GTOPO30": 12, "numnum:sum:GTOPO30": 2541, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 253, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 717, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 22.54, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 54.58, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 88.33, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 238.72999999999997, "numnum:count:POP1950": 5, "numnum:max:POP1950": 4513, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 8116, "numnum:count:POP1955": 5, "numnum:max:POP1955": 5055, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 9426, "numnum:count:POP1960": 5, "numnum:max:POP1960": 5652, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 10878, "numnum:count:POP1965": 5, "numnum:max:POP1965": 6261, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 12492, "numnum:count:POP1970": 5, "numnum:max:POP1970": 6926, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 14352, "numnum:count:POP1975": 5, "numnum:max:POP1975": 7888, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 17081, "numnum:count:POP1980": 5, "numnum:max:POP1980": 9030, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 20500, "numnum:count:POP1985": 5, "numnum:max:POP1985": 10341, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 23682, "numnum:count:POP1990": 5, "numnum:max:POP1990": 12308, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 27234, "numnum:count:POP1995": 5, "numnum:max:POP1995": 14111, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 30779, "numnum:count:POP2000": 5, "numnum:max:POP2000": 16086, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 34711, "numnum:count:POP2005": 5, "numnum:max:POP2005": 18202, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 38949, "numnum:count:POP2010": 5, "numnum:max:POP2010": 18978, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 40552, "numnum:count:POP2015": 5, "numnum:max:POP2015": 20072, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 42878, "numnum:count:POP2020": 5, "numnum:max:POP2020": 21946, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 46952, "numnum:count:POP2025": 5, "numnum:max:POP2025": 24051, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 51553, "numnum:count:POP2050": 5, "numnum:max:POP2050": 26385, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 56664, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.471955 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 720, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 23, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 19.766557, "numnum:min:LATITUDE": 13.749999, "numnum:sum:LATITUDE": 68.266603, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 102.59998, "numnum:min:LONGITUDE": 96.118619, "numnum:sum:LONGITUDE": 395.401922, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 6704000, "numnum:min:POP_MAX": 754000, "numnum:sum:POP_MAX": 12476000, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 5104476, "numnum:min:POP_MIN": 194824, "numnum:sum:POP_MIN": 9171468, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 5082758, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 8676659, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 47, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 45, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 6611854, "numnum:min:GEONAMEID": 1298824, "numnum:sum:GEONAMEID": 11171972, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 5323600, "numnum:min:MAX_POP10": 194824, "numnum:sum:MAX_POP10": 9292171, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 8823534, "numnum:min:MAX_POP20": 194824, "numnum:sum:MAX_POP20": 12792105, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 9210939, "numnum:min:MAX_POP50": 194824, "numnum:sum:MAX_POP50": 13277931, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 9206246, "numnum:min:MAX_POP300": 194824, "numnum:sum:MAX_POP300": 13273238, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 9206246, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9206246, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 815, "numnum:min:MIN_AREAKM": 89, "numnum:sum:MIN_AREAKM": 1415, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 2350, "numnum:min:MAX_AREAKM": 89, "numnum:sum:MAX_AREAKM": 3027, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 315, "numnum:min:MIN_AREAMI": 34, "numnum:sum:MIN_AREAMI": 546, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 908, "numnum:min:MAX_AREAMI": 34, "numnum:sum:MAX_AREAMI": 1169, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 280, "numnum:min:MIN_PERKM": 149, "numnum:sum:MIN_PERKM": 798, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 1354, "numnum:min:MAX_PERKM": 149, "numnum:sum:MAX_PERKM": 1985, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 174, "numnum:min:MIN_PERMI": 93, "numnum:sum:MIN_PERMI": 496, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 841, "numnum:min:MAX_PERMI": 93, "numnum:sum:MAX_PERMI": 1233, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 102.491667, "numnum:min:MIN_BBXMIN": 96.025, "numnum:sum:MIN_BBXMIN": 394.65000100000005, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 102.491667, "numnum:min:MAX_BBXMIN": 96.025, "numnum:sum:MAX_BBXMIN": 394.875001, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 102.725, "numnum:min:MIN_BBXMAX": 96.266667, "numnum:sum:MIN_BBXMAX": 396.11096, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 102.816667, "numnum:min:MAX_BBXMAX": 96.266667, "numnum:sum:MAX_BBXMAX": 396.375001, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 19.633333, "numnum:min:MIN_BBYMIN": 13.5, "numnum:sum:MIN_BBYMIN": 67.65, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 19.633333, "numnum:min:MAX_BBYMIN": 13.516667, "numnum:sum:MAX_BBYMIN": 67.741667, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 19.783333, "numnum:min:MIN_BBYMAX": 13.872295, "numnum:sum:MIN_BBYMAX": 68.763961, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 19.783333, "numnum:min:MAX_BBYMAX": 14.158333, "numnum:sum:MAX_BBYMAX": 69.049999, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 102.648054, "numnum:min:MEAN_BBXC": 96.144646, "numnum:sum:MEAN_BBXC": 395.54358, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 19.720606, "numnum:min:MEAN_BBYC": 13.761017, "numnum:sum:MEAN_BBYC": 68.307387, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 40, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 92, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 5104476, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 9778845, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 174, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 297, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 496, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 501, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 19.75, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 50.370000000000008, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 100.51, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 292.73, "numnum:count:POP1950": 4, "numnum:max:POP1950": 1360, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2662, "numnum:count:POP1955": 4, "numnum:max:POP1955": 1712, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3152, "numnum:count:POP1960": 4, "numnum:max:POP1960": 2151, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 3743, "numnum:count:POP1965": 4, "numnum:max:POP1965": 2584, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 4344, "numnum:count:POP1970": 4, "numnum:max:POP1970": 3110, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 5056, "numnum:count:POP1975": 4, "numnum:max:POP1975": 3842, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5993, "numnum:count:POP1980": 4, "numnum:max:POP1980": 4723, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 7101, "numnum:count:POP1985": 4, "numnum:max:POP1985": 5279, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 7908, "numnum:count:POP1990": 4, "numnum:max:POP1990": 5888, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 8795, "numnum:count:POP1995": 4, "numnum:max:POP1995": 6106, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9319, "numnum:count:POP2000": 4, "numnum:max:POP2000": 6332, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 9885, "numnum:count:POP2005": 4, "numnum:max:POP2005": 6582, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 10567, "numnum:count:POP2010": 4, "numnum:max:POP2010": 6704, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 11722, "numnum:count:POP2015": 4, "numnum:max:POP2015": 6918, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 12290, "numnum:count:POP2020": 4, "numnum:max:POP2020": 7332, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 13350, "numnum:count:POP2025": 4, "numnum:max:POP2025": 7807, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 14489, "numnum:count:POP2050": 4, "numnum:max:POP2050": 8332, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 15662, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 96.108398, 19.766704 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 79.936523, 6.882800 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Hanoi", "NAMEALT": "Hà Noi", "DIFFASCII": 0, "NAMEASCII": "Hanoi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Vietnam", "SOV_A3": "VNM", "ADM0NAME": "Vietnam", "ADM0_A3": "VNM", "ADM1NAME": "Thái Nguyên", "ISO_A2": "VN", "LATITUDE": 21.033327, "LONGITUDE": 105.850014, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4378000, "POP_MIN": 1431270, "POP_OTHER": 5466347, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1581130, "MEGANAME": "Hà Noi", "LS_NAME": "Hanoi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5620806, "MAX_POP20": 7346227, "MAX_POP50": 16406759, "MAX_POP300": 23700631, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2512, "MAX_AREAKM": 14049, "MIN_AREAMI": 970, "MAX_AREAMI": 5424, "MIN_PERKM": 1175, "MAX_PERKM": 10267, "MIN_PERMI": 730, "MAX_PERMI": 6380, "MIN_BBXMIN": 104.975, "MAX_BBXMIN": 105.616287, "MIN_BBXMAX": 106.2294, "MAX_BBXMAX": 106.808333, "MIN_BBYMIN": 19.283333, "MAX_BBYMIN": 20.620237, "MIN_BBYMAX": 21.319209, "MAX_BBYMAX": 21.783333, "MEAN_BBXC": 105.892881, "MEAN_BBYC": 20.873406, "COMPARE": 0, "GN_ASCII": "Ha Noi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 1431270, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Asia/Ho_Chi_Minh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 451, "UN_ADM0": "Viet Nam", "UN_LAT": 21.03, "UN_LONG": 105.82, "POP1950": 280, "POP1955": 425, "POP1960": 644, "POP1965": 917, "POP1970": 1307, "POP1975": 1884, "POP1980": 2606, "POP1985": 2854, "POP1990": 3126, "POP1995": 3424, "POP2000": 3752, "POP2005": 4170, "POP2010": 4378, "POP2015": 4723, "POP2020": 5357, "POP2025": 6036, "POP2050": 6754, "CITYALT": "Hanoi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ 105.864258, 21.043491 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.901614 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Phnom Penh", "NAMEALT": "Phnum Pénh", "DIFFASCII": 0, "NAMEASCII": "Phnom Penh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cambodia", "SOV_A3": "KHM", "ADM0NAME": "Cambodia", "ADM0_A3": "KHM", "ADM1NAME": "Phnom Penh", "ISO_A2": "KH", "LATITUDE": 11.55003, "LONGITUDE": 104.916634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1466000, "POP_MIN": 1466000, "POP_OTHER": 1604086, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1821306, "MEGANAME": "Phnum Pénh", "LS_NAME": "Phnom Penh", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1551977, "MAX_POP20": 1551977, "MAX_POP50": 1551977, "MAX_POP300": 1551977, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 464, "MAX_AREAKM": 464, "MIN_AREAMI": 179, "MAX_AREAMI": 179, "MIN_PERKM": 703, "MAX_PERKM": 703, "MIN_PERMI": 437, "MAX_PERMI": 437, "MIN_BBXMIN": 104.441667, "MAX_BBXMIN": 104.441667, "MIN_BBXMAX": 105, "MAX_BBXMAX": 105, "MIN_BBYMIN": 11.291667, "MAX_BBYMIN": 11.291667, "MIN_BBYMAX": 11.691667, "MAX_BBYMAX": 11.691667, "MEAN_BBXC": 104.78577, "MEAN_BBYC": 11.488418, "COMPARE": 0, "GN_ASCII": "Phnom Penh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1573544, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Phnom_Penh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 5, "UN_ADM0": "Cambodia", "UN_LAT": 11.56, "UN_LONG": 104.91, "POP1950": 364, "POP1955": 376, "POP1960": 389, "POP1965": 436, "POP1970": 900, "POP1975": 100, "POP1980": 238, "POP1985": 427, "POP1990": 615, "POP1995": 836, "POP2000": 1160, "POP2005": 1363, "POP2010": 1466, "POP2015": 1651, "POP2020": 2028, "POP2025": 2457, "POP2050": 2911, "CITYALT": "Phnom Penh", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 104.941406, 11.566144 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 610, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 30.67, "numnum:min:LATITUDE": 19.766557, "numnum:sum:LATITUDE": 74.159617, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 104.070019, "numnum:min:LONGITUDE": 90.408579, "numnum:sum:LONGITUDE": 290.597217, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 14, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 12797394, "numnum:min:POP_MAX": 930000, "numnum:sum:POP_MAX": 17850394, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 7000940, "numnum:min:POP_MIN": 194824, "numnum:sum:POP_MIN": 11146201, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 14995538, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 26618467, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 37, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 34, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 6611854, "numnum:min:GEONAMEID": 1185241, "numnum:sum:GEONAMEID": 9612381, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 14548962, "numnum:min:MAX_POP10": 194824, "numnum:sum:MAX_POP10": 24698596, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 21394172, "numnum:min:MAX_POP20": 194824, "numnum:sum:MAX_POP20": 32948670, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 53845691, "numnum:min:MAX_POP50": 194824, "numnum:sum:MAX_POP50": 78414732, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 78549234, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 78744058, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 5912, "numnum:min:MIN_AREAKM": 89, "numnum:sum:MIN_AREAKM": 9529, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 49912, "numnum:min:MAX_AREAKM": 89, "numnum:sum:MAX_AREAKM": 74245, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 2283, "numnum:min:MIN_AREAMI": 34, "numnum:sum:MIN_AREAMI": 3679, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 19271, "numnum:min:MAX_AREAMI": 34, "numnum:sum:MAX_AREAMI": 28666, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 2296, "numnum:min:MIN_PERKM": 149, "numnum:sum:MIN_PERKM": 3884, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 19314, "numnum:min:MAX_PERKM": 149, "numnum:sum:MAX_PERKM": 31363, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 1427, "numnum:min:MIN_PERMI": 93, "numnum:sum:MIN_PERMI": 2414, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 12001, "numnum:min:MAX_PERMI": 93, "numnum:sum:MAX_PERMI": 19488, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 103.125, "numnum:min:MIN_BBXMIN": 88.133791, "numnum:sum:MIN_BBXMIN": 287.400458, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 103.383333, "numnum:min:MAX_BBXMIN": 89.9, "numnum:sum:MAX_BBXMIN": 289.425, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 104.433333, "numnum:min:MIN_BBXMAX": 90.816777, "numnum:sum:MIN_BBXMAX": 291.52511000000006, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 105.375, "numnum:min:MAX_BBXMAX": 92.908333, "numnum:sum:MAX_BBXMAX": 294.558333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 28.738768, "numnum:min:MIN_BBYMIN": 19.633333, "numnum:sum:MIN_BBYMIN": 71.230434, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 30.065456, "numnum:min:MAX_BBYMIN": 19.633333, "numnum:sum:MAX_BBYMIN": 73.181725, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 31.083333, "numnum:min:MIN_BBYMAX": 19.783333, "numnum:sum:MIN_BBYMAX": 75.11407299999999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 31.341667, "numnum:min:MAX_BBYMAX": 19.783333, "numnum:sum:MAX_BBYMAX": 76.708333, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 104.039242, "numnum:min:MEAN_BBXC": 90.400679, "numnum:sum:MEAN_BBXC": 290.645754, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 30.486458, "numnum:min:MEAN_BBYC": 19.720606, "numnum:sum:MEAN_BBYC": 74.312156, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 81, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 121, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 10356500, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 14306937, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 529, "numnum:min:GTOPO30": 4, "numnum:sum:GTOPO30": 641, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 369, "numnum:min:UN_FID": 2, "numnum:sum:UN_FID": 402, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 30.67, "numnum:min:UN_LAT": 19.75, "numnum:sum:UN_LAT": 74.12, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 104.07, "numnum:min:UN_LONG": 90.4, "numnum:sum:UN_LONG": 290.57, "numnum:count:POP1950": 3, "numnum:max:POP1950": 768, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1104, "numnum:count:POP1955": 3, "numnum:max:POP1955": 922, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1331, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1106, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1614, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1327, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2148, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1592, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2966, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2221, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4132, "numnum:count:POP1980": 3, "numnum:max:POP1980": 3266, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5559, "numnum:count:POP1985": 3, "numnum:max:POP1985": 4660, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 7299, "numnum:count:POP1990": 3, "numnum:max:POP1990": 6621, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 9576, "numnum:count:POP1995": 3, "numnum:max:POP1995": 8332, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 11735, "numnum:count:POP2000": 3, "numnum:max:POP2000": 10285, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 14204, "numnum:count:POP2005": 3, "numnum:max:POP2005": 12576, "numnum:min:POP2005": 57, "numnum:sum:POP2005": 16698, "numnum:count:POP2010": 3, "numnum:max:POP2010": 13485, "numnum:min:POP2010": 930, "numnum:sum:POP2010": 18538, "numnum:count:POP2015": 3, "numnum:max:POP2015": 14796, "numnum:min:POP2015": 1024, "numnum:sum:POP2015": 20086, "numnum:count:POP2020": 3, "numnum:max:POP2020": 17015, "numnum:min:POP2020": 1177, "numnum:sum:POP2020": 22826, "numnum:count:POP2025": 3, "numnum:max:POP2025": 19422, "numnum:min:POP2025": 1321, "numnum:sum:POP2025": 25757, "numnum:count:POP2050": 3, "numnum:max:POP2050": 22015, "numnum:min:POP2050": 1461, "numnum:sum:POP2050": 28796, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ 90.395508, 23.725012 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "Former capital", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820, "MAX_POP20": 3301820, "MAX_POP50": 3301820, "MAX_POP300": 3301820, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 199, "MAX_PERKM": 199, "MIN_PERMI": 123, "MAX_PERMI": 123, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 4477638, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302, "POP1955": 1440, "POP1960": 1592, "POP1965": 1760, "POP1970": 1946, "POP1975": 2151, "POP1980": 2378, "POP1985": 2629, "POP1990": 2907, "POP1995": 3213, "POP2000": 3553, "POP2005": 3928, "POP2010": 4088, "POP2015": 4348, "POP2020": 4841, "POP2025": 5361, "POP2050": 5869, "CITYALT": "Rangoon", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 500, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 10, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 16.783354, "numnum:min:LATITUDE": 13.749999, "numnum:sum:LATITUDE": 30.533352999999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 100.516645, "numnum:min:LONGITUDE": 96.166678, "numnum:sum:LONGITUDE": 196.683323, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 6704000, "numnum:min:POP_MAX": 4088000, "numnum:sum:POP_MAX": 10792000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 5104476, "numnum:min:POP_MIN": 3301820, "numnum:sum:POP_MIN": 8406296, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 5082758, "numnum:min:POP_OTHER": 3124090, "numnum:sum:POP_OTHER": 8206848, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 25, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1609350, "numnum:min:GEONAMEID": 1298824, "numnum:sum:GEONAMEID": 2908174, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 5323600, "numnum:min:MAX_POP10": 3301820, "numnum:sum:MAX_POP10": 8625420, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 8823534, "numnum:min:MAX_POP20": 3301820, "numnum:sum:MAX_POP20": 12125354, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 9210939, "numnum:min:MAX_POP50": 3301820, "numnum:sum:MAX_POP50": 12512759, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 9206246, "numnum:min:MAX_POP300": 3301820, "numnum:sum:MAX_POP300": 12508066, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 9206246, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9206246, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 815, "numnum:min:MIN_AREAKM": 345, "numnum:sum:MIN_AREAKM": 1160, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2350, "numnum:min:MAX_AREAKM": 345, "numnum:sum:MAX_AREAKM": 2695, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 315, "numnum:min:MIN_AREAMI": 133, "numnum:sum:MIN_AREAMI": 448, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 908, "numnum:min:MAX_AREAMI": 133, "numnum:sum:MAX_AREAMI": 1041, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 280, "numnum:min:MIN_PERKM": 199, "numnum:sum:MIN_PERKM": 479, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1354, "numnum:min:MAX_PERKM": 199, "numnum:sum:MAX_PERKM": 1553, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 174, "numnum:min:MIN_PERMI": 123, "numnum:sum:MIN_PERMI": 297, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 841, "numnum:min:MAX_PERMI": 123, "numnum:sum:MAX_PERMI": 964, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 99.991667, "numnum:min:MIN_BBXMIN": 96.025, "numnum:sum:MIN_BBXMIN": 196.016667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 100.216667, "numnum:min:MAX_BBXMIN": 96.025, "numnum:sum:MAX_BBXMIN": 196.241667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 100.844293, "numnum:min:MIN_BBXMAX": 96.266667, "numnum:sum:MIN_BBXMAX": 197.11095999999999, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 101.016667, "numnum:min:MAX_BBXMAX": 96.266667, "numnum:sum:MAX_BBXMAX": 197.283334, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 16.716667, "numnum:min:MIN_BBYMIN": 13.5, "numnum:sum:MIN_BBYMIN": 30.216667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 16.716667, "numnum:min:MAX_BBYMIN": 13.516667, "numnum:sum:MAX_BBYMIN": 30.233334, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 17.025, "numnum:min:MIN_BBYMAX": 13.872295, "numnum:sum:MIN_BBYMAX": 30.897295, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 17.025, "numnum:min:MAX_BBYMAX": 14.158333, "numnum:sum:MAX_BBYMAX": 31.183332999999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 100.545047, "numnum:min:MEAN_BBXC": 96.144646, "numnum:sum:MEAN_BBXC": 196.68969299999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 16.85864, "numnum:min:MEAN_BBYC": 13.761017, "numnum:sum:MEAN_BBYC": 30.619657000000005, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 40, "numnum:min:ADMIN1_COD": 17, "numnum:sum:ADMIN1_COD": 57, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 5104476, "numnum:min:GN_POP": 4477638, "numnum:sum:GN_POP": 9582114, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 13, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 15, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 496, "numnum:min:UN_FID": 3, "numnum:sum:UN_FID": 499, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 16.87, "numnum:min:UN_LAT": 13.75, "numnum:sum:UN_LAT": 30.62, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 100.51, "numnum:min:UN_LONG": 96.12, "numnum:sum:UN_LONG": 196.63, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1360, "numnum:min:POP1950": 1302, "numnum:sum:POP1950": 2662, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1712, "numnum:min:POP1955": 1440, "numnum:sum:POP1955": 3152, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2151, "numnum:min:POP1960": 1592, "numnum:sum:POP1960": 3743, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2584, "numnum:min:POP1965": 1760, "numnum:sum:POP1965": 4344, "numnum:count:POP1970": 2, "numnum:max:POP1970": 3110, "numnum:min:POP1970": 1946, "numnum:sum:POP1970": 5056, "numnum:count:POP1975": 2, "numnum:max:POP1975": 3842, "numnum:min:POP1975": 2151, "numnum:sum:POP1975": 5993, "numnum:count:POP1980": 2, "numnum:max:POP1980": 4723, "numnum:min:POP1980": 2378, "numnum:sum:POP1980": 7101, "numnum:count:POP1985": 2, "numnum:max:POP1985": 5279, "numnum:min:POP1985": 2629, "numnum:sum:POP1985": 7908, "numnum:count:POP1990": 2, "numnum:max:POP1990": 5888, "numnum:min:POP1990": 2907, "numnum:sum:POP1990": 8795, "numnum:count:POP1995": 2, "numnum:max:POP1995": 6106, "numnum:min:POP1995": 3213, "numnum:sum:POP1995": 9319, "numnum:count:POP2000": 2, "numnum:max:POP2000": 6332, "numnum:min:POP2000": 3553, "numnum:sum:POP2000": 9885, "numnum:count:POP2005": 2, "numnum:max:POP2005": 6582, "numnum:min:POP2005": 3928, "numnum:sum:POP2005": 10510, "numnum:count:POP2010": 2, "numnum:max:POP2010": 6704, "numnum:min:POP2010": 4088, "numnum:sum:POP2010": 10792, "numnum:count:POP2015": 2, "numnum:max:POP2015": 6918, "numnum:min:POP2015": 4348, "numnum:sum:POP2015": 11266, "numnum:count:POP2020": 2, "numnum:max:POP2020": 7332, "numnum:min:POP2020": 4841, "numnum:sum:POP2020": 12173, "numnum:count:POP2025": 2, "numnum:max:POP2025": 7807, "numnum:min:POP2025": 5361, "numnum:sum:POP2025": 13168, "numnum:count:POP2050": 2, "numnum:max:POP2050": 8332, "numnum:min:POP2050": 5869, "numnum:sum:POP2050": 14201, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 16.762468 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Putrajaya", "DIFFASCII": 0, "NAMEASCII": "Putrajaya", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 2.91402, "LONGITUDE": 101.701947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 67964, "POP_MIN": 50000, "POP_OTHER": 956431, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 6697380, "LS_NAME": "Putrajaya", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 955607, "MAX_POP20": 964830, "MAX_POP50": 1651113, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 486, "MAX_AREAKM": 805, "MIN_AREAMI": 188, "MAX_AREAMI": 311, "MIN_PERKM": 467, "MAX_PERKM": 737, "MIN_PERMI": 290, "MAX_PERMI": 458, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.575, "MIN_BBXMAX": 101.891667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 2.708333, "MIN_BBYMAX": 3.041194, "MAX_BBYMAX": 3.041194, "MEAN_BBXC": 101.716617, "MEAN_BBYC": 2.915909, "COMPARE": 0, "GN_ASCII": "Putrajaya", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 17, "GN_POP": 50000, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 2.899153 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vientiane", "DIFFASCII": 0, "NAMEASCII": "Vientiane", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Laos", "SOV_A3": "LAO", "ADM0NAME": "Laos", "ADM0_A3": "LAO", "ADM1NAME": "Vientiane [prefecture]", "ISO_A2": "LA", "LATITUDE": 17.966693, "LONGITUDE": 102.59998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 754000, "POP_MIN": 570348, "POP_OTHER": 469811, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1651944, "LS_NAME": "Vientiane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 471927, "MAX_POP20": 471927, "MAX_POP50": 570348, "MAX_POP300": 570348, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 166, "MAX_AREAKM": 243, "MIN_AREAMI": 64, "MAX_AREAMI": 94, "MIN_PERKM": 170, "MAX_PERKM": 283, "MIN_PERMI": 106, "MAX_PERMI": 176, "MIN_BBXMIN": 102.491667, "MAX_BBXMIN": 102.491667, "MIN_BBXMAX": 102.725, "MAX_BBXMAX": 102.816667, "MIN_BBYMIN": 17.8, "MAX_BBYMIN": 17.875, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": 102.648054, "MEAN_BBYC": 17.967124, "COMPARE": 0, "GN_ASCII": "Vientiane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 27, "GN_POP": 196731, "ELEVATION": 0, "GTOPO30": 174, "TIMEZONE": "Asia/Vientiane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 310, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 21.033327, "numnum:min:LATITUDE": 17.966693, "numnum:sum:LATITUDE": 39.00002, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 105.850014, "numnum:min:LONGITUDE": 102.59998, "numnum:sum:LONGITUDE": 208.449994, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 4378000, "numnum:min:POP_MAX": 754000, "numnum:sum:POP_MAX": 5132000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1431270, "numnum:min:POP_MIN": 570348, "numnum:sum:POP_MIN": 2001618, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 5466347, "numnum:min:POP_OTHER": 469811, "numnum:sum:POP_OTHER": 5936158, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1651944, "numnum:min:GEONAMEID": 1581130, "numnum:sum:GEONAMEID": 3233074, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 5620806, "numnum:min:MAX_POP10": 471927, "numnum:sum:MAX_POP10": 6092733, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 7346227, "numnum:min:MAX_POP20": 471927, "numnum:sum:MAX_POP20": 7818154, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 16406759, "numnum:min:MAX_POP50": 570348, "numnum:sum:MAX_POP50": 16977107, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 23700631, "numnum:min:MAX_POP300": 570348, "numnum:sum:MAX_POP300": 24270979, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 2512, "numnum:min:MIN_AREAKM": 166, "numnum:sum:MIN_AREAKM": 2678, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 14049, "numnum:min:MAX_AREAKM": 243, "numnum:sum:MAX_AREAKM": 14292, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 970, "numnum:min:MIN_AREAMI": 64, "numnum:sum:MIN_AREAMI": 1034, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 5424, "numnum:min:MAX_AREAMI": 94, "numnum:sum:MAX_AREAMI": 5518, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 1175, "numnum:min:MIN_PERKM": 170, "numnum:sum:MIN_PERKM": 1345, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 10267, "numnum:min:MAX_PERKM": 283, "numnum:sum:MAX_PERKM": 10550, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 730, "numnum:min:MIN_PERMI": 106, "numnum:sum:MIN_PERMI": 836, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 6380, "numnum:min:MAX_PERMI": 176, "numnum:sum:MAX_PERMI": 6556, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 104.975, "numnum:min:MIN_BBXMIN": 102.491667, "numnum:sum:MIN_BBXMIN": 207.466667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 105.616287, "numnum:min:MAX_BBXMIN": 102.491667, "numnum:sum:MAX_BBXMIN": 208.107954, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 106.2294, "numnum:min:MIN_BBXMAX": 102.725, "numnum:sum:MIN_BBXMAX": 208.9544, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 106.808333, "numnum:min:MAX_BBXMAX": 102.816667, "numnum:sum:MAX_BBXMAX": 209.625, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 19.283333, "numnum:min:MIN_BBYMIN": 17.8, "numnum:sum:MIN_BBYMIN": 37.083332999999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 20.620237, "numnum:min:MAX_BBYMIN": 17.875, "numnum:sum:MAX_BBYMIN": 38.495237, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 21.319209, "numnum:min:MIN_BBYMAX": 18.083333, "numnum:sum:MIN_BBYMAX": 39.402542, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 21.783333, "numnum:min:MAX_BBYMAX": 18.083333, "numnum:sum:MAX_BBYMAX": 39.866665999999998, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 105.892881, "numnum:min:MEAN_BBXC": 102.648054, "numnum:sum:MEAN_BBXC": 208.540935, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 20.873406, "numnum:min:MEAN_BBYC": 17.967124, "numnum:sum:MEAN_BBYC": 38.84053, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 44, "numnum:min:ADMIN1_COD": 27, "numnum:sum:ADMIN1_COD": 71, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1431270, "numnum:min:GN_POP": 196731, "numnum:sum:GN_POP": 1628001, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 174, "numnum:min:GTOPO30": 26, "numnum:sum:GTOPO30": 200, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 451, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 451, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 21.03, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 21.03, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 105.82, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 105.82, "numnum:count:POP1950": 2, "numnum:max:POP1950": 280, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 280, "numnum:count:POP1955": 2, "numnum:max:POP1955": 425, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 425, "numnum:count:POP1960": 2, "numnum:max:POP1960": 644, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 644, "numnum:count:POP1965": 2, "numnum:max:POP1965": 917, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 917, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1307, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1307, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1884, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1884, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2606, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2606, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2854, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2854, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3126, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3126, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3424, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3424, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3752, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3752, "numnum:count:POP2005": 2, "numnum:max:POP2005": 4170, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4170, "numnum:count:POP2010": 2, "numnum:max:POP2010": 4378, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4378, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4723, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4723, "numnum:count:POP2020": 2, "numnum:max:POP2020": 5357, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5357, "numnum:count:POP2025": 2, "numnum:max:POP2025": 6036, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 6036, "numnum:count:POP2050": 2, "numnum:max:POP2050": 6754, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 6754, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 102.612305, 17.978733 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104, "accum2": 1, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 0, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 0, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 600, "numnum:sum:NATSCALE": 2400, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 1, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 2, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 4, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 39.928892, "numnum:min:LATITUDE": 1.293033, "numnum:sum:LATITUDE": 94.743358, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 121.436505, "numnum:min:LONGITUDE": 103.855821, "numnum:sum:LONGITUDE": 455.865621, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 14987000, "numnum:min:POP_MAX": 5183700, "numnum:sum:POP_MAX": 38482700, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 14608512, "numnum:min:POP_MIN": 3289529, "numnum:sum:POP_MIN": 29930221, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 16803572, "numnum:min:POP_OTHER": 3314179, "numnum:sum:POP_OTHER": 33700008, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 13, "numnum:sum:RANK_MAX": 54, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 51, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 1880252, "numnum:min:GEONAMEID": 1796236, "numnum:sum:GEONAMEID": 7312887, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 16172884, "numnum:min:MAX_POP10": 3289529, "numnum:sum:MAX_POP10": 34204853, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 16172884, "numnum:min:MAX_POP20": 4207001, "numnum:sum:MAX_POP20": 47279934, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 26630672, "numnum:min:MAX_POP50": 4207001, "numnum:sum:MAX_POP50": 64066429, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 26631586, "numnum:min:MAX_POP300": 4207001, "numnum:sum:MAX_POP300": 71204960, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 137121250, "numnum:min:MAX_POP310": 4207001, "numnum:sum:MAX_POP310": 224499749, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 300, "numnum:sum:MAX_NATSCA": 1200, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 3792, "numnum:min:MIN_AREAKM": 202, "numnum:sum:MIN_AREAKM": 6811, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 118844, "numnum:min:MAX_AREAKM": 456, "numnum:sum:MAX_AREAKM": 146361, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 1464, "numnum:min:MIN_AREAMI": 78, "numnum:sum:MIN_AREAMI": 2630, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 45886, "numnum:min:MAX_AREAMI": 176, "numnum:sum:MAX_AREAMI": 56510, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 2219, "numnum:min:MIN_PERKM": 173, "numnum:sum:MIN_PERKM": 4448, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 93615, "numnum:min:MAX_PERKM": 288, "numnum:sum:MAX_PERKM": 113738, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 1379, "numnum:min:MIN_PERMI": 108, "numnum:sum:MIN_PERMI": 2764, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 58169, "numnum:min:MAX_PERMI": 179, "numnum:sum:MAX_PERMI": 70673, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 119.016667, "numnum:min:MIN_BBXMIN": 103.633333, "numnum:sum:MIN_BBXMIN": 446.625, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 121.013757, "numnum:min:MAX_BBXMIN": 103.658333, "numnum:sum:MAX_BBXMIN": 454.713756, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 121.9, "numnum:min:MIN_BBXMAX": 104, "numnum:sum:MIN_BBXMAX": 457.40833299999999, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 121.9, "numnum:min:MAX_BBXMAX": 104, "numnum:sum:MAX_BBXMAX": 458, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 31.883333, "numnum:min:MIN_BBYMIN": 1.25, "numnum:sum:MIN_BBYMIN": 85.25, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 39.658333, "numnum:min:MAX_BBYMIN": 1.25, "numnum:sum:MAX_BBYMIN": 93.808333, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 40.433333, "numnum:min:MIN_BBYMAX": 1.425, "numnum:sum:MIN_BBYMAX": 95.908333, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 40.466667, "numnum:min:MAX_BBYMAX": 1.475, "numnum:sum:MAX_BBYMAX": 98.283333, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 121.053901, "numnum:min:MEAN_BBXC": 103.821508, "numnum:sum:MEAN_BBXC": 454.840125, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 38.837783, "numnum:min:MEAN_BBYC": 1.352586, "numnum:sum:MEAN_BBYC": 94.123263, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 23, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 45, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 14608512, "numnum:min:GN_POP": 3547809, "numnum:sum:GN_POP": 32649660, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 63, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9929, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 450, "numnum:min:UN_FID": 24, "numnum:sum:UN_FID": 782, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 39.9, "numnum:min:UN_LAT": 1.26, "numnum:sum:UN_LAT": 94.66999999999999, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 121.47, "numnum:min:UN_LONG": 103.83, "numnum:sum:UN_LONG": 455.85, "numnum:count:POP1950": 4, "numnum:max:POP1950": 6066, "numnum:min:POP1950": 1016, "numnum:sum:POP1950": 13095, "numnum:count:POP1955": 4, "numnum:max:POP1955": 6299, "numnum:min:POP1955": 1306, "numnum:sum:POP1955": 14354, "numnum:count:POP1960": 4, "numnum:max:POP1960": 6542, "numnum:min:POP1960": 1634, "numnum:sum:POP1960": 15741, "numnum:count:POP1965": 4, "numnum:max:POP1965": 6793, "numnum:min:POP1965": 1880, "numnum:sum:POP1965": 17148, "numnum:count:POP1970": 4, "numnum:max:POP1970": 7055, "numnum:min:POP1970": 2075, "numnum:sum:POP1970": 18234, "numnum:count:POP1975": 4, "numnum:max:POP1975": 7326, "numnum:min:POP1975": 2263, "numnum:sum:POP1975": 19566, "numnum:count:POP1980": 4, "numnum:max:POP1980": 7608, "numnum:min:POP1980": 2415, "numnum:sum:POP1980": 21080, "numnum:count:POP1985": 4, "numnum:max:POP1985": 7901, "numnum:min:POP1985": 2709, "numnum:sum:POP1985": 22570, "numnum:count:POP1990": 4, "numnum:max:POP1990": 8205, "numnum:min:POP1990": 3016, "numnum:sum:POP1990": 24260, "numnum:count:POP1995": 4, "numnum:max:POP1995": 10423, "numnum:min:POP1995": 3478, "numnum:sum:POP1995": 28593, "numnum:count:POP2000": 4, "numnum:max:POP2000": 13243, "numnum:min:POP2000": 4017, "numnum:sum:POP2000": 33704, "numnum:count:POP2005": 4, "numnum:max:POP2005": 14503, "numnum:min:POP2005": 4327, "numnum:sum:POP2005": 36604, "numnum:count:POP2010": 4, "numnum:max:POP2010": 14987, "numnum:min:POP2010": 4436, "numnum:sum:POP2010": 37735, "numnum:count:POP2015": 4, "numnum:max:POP2015": 15789, "numnum:min:POP2015": 4592, "numnum:sum:POP2015": 39541, "numnum:count:POP2020": 4, "numnum:max:POP2020": 17214, "numnum:min:POP2020": 4809, "numnum:sum:POP2020": 42609, "numnum:count:POP2025": 4, "numnum:max:POP2025": 18466, "numnum:min:POP2025": 4965, "numnum:sum:POP2025": 45278, "numnum:count:POP2050": 4, "numnum:max:POP2050": 19412, "numnum:min:POP2050": 5104, "numnum:sum:POP2050": 47366, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ 103.842773, 1.274309 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Phnom Penh", "NAMEALT": "Phnum Pénh", "DIFFASCII": 0, "NAMEASCII": "Phnom Penh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cambodia", "SOV_A3": "KHM", "ADM0NAME": "Cambodia", "ADM0_A3": "KHM", "ADM1NAME": "Phnom Penh", "ISO_A2": "KH", "LATITUDE": 11.55003, "LONGITUDE": 104.916634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1466000, "POP_MIN": 1466000, "POP_OTHER": 1604086, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1821306, "MEGANAME": "Phnum Pénh", "LS_NAME": "Phnom Penh", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1551977, "MAX_POP20": 1551977, "MAX_POP50": 1551977, "MAX_POP300": 1551977, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 464, "MAX_AREAKM": 464, "MIN_AREAMI": 179, "MAX_AREAMI": 179, "MIN_PERKM": 703, "MAX_PERKM": 703, "MIN_PERMI": 437, "MAX_PERMI": 437, "MIN_BBXMIN": 104.441667, "MAX_BBXMIN": 104.441667, "MIN_BBXMAX": 105, "MAX_BBXMAX": 105, "MIN_BBYMIN": 11.291667, "MAX_BBYMIN": 11.291667, "MIN_BBYMAX": 11.691667, "MAX_BBYMAX": 11.691667, "MEAN_BBXC": 104.78577, "MEAN_BBYC": 11.488418, "COMPARE": 0, "GN_ASCII": "Phnom Penh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1573544, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Phnom_Penh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 5, "UN_ADM0": "Cambodia", "UN_LAT": 11.56, "UN_LONG": 104.91, "POP1950": 364, "POP1955": 376, "POP1960": 389, "POP1965": 436, "POP1970": 900, "POP1975": 100, "POP1980": 238, "POP1985": 427, "POP1990": 615, "POP1995": 836, "POP2000": 1160, "POP2005": 1363, "POP2010": 1466, "POP2015": 1651, "POP2020": 2028, "POP2025": 2457, "POP2050": 2911, "CITYALT": "Phnom Penh", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 104.941406, 11.566144 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 800, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 17, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 39.019439, "numnum:min:LATITUDE": 25.035833, "numnum:sum:LATITUDE": 101.621621, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 126.999731, "numnum:min:LONGITUDE": 121.568333, "numnum:sum:LONGITUDE": 374.322755, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 6, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 9796000, "numnum:min:POP_MAX": 3300000, "numnum:sum:POP_MAX": 19996273, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 9796000, "numnum:min:POP_MIN": 2498797, "numnum:sum:POP_MIN": 14913569, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 12018058, "numnum:min:POP_OTHER": 2483216, "numnum:sum:POP_OTHER": 20199515, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 38, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 37, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1871859, "numnum:min:GEONAMEID": 1668341, "numnum:sum:GEONAMEID": 5376048, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 12322855, "numnum:min:MAX_POP10": 2498797, "numnum:sum:MAX_POP10": 20742394, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 13143622, "numnum:min:MAX_POP20": 2498797, "numnum:sum:MAX_POP20": 23918115, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 21387676, "numnum:min:MAX_POP50": 2498797, "numnum:sum:MAX_POP50": 32534256, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 21991959, "numnum:min:MAX_POP300": 2498797, "numnum:sum:MAX_POP300": 33703001, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 21991959, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 31204204, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 971, "numnum:min:MIN_AREAKM": 446, "numnum:sum:MIN_AREAKM": 1953, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 2718, "numnum:min:MAX_AREAKM": 447, "numnum:sum:MAX_AREAKM": 4873, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 375, "numnum:min:MIN_AREAMI": 172, "numnum:sum:MIN_AREAMI": 754, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 1049, "numnum:min:MAX_AREAMI": 173, "numnum:sum:MAX_AREAMI": 1882, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 546, "numnum:min:MIN_PERKM": 288, "numnum:sum:MIN_PERKM": 1344, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 1901, "numnum:min:MAX_PERKM": 511, "numnum:sum:MAX_PERKM": 3499, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 340, "numnum:min:MIN_PERMI": 179, "numnum:sum:MIN_PERMI": 836, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 1181, "numnum:min:MAX_PERMI": 318, "numnum:sum:MAX_PERMI": 2174, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 126.55, "numnum:min:MIN_BBXMIN": 120.741667, "numnum:sum:MIN_BBXMIN": 372.90000000000006, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 126.767185, "numnum:min:MAX_BBXMIN": 121.325, "numnum:sum:MAX_BBXMIN": 373.700518, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 127.266667, "numnum:min:MIN_BBXMAX": 121.622484, "numnum:sum:MIN_BBXMAX": 374.780818, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 127.325, "numnum:min:MAX_BBXMAX": 121.816667, "numnum:sum:MAX_BBXMAX": 375.03333399999999, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 38.825, "numnum:min:MIN_BBYMIN": 24.466667, "numnum:sum:MIN_BBYMIN": 100.041667, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 38.825, "numnum:min:MAX_BBYMIN": 24.9, "numnum:sum:MAX_BBYMIN": 101.137022, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 39.191667, "numnum:min:MIN_BBYMAX": 25.233333, "numnum:sum:MIN_BBYMAX": 102.216667, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 39.191667, "numnum:min:MAX_BBYMAX": 25.233333, "numnum:sum:MAX_BBYMAX": 102.3, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 126.971295, "numnum:min:MEAN_BBXC": 121.292375, "numnum:sum:MEAN_BBXC": 374.006098, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 38.996997, "numnum:min:MEAN_BBYC": 24.965116, "numnum:sum:MEAN_BBYC": 101.448038, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 12, "numnum:min:ADMIN1_COD": 3, "numnum:sum:ADMIN1_COD": 26, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 10349312, "numnum:min:GN_POP": 3222000, "numnum:sum:GN_POP": 21443212, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 46, "numnum:min:GTOPO30": 10, "numnum:sum:GTOPO30": 69, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 336, "numnum:min:UN_FID": 111, "numnum:sum:UN_FID": 774, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 39.02, "numnum:min:UN_LAT": 25.03, "numnum:sum:UN_LAT": 101.59, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 126.93, "numnum:min:UN_LONG": 121.5, "numnum:sum:UN_LONG": 374.18, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1021, "numnum:min:POP1950": 516, "numnum:sum:POP1950": 2141, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1553, "numnum:min:POP1955": 577, "numnum:sum:POP1955": 2890, "numnum:count:POP1960": 3, "numnum:max:POP1960": 2361, "numnum:min:POP1960": 646, "numnum:sum:POP1960": 3962, "numnum:count:POP1965": 3, "numnum:max:POP1965": 3452, "numnum:min:POP1965": 769, "numnum:sum:POP1965": 5451, "numnum:count:POP1970": 3, "numnum:max:POP1970": 5312, "numnum:min:POP1970": 987, "numnum:sum:POP1970": 8040, "numnum:count:POP1975": 3, "numnum:max:POP1975": 6808, "numnum:min:POP1975": 1348, "numnum:sum:POP1975": 10179, "numnum:count:POP1980": 3, "numnum:max:POP1980": 8258, "numnum:min:POP1980": 1842, "numnum:sum:POP1980": 12317, "numnum:count:POP1985": 3, "numnum:max:POP1985": 9547, "numnum:min:POP1985": 2195, "numnum:sum:POP1985": 14188, "numnum:count:POP1990": 3, "numnum:max:POP1990": 10544, "numnum:min:POP1990": 2526, "numnum:sum:POP1990": 15781, "numnum:count:POP1995": 3, "numnum:max:POP1995": 10256, "numnum:min:POP1995": 2676, "numnum:sum:POP1995": 15770, "numnum:count:POP2000": 3, "numnum:max:POP2000": 9917, "numnum:min:POP2000": 2640, "numnum:sum:POP2000": 15674, "numnum:count:POP2005": 3, "numnum:max:POP2005": 9825, "numnum:min:POP2005": 2606, "numnum:sum:POP2005": 15696, "numnum:count:POP2010": 3, "numnum:max:POP2010": 9796, "numnum:min:POP2010": 2603, "numnum:sum:POP2010": 15699, "numnum:count:POP2015": 3, "numnum:max:POP2015": 9762, "numnum:min:POP2015": 2651, "numnum:sum:POP2015": 15759, "numnum:count:POP2020": 3, "numnum:max:POP2020": 9740, "numnum:min:POP2020": 2862, "numnum:sum:POP2020": 16036, "numnum:count:POP2025": 3, "numnum:max:POP2025": 9738, "numnum:min:POP2025": 3104, "numnum:sum:POP2025": 16379, "numnum:count:POP2050": 3, "numnum:max:POP2050": 9738, "numnum:min:POP2050": 3305, "numnum:sum:POP2050": 16673, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.045792 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Putrajaya", "DIFFASCII": 0, "NAMEASCII": "Putrajaya", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 2.91402, "LONGITUDE": 101.701947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 67964, "POP_MIN": 50000, "POP_OTHER": 956431, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 6697380, "LS_NAME": "Putrajaya", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 955607, "MAX_POP20": 964830, "MAX_POP50": 1651113, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 486, "MAX_AREAKM": 805, "MIN_AREAMI": 188, "MAX_AREAMI": 311, "MIN_PERKM": 467, "MAX_PERKM": 737, "MIN_PERMI": 290, "MAX_PERMI": 458, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.575, "MIN_BBXMAX": 101.891667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 2.708333, "MIN_BBYMAX": 3.041194, "MAX_BBYMAX": 3.041194, "MEAN_BBXC": 101.716617, "MEAN_BBYC": 2.915909, "COMPARE": 0, "GN_ASCII": "Putrajaya", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 17, "GN_POP": 50000, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 2.899153 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104, "accum2": 1, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 1, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 2700, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 10, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 5, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 39.928892, "numnum:min:LATITUDE": 1.293033, "numnum:sum:LATITUDE": 119.779191, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 121.568333, "numnum:min:LONGITUDE": 103.855821, "numnum:sum:LONGITUDE": 577.433954, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 1, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 1, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 14987000, "numnum:min:POP_MAX": 5183700, "numnum:sum:POP_MAX": 45382973, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 14608512, "numnum:min:POP_MIN": 2618772, "numnum:sum:POP_MIN": 32548993, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 16803572, "numnum:min:POP_OTHER": 3314179, "numnum:sum:POP_OTHER": 39398249, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 13, "numnum:sum:RANK_MAX": 67, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 63, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 1880252, "numnum:min:GEONAMEID": 1668341, "numnum:sum:GEONAMEID": 8981228, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 16172884, "numnum:min:MAX_POP10": 3289529, "numnum:sum:MAX_POP10": 40125595, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 16172884, "numnum:min:MAX_POP20": 4207001, "numnum:sum:MAX_POP20": 55555630, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 26630672, "numnum:min:MAX_POP50": 4207001, "numnum:sum:MAX_POP50": 72714212, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 26631586, "numnum:min:MAX_POP300": 4207001, "numnum:sum:MAX_POP300": 80417205, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 137121250, "numnum:min:MAX_POP310": 4207001, "numnum:sum:MAX_POP310": 233711994, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 300, "numnum:sum:MAX_NATSCA": 1500, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 3792, "numnum:min:MIN_AREAKM": 202, "numnum:sum:MIN_AREAKM": 7347, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 118844, "numnum:min:MAX_AREAKM": 456, "numnum:sum:MAX_AREAKM": 148069, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 1464, "numnum:min:MIN_AREAMI": 78, "numnum:sum:MIN_AREAMI": 2837, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 45886, "numnum:min:MAX_AREAMI": 176, "numnum:sum:MAX_AREAMI": 57170, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 2219, "numnum:min:MIN_PERKM": 173, "numnum:sum:MIN_PERKM": 4736, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 93615, "numnum:min:MAX_PERKM": 288, "numnum:sum:MAX_PERKM": 114825, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 1379, "numnum:min:MIN_PERMI": 108, "numnum:sum:MIN_PERMI": 2943, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 58169, "numnum:min:MAX_PERMI": 179, "numnum:sum:MAX_PERMI": 71348, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 120.741667, "numnum:min:MIN_BBXMIN": 103.633333, "numnum:sum:MIN_BBXMIN": 567.366667, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 121.325, "numnum:min:MAX_BBXMIN": 103.658333, "numnum:sum:MAX_BBXMIN": 576.038756, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 121.9, "numnum:min:MIN_BBXMAX": 104, "numnum:sum:MIN_BBXMAX": 579.030817, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 121.9, "numnum:min:MAX_BBXMAX": 104, "numnum:sum:MAX_BBXMAX": 579.816667, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 31.883333, "numnum:min:MIN_BBYMIN": 1.25, "numnum:sum:MIN_BBYMIN": 109.716667, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 39.658333, "numnum:min:MAX_BBYMIN": 1.25, "numnum:sum:MAX_BBYMIN": 118.70833300000001, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 40.433333, "numnum:min:MIN_BBYMAX": 1.425, "numnum:sum:MIN_BBYMAX": 121.141666, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 40.466667, "numnum:min:MAX_BBYMAX": 1.475, "numnum:sum:MAX_BBYMAX": 123.516666, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 121.292375, "numnum:min:MEAN_BBXC": 103.821508, "numnum:sum:MEAN_BBXC": 576.1325, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 38.837783, "numnum:min:MEAN_BBYC": 1.352586, "numnum:sum:MEAN_BBYC": 119.08837899999999, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 23, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 48, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 14608512, "numnum:min:GN_POP": 3547809, "numnum:sum:GN_POP": 40521560, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 63, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9919, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 450, "numnum:min:UN_FID": 24, "numnum:sum:UN_FID": 893, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 39.9, "numnum:min:UN_LAT": 1.26, "numnum:sum:UN_LAT": 119.69999999999999, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 121.5, "numnum:min:UN_LONG": 103.83, "numnum:sum:UN_LONG": 577.35, "numnum:count:POP1950": 5, "numnum:max:POP1950": 6066, "numnum:min:POP1950": 604, "numnum:sum:POP1950": 13699, "numnum:count:POP1955": 5, "numnum:max:POP1955": 6299, "numnum:min:POP1955": 760, "numnum:sum:POP1955": 15114, "numnum:count:POP1960": 5, "numnum:max:POP1960": 6542, "numnum:min:POP1960": 955, "numnum:sum:POP1960": 16696, "numnum:count:POP1965": 5, "numnum:max:POP1965": 6793, "numnum:min:POP1965": 1230, "numnum:sum:POP1965": 18378, "numnum:count:POP1970": 5, "numnum:max:POP1970": 7055, "numnum:min:POP1970": 1741, "numnum:sum:POP1970": 19975, "numnum:count:POP1975": 5, "numnum:max:POP1975": 7326, "numnum:min:POP1975": 2023, "numnum:sum:POP1975": 21589, "numnum:count:POP1980": 5, "numnum:max:POP1980": 7608, "numnum:min:POP1980": 2217, "numnum:sum:POP1980": 23297, "numnum:count:POP1985": 5, "numnum:max:POP1985": 7901, "numnum:min:POP1985": 2446, "numnum:sum:POP1985": 25016, "numnum:count:POP1990": 5, "numnum:max:POP1990": 8205, "numnum:min:POP1990": 2711, "numnum:sum:POP1990": 26971, "numnum:count:POP1995": 5, "numnum:max:POP1995": 10423, "numnum:min:POP1995": 2676, "numnum:sum:POP1995": 31269, "numnum:count:POP2000": 5, "numnum:max:POP2000": 13243, "numnum:min:POP2000": 2640, "numnum:sum:POP2000": 36344, "numnum:count:POP2005": 5, "numnum:max:POP2005": 14503, "numnum:min:POP2005": 2606, "numnum:sum:POP2005": 39210, "numnum:count:POP2010": 5, "numnum:max:POP2010": 14987, "numnum:min:POP2010": 2603, "numnum:sum:POP2010": 40338, "numnum:count:POP2015": 5, "numnum:max:POP2015": 15789, "numnum:min:POP2015": 2651, "numnum:sum:POP2015": 42192, "numnum:count:POP2020": 5, "numnum:max:POP2020": 17214, "numnum:min:POP2020": 2862, "numnum:sum:POP2020": 45471, "numnum:count:POP2025": 5, "numnum:max:POP2025": 18466, "numnum:min:POP2025": 3104, "numnum:sum:POP2025": 48382, "numnum:count:POP2050": 5, "numnum:max:POP2050": 19412, "numnum:min:POP2050": 3305, "numnum:sum:POP2050": 50671, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ 103.842773, 1.274309 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797, "MAX_POP20": 2498797, "MAX_POP50": 2498797, "MAX_POP300": 2498797, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 446, "MAX_AREAKM": 447, "MIN_AREAMI": 172, "MAX_AREAMI": 173, "MIN_PERKM": 510, "MAX_PERKM": 511, "MIN_PERMI": 317, "MAX_PERMI": 318, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 3222000, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516, "POP1955": 577, "POP1960": 646, "POP1965": 769, "POP1970": 987, "POP1975": 1348, "POP1980": 1842, "POP1985": 2195, "POP1990": 2526, "POP1995": 2838, "POP2000": 3117, "POP2005": 3265, "POP2010": 3300, "POP2015": 3346, "POP2020": 3434, "POP2025": 3537, "POP2050": 3630, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 500, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 39.019439, "numnum:min:LATITUDE": 37.566349, "numnum:sum:LATITUDE": 76.58578800000001, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 126.999731, "numnum:min:LONGITUDE": 125.754691, "numnum:sum:LONGITUDE": 252.75442199999999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 9796000, "numnum:min:POP_MAX": 3300000, "numnum:sum:POP_MAX": 13096000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 9796000, "numnum:min:POP_MIN": 2498797, "numnum:sum:POP_MIN": 12294797, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 12018058, "numnum:min:POP_OTHER": 2483216, "numnum:sum:POP_OTHER": 14501274, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 25, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1871859, "numnum:min:GEONAMEID": 1835848, "numnum:sum:GEONAMEID": 3707707, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 12322855, "numnum:min:MAX_POP10": 2498797, "numnum:sum:MAX_POP10": 14821652, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 13143622, "numnum:min:MAX_POP20": 2498797, "numnum:sum:MAX_POP20": 15642419, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 21387676, "numnum:min:MAX_POP50": 2498797, "numnum:sum:MAX_POP50": 23886473, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 21991959, "numnum:min:MAX_POP300": 2498797, "numnum:sum:MAX_POP300": 24490756, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 21991959, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 21991959, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 971, "numnum:min:MIN_AREAKM": 446, "numnum:sum:MIN_AREAKM": 1417, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2718, "numnum:min:MAX_AREAKM": 447, "numnum:sum:MAX_AREAKM": 3165, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 375, "numnum:min:MIN_AREAMI": 172, "numnum:sum:MIN_AREAMI": 547, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1049, "numnum:min:MAX_AREAMI": 173, "numnum:sum:MAX_AREAMI": 1222, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 546, "numnum:min:MIN_PERKM": 510, "numnum:sum:MIN_PERKM": 1056, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1901, "numnum:min:MAX_PERKM": 511, "numnum:sum:MAX_PERKM": 2412, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 340, "numnum:min:MIN_PERMI": 317, "numnum:sum:MIN_PERMI": 657, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1181, "numnum:min:MAX_PERMI": 318, "numnum:sum:MAX_PERMI": 1499, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 126.55, "numnum:min:MIN_BBXMIN": 125.608333, "numnum:sum:MIN_BBXMIN": 252.158333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 126.767185, "numnum:min:MAX_BBXMIN": 125.608333, "numnum:sum:MAX_BBXMIN": 252.375518, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 127.266667, "numnum:min:MIN_BBXMAX": 125.891667, "numnum:sum:MIN_BBXMAX": 253.158334, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 127.325, "numnum:min:MAX_BBXMAX": 125.891667, "numnum:sum:MAX_BBXMAX": 253.216667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 38.825, "numnum:min:MIN_BBYMIN": 36.75, "numnum:sum:MIN_BBYMIN": 75.575, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 38.825, "numnum:min:MAX_BBYMIN": 37.412022, "numnum:sum:MAX_BBYMIN": 76.237022, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 39.191667, "numnum:min:MIN_BBYMAX": 37.791667, "numnum:sum:MIN_BBYMAX": 76.983334, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 39.191667, "numnum:min:MAX_BBYMAX": 37.875, "numnum:sum:MAX_BBYMAX": 77.066667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 126.971295, "numnum:min:MEAN_BBXC": 125.742428, "numnum:sum:MEAN_BBXC": 252.71372300000003, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 38.996997, "numnum:min:MEAN_BBYC": 37.485925, "numnum:sum:MEAN_BBYC": 76.482922, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 12, "numnum:min:ADMIN1_COD": 11, "numnum:sum:ADMIN1_COD": 23, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 10349312, "numnum:min:GN_POP": 3222000, "numnum:sum:GN_POP": 13571312, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 46, "numnum:min:GTOPO30": 13, "numnum:sum:GTOPO30": 59, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 336, "numnum:min:UN_FID": 327, "numnum:sum:UN_FID": 663, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 39.02, "numnum:min:UN_LAT": 37.54, "numnum:sum:UN_LAT": 76.56, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 126.93, "numnum:min:UN_LONG": 125.75, "numnum:sum:UN_LONG": 252.68, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1021, "numnum:min:POP1950": 516, "numnum:sum:POP1950": 1537, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1553, "numnum:min:POP1955": 577, "numnum:sum:POP1955": 2130, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2361, "numnum:min:POP1960": 646, "numnum:sum:POP1960": 3007, "numnum:count:POP1965": 2, "numnum:max:POP1965": 3452, "numnum:min:POP1965": 769, "numnum:sum:POP1965": 4221, "numnum:count:POP1970": 2, "numnum:max:POP1970": 5312, "numnum:min:POP1970": 987, "numnum:sum:POP1970": 6299, "numnum:count:POP1975": 2, "numnum:max:POP1975": 6808, "numnum:min:POP1975": 1348, "numnum:sum:POP1975": 8156, "numnum:count:POP1980": 2, "numnum:max:POP1980": 8258, "numnum:min:POP1980": 1842, "numnum:sum:POP1980": 10100, "numnum:count:POP1985": 2, "numnum:max:POP1985": 9547, "numnum:min:POP1985": 2195, "numnum:sum:POP1985": 11742, "numnum:count:POP1990": 2, "numnum:max:POP1990": 10544, "numnum:min:POP1990": 2526, "numnum:sum:POP1990": 13070, "numnum:count:POP1995": 2, "numnum:max:POP1995": 10256, "numnum:min:POP1995": 2838, "numnum:sum:POP1995": 13094, "numnum:count:POP2000": 2, "numnum:max:POP2000": 9917, "numnum:min:POP2000": 3117, "numnum:sum:POP2000": 13034, "numnum:count:POP2005": 2, "numnum:max:POP2005": 9825, "numnum:min:POP2005": 3265, "numnum:sum:POP2005": 13090, "numnum:count:POP2010": 2, "numnum:max:POP2010": 9796, "numnum:min:POP2010": 3300, "numnum:sum:POP2010": 13096, "numnum:count:POP2015": 2, "numnum:max:POP2015": 9762, "numnum:min:POP2015": 3346, "numnum:sum:POP2015": 13108, "numnum:count:POP2020": 2, "numnum:max:POP2020": 9740, "numnum:min:POP2020": 3434, "numnum:sum:POP2020": 13174, "numnum:count:POP2025": 2, "numnum:max:POP2025": 9738, "numnum:min:POP2025": 3537, "numnum:sum:POP2025": 13275, "numnum:count:POP2050": 2, "numnum:max:POP2050": 9738, "numnum:min:POP2050": 3630, "numnum:sum:POP2050": 13368, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ 125.771484, 39.027719 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Baguio City", "DIFFASCII": 0, "NAMEASCII": "Baguio City", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Benguet", "ISO_A2": "PH", "LATITUDE": 16.429991, "LONGITUDE": 120.569943, "CHANGED": 40, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 447824, "POP_MIN": 272714, "POP_OTHER": 164877, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1728930, "LS_NAME": "Baguio City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 447824, "MAX_POP20": 447824, "MAX_POP50": 447824, "MAX_POP300": 447824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 120.541667, "MAX_BBXMIN": 120.541667, "MIN_BBXMAX": 120.65, "MAX_BBXMAX": 120.65, "MIN_BBYMIN": 16.358333, "MAX_BBYMIN": 16.358333, "MIN_BBYMAX": 16.483333, "MAX_BBYMAX": 16.483333, "MEAN_BBXC": 120.598765, "MEAN_BBYC": 16.421065, "COMPARE": 0, "GN_ASCII": "Baguio", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 272714, "ELEVATION": 0, "GTOPO30": 1448, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 120.585938, 16.425548 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Baguio City", "DIFFASCII": 0, "NAMEASCII": "Baguio City", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Benguet", "ISO_A2": "PH", "LATITUDE": 16.429991, "LONGITUDE": 120.569943, "CHANGED": 40, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 447824, "POP_MIN": 272714, "POP_OTHER": 164877, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1728930, "LS_NAME": "Baguio City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 447824, "MAX_POP20": 447824, "MAX_POP50": 447824, "MAX_POP300": 447824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 120.541667, "MAX_BBXMIN": 120.541667, "MIN_BBXMAX": 120.65, "MAX_BBXMAX": 120.65, "MIN_BBYMIN": 16.358333, "MAX_BBYMIN": 16.358333, "MIN_BBYMAX": 16.483333, "MAX_BBYMAX": 16.483333, "MEAN_BBXC": 120.598765, "MEAN_BBYC": 16.421065, "COMPARE": 0, "GN_ASCII": "Baguio", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 272714, "ELEVATION": 0, "GTOPO30": 1448, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 120.585938, 16.425548 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, de fa", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575, "MAX_POP20": 3077575, "MAX_POP50": 3077575, "MAX_POP300": 23366503, "MAX_POP310": 26749011, "MAX_NATSCA": 300, "MIN_AREAKM": 67, "MAX_AREAKM": 8820, "MIN_AREAMI": 26, "MAX_AREAMI": 3405, "MIN_PERKM": 46, "MAX_PERKM": 5298, "MIN_PERMI": 29, "MAX_PERMI": 3292, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 10444527, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544, "POP1955": 1872, "POP1960": 2274, "POP1965": 2829, "POP1970": 3534, "POP1975": 4999, "POP1980": 5955, "POP1985": 6888, "POP1990": 7973, "POP1995": 9401, "POP2000": 9958, "POP2005": 10761, "POP2010": 11100, "POP2015": 11662, "POP2020": 12786, "POP2025": 13892, "POP2050": 14808, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 440, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 14.604159, "numnum:min:LATITUDE": 4.883331, "numnum:sum:LATITUDE": 26.974886, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 134.626548, "numnum:min:LONGITUDE": 114.933284, "numnum:sum:LONGITUDE": 370.542049, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 11100000, "numnum:min:POP_MAX": 7026, "numnum:sum:POP_MAX": 11403526, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 3077575, "numnum:min:POP_MIN": 7026, "numnum:sum:POP_MIN": 3224601, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2381280, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 2603793, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 5, "numnum:sum:RANK_MAX": 29, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 26, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1820906, "numnum:min:GEONAMEID": 1559804, "numnum:sum:GEONAMEID": 5082378, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3077575, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 3297249, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3077575, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 3297249, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3077575, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 3297249, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 23366503, "numnum:min:MAX_POP300": 7026, "numnum:sum:MAX_POP300": 23593203, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 26749011, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 26749011, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 145, "numnum:min:MIN_AREAKM": 6, "numnum:sum:MIN_AREAKM": 218, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 8820, "numnum:min:MAX_AREAKM": 6, "numnum:sum:MAX_AREAKM": 8971, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 56, "numnum:min:MIN_AREAMI": 2, "numnum:sum:MIN_AREAMI": 84, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 3405, "numnum:min:MAX_AREAMI": 2, "numnum:sum:MAX_AREAMI": 3463, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 155, "numnum:min:MIN_PERKM": 15, "numnum:sum:MIN_PERKM": 216, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 5298, "numnum:min:MAX_PERKM": 15, "numnum:sum:MAX_PERKM": 5468, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 96, "numnum:min:MIN_PERMI": 9, "numnum:sum:MIN_PERMI": 134, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 3292, "numnum:min:MAX_PERMI": 9, "numnum:sum:MAX_PERMI": 3397, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 134.466667, "numnum:min:MIN_BBXMIN": 114.825, "numnum:sum:MIN_BBXMIN": 369.433334, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 134.466667, "numnum:min:MAX_BBXMIN": 114.825, "numnum:sum:MAX_BBXMIN": 370.21666700000005, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 134.5, "numnum:min:MIN_BBXMAX": 114.991667, "numnum:sum:MIN_BBXMAX": 370.53065200000006, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 134.5, "numnum:min:MAX_BBXMAX": 114.991667, "numnum:sum:MAX_BBXMAX": 370.825, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 14.016667, "numnum:min:MIN_BBYMIN": 4.816667, "numnum:sum:MIN_BBYMIN": 26.158334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 14.571814, "numnum:min:MAX_BBYMIN": 4.816667, "numnum:sum:MAX_BBYMIN": 26.713480999999999, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 14.702876, "numnum:min:MIN_BBYMAX": 5.008333, "numnum:sum:MIN_BBYMAX": 27.061208999999999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 16.416667, "numnum:min:MAX_BBYMAX": 5.008333, "numnum:sum:MAX_BBYMAX": 28.775, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 134.481548, "numnum:min:MEAN_BBXC": 114.908824, "numnum:sum:MEAN_BBXC": 370.30541600000006, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 14.823118, "numnum:min:MEAN_BBYC": 4.910245, "numnum:sum:MEAN_BBYC": 27.073243999999997, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 0, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 0, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 10444527, "numnum:min:GN_POP": 217, "numnum:sum:GN_POP": 10509153, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 4, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 6, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 414, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 414, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 14.61, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 14.61, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 120.96, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 120.96, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1544, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1544, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1872, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1872, "numnum:count:POP1960": 3, "numnum:max:POP1960": 2274, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2274, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2829, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2829, "numnum:count:POP1970": 3, "numnum:max:POP1970": 3534, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3534, "numnum:count:POP1975": 3, "numnum:max:POP1975": 4999, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4999, "numnum:count:POP1980": 3, "numnum:max:POP1980": 5955, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5955, "numnum:count:POP1985": 3, "numnum:max:POP1985": 6888, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 6888, "numnum:count:POP1990": 3, "numnum:max:POP1990": 7973, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 7973, "numnum:count:POP1995": 3, "numnum:max:POP1995": 9401, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9401, "numnum:count:POP2000": 3, "numnum:max:POP2000": 9958, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 9958, "numnum:count:POP2005": 3, "numnum:max:POP2005": 10761, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 10761, "numnum:count:POP2010": 3, "numnum:max:POP2010": 11100, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 11100, "numnum:count:POP2015": 3, "numnum:max:POP2015": 11662, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 11662, "numnum:count:POP2020": 3, "numnum:max:POP2020": 12786, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 12786, "numnum:count:POP2025": 3, "numnum:max:POP2025": 13892, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 13892, "numnum:count:POP2050": 3, "numnum:max:POP2050": 14808, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 14808, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, de fa", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575, "MAX_POP20": 3077575, "MAX_POP50": 3077575, "MAX_POP300": 23366503, "MAX_POP310": 26749011, "MAX_NATSCA": 300, "MIN_AREAKM": 67, "MAX_AREAKM": 8820, "MIN_AREAMI": 26, "MAX_AREAMI": 3405, "MIN_PERKM": 46, "MAX_PERKM": 5298, "MIN_PERMI": 29, "MAX_PERMI": 3292, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 10444527, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544, "POP1955": 1872, "POP1960": 2274, "POP1965": 2829, "POP1970": 3534, "POP1975": 4999, "POP1980": 5955, "POP1985": 6888, "POP1990": 7973, "POP1995": 9401, "POP2000": 9958, "POP2005": 10761, "POP2010": 11100, "POP2015": 11662, "POP2020": 12786, "POP2025": 13892, "POP2050": 14808, "accum2": 1, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 15, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 790, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 17, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 35.029992, "numnum:min:LATITUDE": 4.883331, "numnum:sum:LATITUDE": 96.75491299999999, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 135.749998, "numnum:min:LONGITUDE": 114.933284, "numnum:sum:LONGITUDE": 641.752192, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 11294000, "numnum:min:POP_MAX": 7026, "numnum:sum:POP_MAX": 24502526, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 3077575, "numnum:min:POP_MIN": 7026, "numnum:sum:POP_MIN": 7276654, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 9630783, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 14061943, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 5, "numnum:sum:RANK_MAX": 55, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 50, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 1857910, "numnum:min:GEONAMEID": 1559804, "numnum:sum:GEONAMEID": 8794197, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 10169723, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 15413024, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 10259448, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 16077510, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 13292739, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 19110801, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 23366503, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 39238843, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 26749011, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 42394651, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 850, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 1561, "numnum:min:MIN_AREAKM": 6, "numnum:sum:MIN_AREAKM": 2119, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 8820, "numnum:min:MAX_AREAKM": 6, "numnum:sum:MAX_AREAKM": 12318, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 603, "numnum:min:MIN_AREAMI": 2, "numnum:sum:MIN_AREAMI": 818, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 3405, "numnum:min:MAX_AREAMI": 2, "numnum:sum:MAX_AREAMI": 4756, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 546, "numnum:min:MIN_PERKM": 15, "numnum:sum:MIN_PERKM": 892, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 5298, "numnum:min:MAX_PERKM": 15, "numnum:sum:MAX_PERKM": 6888, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 339, "numnum:min:MIN_PERMI": 9, "numnum:sum:MIN_PERMI": 554, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 3292, "numnum:min:MAX_PERMI": 9, "numnum:sum:MAX_PERMI": 4279, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 135.611529, "numnum:min:MIN_BBXMIN": 114.825, "numnum:sum:MIN_BBXMIN": 639.553196, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 135.611529, "numnum:min:MAX_BBXMIN": 114.825, "numnum:sum:MAX_BBXMIN": 641.132794, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 135.883333, "numnum:min:MIN_BBXMAX": 114.991667, "numnum:sum:MIN_BBXMAX": 642.2223180000001, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 135.883333, "numnum:min:MAX_BBXMAX": 114.991667, "numnum:sum:MAX_BBXMAX": 642.5666659999999, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 34.64506, "numnum:min:MIN_BBYMIN": 4.816667, "numnum:sum:MIN_BBYMIN": 95.128394, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 34.783333, "numnum:min:MAX_BBYMIN": 4.816667, "numnum:sum:MAX_BBYMIN": 95.905147, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 35.1, "numnum:min:MIN_BBYMAX": 5.008333, "numnum:sum:MIN_BBYMAX": 97.077876, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 35.1, "numnum:min:MAX_BBYMAX": 5.008333, "numnum:sum:MAX_BBYMAX": 98.975, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 135.743212, "numnum:min:MEAN_BBXC": 114.908824, "numnum:sum:MEAN_BBXC": 641.524043, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 34.913171, "numnum:min:MEAN_BBYC": 4.910245, "numnum:sum:MEAN_BBYC": 96.66313399999999, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 32, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 54, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 10444527, "numnum:min:GN_POP": 217, "numnum:sum:GN_POP": 14561206, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 86, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 96, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 414, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1042, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 35, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 84.24000000000001, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 135.75, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 392.21999999999999, "numnum:count:POP1950": 5, "numnum:max:POP1950": 4147, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 6693, "numnum:count:POP1955": 5, "numnum:max:POP1955": 5120, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 8083, "numnum:count:POP1960": 5, "numnum:max:POP1960": 6227, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 9666, "numnum:count:POP1965": 5, "numnum:max:POP1965": 7654, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 11712, "numnum:count:POP1970": 5, "numnum:max:POP1970": 9408, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 14240, "numnum:count:POP1975": 5, "numnum:max:POP1975": 9844, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 16465, "numnum:count:POP1980": 5, "numnum:max:POP1980": 9990, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 17646, "numnum:count:POP1985": 5, "numnum:max:POP1985": 10350, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 18952, "numnum:count:POP1990": 5, "numnum:max:POP1990": 11035, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 20768, "numnum:count:POP1995": 5, "numnum:max:POP1995": 11052, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 22257, "numnum:count:POP2000": 5, "numnum:max:POP2000": 11165, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 22929, "numnum:count:POP2005": 5, "numnum:max:POP2005": 11258, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 23824, "numnum:count:POP2010": 5, "numnum:max:POP2010": 11294, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 24199, "numnum:count:POP2015": 5, "numnum:max:POP2015": 11662, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 24803, "numnum:count:POP2020": 5, "numnum:max:POP2020": 12786, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 25955, "numnum:count:POP2025": 5, "numnum:max:POP2025": 13892, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 27064, "numnum:count:POP2050": 5, "numnum:max:POP2050": 14808, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 27980, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 350, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 2, "numnum:sum:LABELRANK": 4, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 35.029992, "numnum:min:LATITUDE": 34.750035, "numnum:sum:LATITUDE": 69.78002699999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 135.749998, "numnum:min:LONGITUDE": 135.460145, "numnum:sum:LONGITUDE": 271.210143, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 11294000, "numnum:min:POP_MAX": 1805000, "numnum:sum:POP_MAX": 13099000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2592413, "numnum:min:POP_MIN": 1459640, "numnum:sum:POP_MIN": 4052053, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 9630783, "numnum:min:POP_OTHER": 1827367, "numnum:sum:POP_OTHER": 11458150, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1857910, "numnum:min:GEONAMEID": 1853909, "numnum:sum:GEONAMEID": 3711819, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 10169723, "numnum:min:MAX_POP10": 1946052, "numnum:sum:MAX_POP10": 12115775, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 10259448, "numnum:min:MAX_POP20": 2520813, "numnum:sum:MAX_POP20": 12780261, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 13292739, "numnum:min:MAX_POP50": 2520813, "numnum:sum:MAX_POP50": 15813552, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 15645640, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 15645640, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 15645640, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 15645640, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1561, "numnum:min:MIN_AREAKM": 340, "numnum:sum:MIN_AREAKM": 1901, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2861, "numnum:min:MAX_AREAKM": 486, "numnum:sum:MAX_AREAKM": 3347, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 603, "numnum:min:MIN_AREAMI": 131, "numnum:sum:MIN_AREAMI": 734, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1105, "numnum:min:MAX_AREAMI": 188, "numnum:sum:MAX_AREAMI": 1293, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 546, "numnum:min:MIN_PERKM": 130, "numnum:sum:MIN_PERKM": 676, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1202, "numnum:min:MAX_PERKM": 218, "numnum:sum:MAX_PERKM": 1420, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 339, "numnum:min:MIN_PERMI": 81, "numnum:sum:MIN_PERMI": 420, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 747, "numnum:min:MAX_PERMI": 135, "numnum:sum:MAX_PERMI": 882, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 135.611529, "numnum:min:MIN_BBXMIN": 134.508333, "numnum:sum:MIN_BBXMIN": 270.119862, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 135.611529, "numnum:min:MAX_BBXMIN": 135.304598, "numnum:sum:MAX_BBXMIN": 270.91612699999998, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 135.883333, "numnum:min:MIN_BBXMAX": 135.808333, "numnum:sum:MIN_BBXMAX": 271.691666, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 135.883333, "numnum:min:MAX_BBXMAX": 135.858333, "numnum:sum:MAX_BBXMAX": 271.741666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 34.64506, "numnum:min:MIN_BBYMIN": 34.325, "numnum:sum:MIN_BBYMIN": 68.97006, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 34.783333, "numnum:min:MAX_BBYMIN": 34.408333, "numnum:sum:MAX_BBYMIN": 69.191666, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 35.1, "numnum:min:MIN_BBYMAX": 34.916667, "numnum:sum:MIN_BBYMAX": 70.016667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 35.1, "numnum:min:MAX_BBYMAX": 35.1, "numnum:sum:MAX_BBYMAX": 70.2, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 135.743212, "numnum:min:MEAN_BBXC": 135.475415, "numnum:sum:MEAN_BBXC": 271.21862699999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 34.913171, "numnum:min:MEAN_BBYC": 34.676719, "numnum:sum:MEAN_BBYC": 69.58989, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 32, "numnum:min:ADMIN1_COD": 22, "numnum:sum:ADMIN1_COD": 54, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2592413, "numnum:min:GN_POP": 1459640, "numnum:sum:GN_POP": 4052053, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 86, "numnum:min:GTOPO30": 4, "numnum:sum:GTOPO30": 90, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 315, "numnum:min:UN_FID": 313, "numnum:sum:UN_FID": 628, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 35, "numnum:min:UN_LAT": 34.63, "numnum:sum:UN_LAT": 69.63, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 135.75, "numnum:min:UN_LONG": 135.51, "numnum:sum:UN_LONG": 271.26, "numnum:count:POP1950": 2, "numnum:max:POP1950": 4147, "numnum:min:POP1950": 1002, "numnum:sum:POP1950": 5149, "numnum:count:POP1955": 2, "numnum:max:POP1955": 5120, "numnum:min:POP1955": 1091, "numnum:sum:POP1955": 6211, "numnum:count:POP1960": 2, "numnum:max:POP1960": 6227, "numnum:min:POP1960": 1165, "numnum:sum:POP1960": 7392, "numnum:count:POP1965": 2, "numnum:max:POP1965": 7654, "numnum:min:POP1965": 1229, "numnum:sum:POP1965": 8883, "numnum:count:POP1970": 2, "numnum:max:POP1970": 9408, "numnum:min:POP1970": 1298, "numnum:sum:POP1970": 10706, "numnum:count:POP1975": 2, "numnum:max:POP1975": 9844, "numnum:min:POP1975": 1622, "numnum:sum:POP1975": 11466, "numnum:count:POP1980": 2, "numnum:max:POP1980": 9990, "numnum:min:POP1980": 1701, "numnum:sum:POP1980": 11691, "numnum:count:POP1985": 2, "numnum:max:POP1985": 10350, "numnum:min:POP1985": 1714, "numnum:sum:POP1985": 12064, "numnum:count:POP1990": 2, "numnum:max:POP1990": 11035, "numnum:min:POP1990": 1760, "numnum:sum:POP1990": 12795, "numnum:count:POP1995": 2, "numnum:max:POP1995": 11052, "numnum:min:POP1995": 1804, "numnum:sum:POP1995": 12856, "numnum:count:POP2000": 2, "numnum:max:POP2000": 11165, "numnum:min:POP2000": 1806, "numnum:sum:POP2000": 12971, "numnum:count:POP2005": 2, "numnum:max:POP2005": 11258, "numnum:min:POP2005": 1805, "numnum:sum:POP2005": 13063, "numnum:count:POP2010": 2, "numnum:max:POP2010": 11294, "numnum:min:POP2010": 1805, "numnum:sum:POP2010": 13099, "numnum:count:POP2015": 2, "numnum:max:POP2015": 11337, "numnum:min:POP2015": 1804, "numnum:sum:POP2015": 13141, "numnum:count:POP2020": 2, "numnum:max:POP2020": 11365, "numnum:min:POP2020": 1804, "numnum:sum:POP2020": 13169, "numnum:count:POP2025": 2, "numnum:max:POP2025": 11368, "numnum:min:POP2025": 1804, "numnum:sum:POP2025": 13172, "numnum:count:POP2050": 2, "numnum:max:POP2050": 11368, "numnum:min:POP2050": 1804, "numnum:sum:POP2050": 13172, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ 135.483398, 34.741612 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 630, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 2, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 35.685017, "numnum:min:LATITUDE": 6.916644, "numnum:sum:LATITUDE": 42.601661, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 158.149974, "numnum:min:LONGITUDE": 139.751407, "numnum:sum:LONGITUDE": 297.901381, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 35676000, "numnum:min:POP_MAX": 4645, "numnum:sum:POP_MAX": 35680645, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 8336599, "numnum:min:POP_MIN": 4645, "numnum:sum:POP_MIN": 8341244, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 12945252, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 12945252, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 4, "numnum:sum:RANK_MAX": 18, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 17, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2081986, "numnum:min:GEONAMEID": 1850147, "numnum:sum:GEONAMEID": 3932133, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 13762740, "numnum:min:MAX_POP10": 412, "numnum:sum:MAX_POP10": 13763152, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 24218878, "numnum:min:MAX_POP20": 412, "numnum:sum:MAX_POP20": 24219290, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 31303497, "numnum:min:MAX_POP50": 412, "numnum:sum:MAX_POP50": 31303909, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 31303497, "numnum:min:MAX_POP300": 412, "numnum:sum:MAX_POP300": 31303909, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 31303497, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 31303497, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 2130, "numnum:min:MIN_AREAKM": 1, "numnum:sum:MIN_AREAKM": 2131, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 5750, "numnum:min:MAX_AREAKM": 1, "numnum:sum:MAX_AREAKM": 5751, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 823, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 823, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 2220, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 2220, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 838, "numnum:min:MIN_PERKM": 4, "numnum:sum:MIN_PERKM": 842, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 2284, "numnum:min:MAX_PERKM": 4, "numnum:sum:MAX_PERKM": 2288, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 521, "numnum:min:MIN_PERMI": 2, "numnum:sum:MIN_PERMI": 523, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1419, "numnum:min:MAX_PERMI": 2, "numnum:sum:MAX_PERMI": 1421, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 158.158333, "numnum:min:MIN_BBXMIN": 139.166667, "numnum:sum:MIN_BBXMIN": 297.325, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 158.158333, "numnum:min:MAX_BBXMIN": 139.536465, "numnum:sum:MAX_BBXMIN": 297.694798, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 158.166667, "numnum:min:MIN_BBXMAX": 140.433333, "numnum:sum:MIN_BBXMAX": 298.6, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 158.166667, "numnum:min:MAX_BBXMAX": 140.433333, "numnum:sum:MAX_BBXMAX": 298.6, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 35.175, "numnum:min:MIN_BBYMIN": 6.908333, "numnum:sum:MIN_BBYMIN": 42.083332999999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 35.486247, "numnum:min:MAX_BBYMIN": 6.908333, "numnum:sum:MAX_BBYMIN": 42.39458, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 36.05, "numnum:min:MIN_BBYMAX": 6.916667, "numnum:sum:MIN_BBYMAX": 42.966667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 36.241667, "numnum:min:MAX_BBYMAX": 6.916667, "numnum:sum:MAX_BBYMAX": 43.158333999999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 158.1625, "numnum:min:MEAN_BBXC": 139.75102, "numnum:sum:MEAN_BBXC": 297.91352, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 35.743469, "numnum:min:MEAN_BBYC": 6.9125, "numnum:sum:MEAN_BBYC": 42.655969, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 40, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 42, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 8336599, "numnum:min:GN_POP": 4645, "numnum:sum:GN_POP": 8341244, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 159, "numnum:min:GTOPO30": 40, "numnum:sum:GTOPO30": 199, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 318, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 318, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 35.68, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 35.68, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 139.8, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 139.8, "numnum:count:POP1950": 2, "numnum:max:POP1950": 11275, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 11275, "numnum:count:POP1955": 2, "numnum:max:POP1955": 13713, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 13713, "numnum:count:POP1960": 2, "numnum:max:POP1960": 16679, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 16679, "numnum:count:POP1965": 2, "numnum:max:POP1965": 20284, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 20284, "numnum:count:POP1970": 2, "numnum:max:POP1970": 23298, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 23298, "numnum:count:POP1975": 2, "numnum:max:POP1975": 26615, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 26615, "numnum:count:POP1980": 2, "numnum:max:POP1980": 28549, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 28549, "numnum:count:POP1985": 2, "numnum:max:POP1985": 30304, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 30304, "numnum:count:POP1990": 2, "numnum:max:POP1990": 32530, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 32530, "numnum:count:POP1995": 2, "numnum:max:POP1995": 33587, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 33587, "numnum:count:POP2000": 2, "numnum:max:POP2000": 34450, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 34450, "numnum:count:POP2005": 2, "numnum:max:POP2005": 35327, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 35327, "numnum:count:POP2010": 2, "numnum:max:POP2010": 35676, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 35676, "numnum:count:POP2015": 2, "numnum:max:POP2015": 36094, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 36094, "numnum:count:POP2020": 2, "numnum:max:POP2020": 36371, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 36371, "numnum:count:POP2025": 2, "numnum:max:POP2025": 36399, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 36399, "numnum:count:POP2050": 2, "numnum:max:POP2050": 36400, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 36400, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ISO_A2": "MH", "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084, "MAX_POP20": 2084, "MAX_POP50": 2084, "MAX_POP300": 2084, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 20500, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 6, "numnum:sum:SCALERANK": 12, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 30, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 60, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 0, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 0, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 7.103004, "numnum:min:LATITUDE": 1.338188, "numnum:sum:LATITUDE": 8.441192000000001, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 173.017571, "numnum:min:LONGITUDE": 171.38, "numnum:sum:LONGITUDE": 344.39757099999999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 28802, "numnum:min:POP_MAX": 25400, "numnum:sum:POP_MAX": 54202, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 22534, "numnum:min:POP_MIN": 20500, "numnum:sum:POP_MIN": 43034, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 0, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 0, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 7, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 14, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 7, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 14, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2113779, "numnum:min:GEONAMEID": 2110079, "numnum:sum:GEONAMEID": 4223858, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 22534, "numnum:min:MAX_POP10": 2084, "numnum:sum:MAX_POP10": 24618, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 22534, "numnum:min:MAX_POP20": 2084, "numnum:sum:MAX_POP20": 24618, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 22534, "numnum:min:MAX_POP50": 2084, "numnum:sum:MAX_POP50": 24618, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 22534, "numnum:min:MAX_POP300": 2084, "numnum:sum:MAX_POP300": 24618, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 12, "numnum:min:MIN_AREAKM": 3, "numnum:sum:MIN_AREAKM": 15, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 12, "numnum:min:MAX_AREAKM": 3, "numnum:sum:MAX_AREAKM": 15, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 5, "numnum:min:MIN_AREAMI": 1, "numnum:sum:MIN_AREAMI": 6, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 5, "numnum:min:MAX_AREAMI": 1, "numnum:sum:MAX_AREAMI": 6, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 28, "numnum:min:MIN_PERKM": 7, "numnum:sum:MIN_PERKM": 35, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 28, "numnum:min:MAX_PERKM": 7, "numnum:sum:MAX_PERKM": 35, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 17, "numnum:min:MIN_PERMI": 5, "numnum:sum:MIN_PERMI": 22, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 17, "numnum:min:MAX_PERMI": 5, "numnum:sum:MAX_PERMI": 22, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 172.966667, "numnum:min:MIN_BBXMIN": 171.366667, "numnum:sum:MIN_BBXMIN": 344.33333400000006, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 172.966667, "numnum:min:MAX_BBXMIN": 171.366667, "numnum:sum:MAX_BBXMIN": 344.33333400000006, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 173.058333, "numnum:min:MIN_BBXMAX": 171.375, "numnum:sum:MIN_BBXMAX": 344.433333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 173.058333, "numnum:min:MAX_BBXMAX": 171.375, "numnum:sum:MAX_BBXMAX": 344.433333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 7.091667, "numnum:min:MIN_BBYMIN": 1.325, "numnum:sum:MIN_BBYMIN": 8.416667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 7.091667, "numnum:min:MAX_BBYMIN": 1.325, "numnum:sum:MAX_BBYMIN": 8.416667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 7.116667, "numnum:min:MIN_BBYMAX": 1.358333, "numnum:sum:MIN_BBYMAX": 8.475, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 7.116667, "numnum:min:MAX_BBYMAX": 1.358333, "numnum:sum:MAX_BBYMAX": 8.475, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 173.015476, "numnum:min:MEAN_BBXC": 171.370833, "numnum:sum:MEAN_BBXC": 344.386309, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 7.104167, "numnum:min:MEAN_BBYC": 1.33869, "numnum:sum:MEAN_BBYC": 8.442857, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 0, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 0, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 28802, "numnum:min:GN_POP": 20500, "numnum:sum:GN_POP": 49302, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 2, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 6, "numnum:sum:SCALERANK": 18, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 30, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 90, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 0, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 0, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 7.103004, "numnum:min:LATITUDE": 1.338188, "numnum:sum:LATITUDE": 15.357836, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 173.017571, "numnum:min:LONGITUDE": 158.149974, "numnum:sum:LONGITUDE": 502.547545, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 28802, "numnum:min:POP_MAX": 4645, "numnum:sum:POP_MAX": 58847, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 22534, "numnum:min:POP_MIN": 4645, "numnum:sum:POP_MIN": 47679, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 0, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 0, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 7, "numnum:min:RANK_MAX": 4, "numnum:sum:RANK_MAX": 18, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 7, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 18, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2113779, "numnum:min:GEONAMEID": 2081986, "numnum:sum:GEONAMEID": 6305844, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 22534, "numnum:min:MAX_POP10": 412, "numnum:sum:MAX_POP10": 25030, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 22534, "numnum:min:MAX_POP20": 412, "numnum:sum:MAX_POP20": 25030, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 22534, "numnum:min:MAX_POP50": 412, "numnum:sum:MAX_POP50": 25030, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 22534, "numnum:min:MAX_POP300": 412, "numnum:sum:MAX_POP300": 25030, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 12, "numnum:min:MIN_AREAKM": 1, "numnum:sum:MIN_AREAKM": 16, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 12, "numnum:min:MAX_AREAKM": 1, "numnum:sum:MAX_AREAKM": 16, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 5, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 6, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 5, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 6, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 28, "numnum:min:MIN_PERKM": 4, "numnum:sum:MIN_PERKM": 39, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 28, "numnum:min:MAX_PERKM": 4, "numnum:sum:MAX_PERKM": 39, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 17, "numnum:min:MIN_PERMI": 2, "numnum:sum:MIN_PERMI": 24, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 17, "numnum:min:MAX_PERMI": 2, "numnum:sum:MAX_PERMI": 24, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 172.966667, "numnum:min:MIN_BBXMIN": 158.158333, "numnum:sum:MIN_BBXMIN": 502.491667, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 172.966667, "numnum:min:MAX_BBXMIN": 158.158333, "numnum:sum:MAX_BBXMIN": 502.491667, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 173.058333, "numnum:min:MIN_BBXMAX": 158.166667, "numnum:sum:MIN_BBXMAX": 502.59999999999999, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 173.058333, "numnum:min:MAX_BBXMAX": 158.166667, "numnum:sum:MAX_BBXMAX": 502.59999999999999, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 7.091667, "numnum:min:MIN_BBYMIN": 1.325, "numnum:sum:MIN_BBYMIN": 15.325, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 7.091667, "numnum:min:MAX_BBYMIN": 1.325, "numnum:sum:MAX_BBYMIN": 15.325, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 7.116667, "numnum:min:MIN_BBYMAX": 1.358333, "numnum:sum:MIN_BBYMAX": 15.391667, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 7.116667, "numnum:min:MAX_BBYMAX": 1.358333, "numnum:sum:MAX_BBYMAX": 15.391667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 173.015476, "numnum:min:MEAN_BBXC": 158.1625, "numnum:sum:MEAN_BBXC": 502.548809, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 7.104167, "numnum:min:MEAN_BBYC": 1.33869, "numnum:sum:MEAN_BBYC": 15.355357, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 28802, "numnum:min:GN_POP": 4645, "numnum:sum:GN_POP": 53947, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 159, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 161, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 3, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 3, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 3, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 3, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 3, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 3, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 3, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 3, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 3, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 3, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 3, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 3, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 3, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 3, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 3, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 3, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 3, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.926427 ] } } ] } ] } , @@ -354,13 +344,13 @@ , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Denver", "NAMEALT": "Denver-Aurora", "DIFFASCII": 0, "NAMEASCII": "Denver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Colorado", "ISO_A2": "US", "LATITUDE": 39.739188, "LONGITUDE": -104.984016, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313000, "POP_MIN": 1548599, "POP_OTHER": 1521278, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 5419384, "MEGANAME": "Denver-Aurora", "LS_NAME": "Denver", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1548599, "MAX_POP20": 2100407, "MAX_POP50": 2174327, "MAX_POP300": 2174327, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 909, "MAX_AREAKM": 1345, "MIN_AREAMI": 351, "MAX_AREAMI": 519, "MIN_PERKM": 371, "MAX_PERKM": 606, "MIN_PERMI": 231, "MAX_PERMI": 376, "MIN_BBXMIN": -105.241667, "MAX_BBXMIN": -105.241667, "MIN_BBXMAX": -104.866667, "MAX_BBXMAX": -104.708333, "MIN_BBYMIN": 39.5, "MAX_BBYMIN": 39.5, "MIN_BBYMAX": 39.958333, "MAX_BBYMAX": 40.025, "MEAN_BBXC": -104.993967, "MEAN_BBYC": 39.72985, "COMPARE": 0, "GN_ASCII": "Denver", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 537, "UN_ADM0": "United States of America", "UN_LAT": 39.57, "UN_LONG": -105.07, "POP1950": 505, "POP1955": 641, "POP1960": 809, "POP1965": 923, "POP1970": 1054, "POP1975": 1198, "POP1980": 1356, "POP1985": 1437, "POP1990": 1528, "POP1995": 1747, "POP2000": 1998, "POP2005": 2241, "POP2010": 2313, "POP2015": 2396, "POP2020": 2502, "POP2025": 2590, "POP2050": 2661, "CITYALT": "Denver", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo León", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.661333 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo León", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.661333 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Houston", "DIFFASCII": 0, "NAMEASCII": "Houston", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Texas", "ISO_A2": "US", "LATITUDE": 29.819974, "LONGITUDE": -95.339979, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4459000, "POP_MIN": 3647574, "POP_OTHER": 3607616, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 4699066, "MEGANAME": "Houston", "LS_NAME": "Houston", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3647574, "MAX_POP20": 4287078, "MAX_POP50": 4352341, "MAX_POP300": 4352341, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2388, "MAX_AREAKM": 3041, "MIN_AREAMI": 922, "MAX_AREAMI": 1174, "MIN_PERKM": 1257, "MAX_PERKM": 1773, "MIN_PERMI": 781, "MAX_PERMI": 1101, "MIN_BBXMIN": -95.841667, "MAX_BBXMIN": -95.841667, "MIN_BBXMAX": -95.133333, "MAX_BBXMAX": -95, "MIN_BBYMIN": 29.475, "MAX_BBYMIN": 29.491667, "MIN_BBYMAX": 30.258915, "MAX_BBYMAX": 30.266667, "MEAN_BBXC": -95.431928, "MEAN_BBYC": 29.810477, "COMPARE": 0, "GN_ASCII": "Houston", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 542, "UN_ADM0": "United States of America", "UN_LAT": 29.77, "UN_LONG": -95.4, "POP1950": 709, "POP1955": 904, "POP1960": 1151, "POP1965": 1396, "POP1970": 1693, "POP1975": 2030, "POP1980": 2424, "POP1985": 2658, "POP1990": 2922, "POP1995": 3353, "POP2000": 3849, "POP2005": 4324, "POP2010": 4459, "POP2015": 4609, "POP2020": 4790, "POP2025": 4936, "POP2050": 5049, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Houston", "DIFFASCII": 0, "NAMEASCII": "Houston", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Texas", "ISO_A2": "US", "LATITUDE": 29.819974, "LONGITUDE": -95.339979, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4459000, "POP_MIN": 3647574, "POP_OTHER": 3607616, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 4699066, "MEGANAME": "Houston", "LS_NAME": "Houston", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3647574, "MAX_POP20": 4287078, "MAX_POP50": 4352341, "MAX_POP300": 4352341, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2388, "MAX_AREAKM": 3041, "MIN_AREAMI": 922, "MAX_AREAMI": 1174, "MIN_PERKM": 1257, "MAX_PERKM": 1773, "MIN_PERMI": 781, "MAX_PERMI": 1101, "MIN_BBXMIN": -95.841667, "MAX_BBXMIN": -95.841667, "MIN_BBXMAX": -95.133333, "MAX_BBXMAX": -95, "MIN_BBYMIN": 29.475, "MAX_BBYMIN": 29.491667, "MIN_BBYMAX": 30.258915, "MAX_BBYMAX": 30.266667, "MEAN_BBXC": -95.431928, "MEAN_BBYC": 29.810477, "COMPARE": 0, "GN_ASCII": "Houston", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 542, "UN_ADM0": "United States of America", "UN_LAT": 29.77, "UN_LONG": -95.4, "POP1950": 709, "POP1955": 904, "POP1960": 1151, "POP1965": 1396, "POP1970": 1693, "POP1975": 2030, "POP1980": 2424, "POP1985": 2658, "POP1990": 2922, "POP1995": 3353, "POP2000": 3849, "POP2005": 4324, "POP2010": 4459, "POP2015": 4609, "POP2020": 4790, "POP2025": 4936, "POP2050": 5049, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de México", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de México", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -99.118652, 19.435514 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de México", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de México", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -99.118652, 19.435514 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } ] } ] } , @@ -370,21 +360,19 @@ , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Lima", "DIFFASCII": 0, "NAMEASCII": "Lima", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Peru", "SOV_A3": "PER", "ADM0NAME": "Peru", "ADM0_A3": "PER", "ADM1NAME": "Lima", "ISO_A2": "PE", "LATITUDE": -12.048013, "LONGITUDE": -77.050062, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 8012000, "POP_MIN": 6758234, "POP_OTHER": 6068380, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3936456, "MEGANAME": "Lima", "LS_NAME": "Lima2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6758234, "MAX_POP20": 7092933, "MAX_POP50": 7115614, "MAX_POP300": 7115806, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 724, "MAX_AREAKM": 790, "MIN_AREAMI": 279, "MAX_AREAMI": 305, "MIN_PERKM": 315, "MAX_PERKM": 384, "MIN_PERMI": 196, "MAX_PERMI": 239, "MIN_BBXMIN": -77.166667, "MAX_BBXMIN": -77.153161, "MIN_BBXMAX": -76.85, "MAX_BBXMAX": -76.833333, "MIN_BBYMIN": -12.316667, "MAX_BBYMIN": -12.281801, "MIN_BBYMAX": -11.808333, "MAX_BBYMAX": -11.808333, "MEAN_BBXC": -77.010199, "MEAN_BBYC": -12.041474, "COMPARE": 0, "GN_ASCII": "Lima", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 15, "GN_POP": 7737002, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "America/Lima", "GEONAMESNO": "GeoNames match general.", "UN_FID": 411, "UN_ADM0": "Peru", "UN_LAT": -12.08, "UN_LONG": -77.04, "POP1950": 1066, "POP1955": 1368, "POP1960": 1756, "POP1965": 2284, "POP1970": 2980, "POP1975": 3696, "POP1980": 4438, "POP1985": 5116, "POP1990": 5837, "POP1995": 6537, "POP2000": 7116, "POP2005": 7747, "POP2010": 8012, "POP2015": 8375, "POP2020": 8857, "POP2025": 9251, "POP2050": 9600, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -77.036133, -12.060809 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "La Paz", "DIFFASCII": 0, "NAMEASCII": "La Paz", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "La Paz", "ISO_A2": "BO", "LATITUDE": -16.497974, "LONGITUDE": -68.149985, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1590000, "POP_MIN": 812799, "POP_OTHER": 4400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3911925, "MEGANAME": "La Paz", "LS_NAME": "La Paz3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590482, "MAX_POP20": 1590482, "MAX_POP50": 1590482, "MAX_POP300": 1590482, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 181, "MAX_AREAKM": 181, "MIN_AREAMI": 70, "MAX_AREAMI": 70, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": -68.258333, "MAX_BBXMIN": -68.258333, "MIN_BBXMAX": -68.05, "MAX_BBXMAX": -68.05, "MIN_BBYMIN": -16.575, "MAX_BBYMIN": -16.575, "MIN_BBYMAX": -16.433333, "MAX_BBYMAX": -16.433333, "MEAN_BBXC": -68.157765, "MEAN_BBYC": -16.506439, "COMPARE": 0, "GN_ASCII": "La Paz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 812799, "ELEVATION": 0, "GTOPO30": 3829, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 440, "UN_ADM0": "Bolivia", "UN_LAT": 24.15, "UN_LONG": -110.3, "POP1950": 319, "POP1955": 374, "POP1960": 438, "POP1965": 512, "POP1970": 600, "POP1975": 703, "POP1980": 809, "POP1985": 927, "POP1990": 1062, "POP1995": 1267, "POP2000": 1390, "POP2005": 1527, "POP2010": 1590, "POP2015": 1692, "POP2020": 1864, "POP2025": 2027, "POP2050": 2178, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -68.137207, -16.509833 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "La Paz", "DIFFASCII": 0, "NAMEASCII": "La Paz", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "La Paz", "ISO_A2": "BO", "LATITUDE": -16.497974, "LONGITUDE": -68.149985, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1590000, "POP_MIN": 812799, "POP_OTHER": 4400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3911925, "MEGANAME": "La Paz", "LS_NAME": "La Paz3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590482, "MAX_POP20": 1590482, "MAX_POP50": 1590482, "MAX_POP300": 1590482, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 181, "MAX_AREAKM": 181, "MIN_AREAMI": 70, "MAX_AREAMI": 70, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": -68.258333, "MAX_BBXMIN": -68.258333, "MIN_BBXMAX": -68.05, "MAX_BBXMAX": -68.05, "MIN_BBYMIN": -16.575, "MAX_BBYMIN": -16.575, "MIN_BBYMAX": -16.433333, "MAX_BBYMAX": -16.433333, "MEAN_BBXC": -68.157765, "MEAN_BBYC": -16.506439, "COMPARE": 0, "GN_ASCII": "La Paz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 812799, "ELEVATION": 0, "GTOPO30": 3829, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 440, "UN_ADM0": "Bolivia", "UN_LAT": 24.15, "UN_LONG": -110.3, "POP1950": 319, "POP1955": 374, "POP1960": 438, "POP1965": 512, "POP1970": 600, "POP1975": 703, "POP1980": 809, "POP1985": 927, "POP1990": 1062, "POP1995": 1267, "POP2000": 1390, "POP2005": 1527, "POP2010": 1590, "POP2015": 1692, "POP2020": 1864, "POP2025": 2027, "POP2050": 2178, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -68.137207, -16.509833 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEALT": "Valparaíso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valparaíso", "ISO_A2": "CL", "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575, "MEGANAME": "Valparaíso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390, "MAX_POP20": 637860, "MAX_POP50": 637860, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 34, "MAX_AREAKM": 184, "MIN_AREAMI": 13, "MAX_AREAMI": 71, "MIN_PERKM": 33, "MAX_PERKM": 151, "MIN_PERMI": 21, "MAX_PERMI": 94, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27, "GN_POP": 15938, "ELEVATION": 0, "GTOPO30": 405, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328, "POP1955": 377, "POP1960": 433, "POP1965": 481, "POP1970": 532, "POP1975": 581, "POP1980": 635, "POP1985": 685, "POP1990": 733, "POP1995": 771, "POP2000": 803, "POP2005": 838, "POP2010": 854, "POP2015": 880, "POP2020": 922, "POP2025": 956, "POP2050": 982, "CITYALT": "Valparaiso", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -71.608887, -33.045508 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEALT": "Valparaíso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valparaíso", "ISO_A2": "CL", "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575, "MEGANAME": "Valparaíso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390, "MAX_POP20": 637860, "MAX_POP50": 637860, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 34, "MAX_AREAKM": 184, "MIN_AREAMI": 13, "MAX_AREAMI": 71, "MIN_PERKM": 33, "MAX_PERKM": 151, "MIN_PERMI": 21, "MAX_PERMI": 94, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27, "GN_POP": 15938, "ELEVATION": 0, "GTOPO30": 405, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328, "POP1955": 377, "POP1960": 433, "POP1965": 481, "POP1970": 532, "POP1975": 581, "POP1980": 635, "POP1985": 685, "POP1990": 733, "POP1995": 771, "POP2000": 803, "POP2005": 838, "POP2010": 854, "POP2015": 880, "POP2020": 922, "POP2025": 956, "POP2050": 982, "CITYALT": "Valparaiso", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -71.608887, -33.045508 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Santiago", "DIFFASCII": 0, "NAMEASCII": "Santiago", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, admin", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Región Metropolitana de Santiago", "ISO_A2": "CL", "LATITUDE": -33.450014, "LONGITUDE": -70.667041, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5720000, "POP_MIN": 46611, "POP_OTHER": 3066651, "RANK_MAX": 13, "RANK_MIN": 7, "GEONAMEID": 3449741, "MEGANAME": "Santiago", "LS_NAME": "Santiago3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3540014, "MAX_POP20": 5157058, "MAX_POP50": 5157058, "MAX_POP300": 5157058, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 570, "MAX_AREAKM": 903, "MIN_AREAMI": 220, "MAX_AREAMI": 349, "MIN_PERKM": 310, "MAX_PERKM": 558, "MIN_PERMI": 193, "MAX_PERMI": 347, "MIN_BBXMIN": -70.958333, "MAX_BBXMIN": -70.8, "MIN_BBXMAX": -70.458333, "MAX_BBXMAX": -70.458333, "MIN_BBYMIN": -33.7, "MAX_BBYMIN": -33.556142, "MIN_BBYMAX": -33.175, "MAX_BBYMAX": -33.175, "MEAN_BBXC": -70.66127, "MEAN_BBYC": -33.461735, "COMPARE": 0, "GN_ASCII": "Santiago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 23, "GN_POP": 46611, "ELEVATION": 0, "GTOPO30": 441, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 17, "UN_ADM0": "Chile", "UN_LAT": 8.1, "UN_LONG": -80.96, "POP1950": 1322, "POP1955": 1618, "POP1960": 1980, "POP1965": 2294, "POP1970": 2647, "POP1975": 3138, "POP1980": 3721, "POP1985": 4201, "POP1990": 4616, "POP1995": 4964, "POP2000": 5275, "POP2005": 5599, "POP2010": 5720, "POP2015": 5879, "POP2020": 6084, "POP2025": 6224, "POP2050": 6310, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -70.664062, -33.449777 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sucre", "DIFFASCII": 0, "NAMEASCII": "Sucre", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official (const", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "Chuquisaca", "ISO_A2": "BO", "LATITUDE": -19.040971, "LONGITUDE": -65.259516, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224838, "POP_MIN": 221736, "POP_OTHER": 221736, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3903987, "LS_NAME": "Sucre", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 221736, "MAX_POP20": 221736, "MAX_POP50": 221736, "MAX_POP300": 221736, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 34, "MAX_AREAKM": 34, "MIN_AREAMI": 13, "MAX_AREAMI": 13, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": -65.3, "MAX_BBXMIN": -65.3, "MIN_BBXMAX": -65.225, "MAX_BBXMAX": -65.225, "MIN_BBYMIN": -19.066667, "MAX_BBYMIN": -19.066667, "MIN_BBYMAX": -18.991667, "MAX_BBYMAX": -18.991667, "MEAN_BBXC": -65.260317, "MEAN_BBYC": -19.030556, "COMPARE": 0, "GN_ASCII": "Sucre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 224838, "ELEVATION": 0, "GTOPO30": 2759, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasília", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasília", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.792254 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasília", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasília", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.792254 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunción", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunción", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunción", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunción", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunción", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunción", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Buenos Aires", "DIFFASCII": 0, "NAMEASCII": "Buenos Aires", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Argentina", "SOV_A3": "ARG", "ADM0NAME": "Argentina", "ADM0_A3": "ARG", "ADM1NAME": "Ciudad de Buenos Aires", "ISO_A2": "AR", "LATITUDE": -34.602502, "LONGITUDE": -58.397531, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12795000, "POP_MIN": 10929146, "POP_OTHER": 10271457, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3435910, "MEGANAME": "Buenos Aires", "LS_NAME": "Buenos Aires", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10929146, "MAX_POP20": 10991915, "MAX_POP50": 12611862, "MAX_POP300": 12611862, "MAX_POP310": 12611862, "MAX_NATSCA": 300, "MIN_AREAKM": 1675, "MAX_AREAKM": 2447, "MIN_AREAMI": 647, "MAX_AREAMI": 945, "MIN_PERKM": 570, "MAX_PERKM": 1064, "MIN_PERMI": 354, "MAX_PERMI": 661, "MIN_BBXMIN": -59.016667, "MAX_BBXMIN": -58.757731, "MIN_BBXMAX": -58.175, "MAX_BBXMAX": -57.816667, "MIN_BBYMIN": -35.008333, "MAX_BBYMIN": -35.008333, "MIN_BBYMAX": -34.375, "MAX_BBYMAX": -34.366667, "MEAN_BBXC": -58.50845, "MEAN_BBYC": -34.681331, "COMPARE": 0, "GN_ASCII": "Buenos Aires", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 13076300, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "America/Argentina/Buenos_Aires", "GEONAMESNO": "GeoNames match general.", "UN_FID": 201, "UN_ADM0": "Argentina", "UN_LAT": -34.62, "UN_LONG": -58.44, "POP1950": 5098, "POP1955": 5799, "POP1960": 6598, "POP1965": 7317, "POP1970": 8105, "POP1975": 8745, "POP1980": 9422, "POP1985": 9959, "POP1990": 10513, "POP1995": 11154, "POP2000": 11847, "POP2005": 12553, "POP2010": 12795, "POP2015": 13089, "POP2020": 13432, "POP2025": 13653, "POP2050": 13768, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -58.403320, -34.597042 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Sao Paulo", "NAMEALT": "Sao Paulo|São Paulo", "DIFFASCII": 0, "NAMEASCII": "Sao Paulo", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "São Paulo", "ISO_A2": "BR", "LATITUDE": -23.55868, "LONGITUDE": -46.62502, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 18845000, "POP_MIN": 10021295, "POP_OTHER": 11522944, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3448439, "MEGANAME": "São Paulo", "LS_NAME": "Sao Paolo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12495084, "MAX_POP20": 17425624, "MAX_POP50": 18203351, "MAX_POP300": 18203351, "MAX_POP310": 18203351, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 2667, "MIN_AREAMI": 554, "MAX_AREAMI": 1030, "MIN_PERKM": 532, "MAX_PERKM": 1086, "MIN_PERMI": 330, "MAX_PERMI": 675, "MIN_BBXMIN": -47.058333, "MAX_BBXMIN": -47.056372, "MIN_BBXMAX": -46.383333, "MAX_BBXMAX": -46.108333, "MIN_BBYMIN": -23.891667, "MAX_BBYMIN": -23.842331, "MIN_BBYMAX": -23.358333, "MAX_BBYMAX": -23.241667, "MEAN_BBXC": -46.651489, "MEAN_BBYC": -23.558961, "COMPARE": 0, "GN_ASCII": "Sao Paulo", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 27, "GN_POP": 10021295, "ELEVATION": 0, "GTOPO30": 631, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 491, "UN_ADM0": "Brazil", "UN_LAT": -23.58, "UN_LONG": -46.62, "POP1950": 2334, "POP1955": 3044, "POP1960": 3970, "POP1965": 5494, "POP1970": 7620, "POP1975": 9614, "POP1980": 12089, "POP1985": 13395, "POP1990": 14776, "POP1995": 15948, "POP2000": 17099, "POP2005": 18333, "POP2010": 18845, "POP2015": 19582, "POP2020": 20544, "POP2025": 21124, "POP2050": 21428, "CITYALT": "Sao Paulo", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -46.625977, -23.563987 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Buenos Aires", "DIFFASCII": 0, "NAMEASCII": "Buenos Aires", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Argentina", "SOV_A3": "ARG", "ADM0NAME": "Argentina", "ADM0_A3": "ARG", "ADM1NAME": "Ciudad de Buenos Aires", "ISO_A2": "AR", "LATITUDE": -34.602502, "LONGITUDE": -58.397531, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12795000, "POP_MIN": 10929146, "POP_OTHER": 10271457, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3435910, "MEGANAME": "Buenos Aires", "LS_NAME": "Buenos Aires", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10929146, "MAX_POP20": 10991915, "MAX_POP50": 12611862, "MAX_POP300": 12611862, "MAX_POP310": 12611862, "MAX_NATSCA": 300, "MIN_AREAKM": 1675, "MAX_AREAKM": 2447, "MIN_AREAMI": 647, "MAX_AREAMI": 945, "MIN_PERKM": 570, "MAX_PERKM": 1064, "MIN_PERMI": 354, "MAX_PERMI": 661, "MIN_BBXMIN": -59.016667, "MAX_BBXMIN": -58.757731, "MIN_BBXMAX": -58.175, "MAX_BBXMAX": -57.816667, "MIN_BBYMIN": -35.008333, "MAX_BBYMIN": -35.008333, "MIN_BBYMAX": -34.375, "MAX_BBYMAX": -34.366667, "MEAN_BBXC": -58.50845, "MEAN_BBYC": -34.681331, "COMPARE": 0, "GN_ASCII": "Buenos Aires", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 13076300, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "America/Argentina/Buenos_Aires", "GEONAMESNO": "GeoNames match general.", "UN_FID": 201, "UN_ADM0": "Argentina", "UN_LAT": -34.62, "UN_LONG": -58.44, "POP1950": 5098, "POP1955": 5799, "POP1960": 6598, "POP1965": 7317, "POP1970": 8105, "POP1975": 8745, "POP1980": 9422, "POP1985": 9959, "POP1990": 10513, "POP1995": 11154, "POP2000": 11847, "POP2005": 12553, "POP2010": 12795, "POP2015": 13089, "POP2020": 13432, "POP2025": 13653, "POP2050": 13768, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 1, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 900, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 3, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 4, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -23.55868, "numnum:min:LATITUDE": -34.602502, "numnum:sum:LATITUDE": -58.161182, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -46.62502, "numnum:min:LONGITUDE": -58.397531, "numnum:sum:LONGITUDE": -105.02255099999999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 18845000, "numnum:min:POP_MAX": 12795000, "numnum:sum:POP_MAX": 31640000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 10929146, "numnum:min:POP_MIN": 10021295, "numnum:sum:POP_MIN": 20950441, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 11522944, "numnum:min:POP_OTHER": 10271457, "numnum:sum:POP_OTHER": 21794401, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 14, "numnum:sum:RANK_MAX": 28, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 14, "numnum:sum:RANK_MIN": 28, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3448439, "numnum:min:GEONAMEID": 3435910, "numnum:sum:GEONAMEID": 6884349, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 12495084, "numnum:min:MAX_POP10": 10929146, "numnum:sum:MAX_POP10": 23424230, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 17425624, "numnum:min:MAX_POP20": 10991915, "numnum:sum:MAX_POP20": 28417539, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 18203351, "numnum:min:MAX_POP50": 12611862, "numnum:sum:MAX_POP50": 30815213, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 18203351, "numnum:min:MAX_POP300": 12611862, "numnum:sum:MAX_POP300": 30815213, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 18203351, "numnum:min:MAX_POP310": 12611862, "numnum:sum:MAX_POP310": 30815213, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 300, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1675, "numnum:min:MIN_AREAKM": 1434, "numnum:sum:MIN_AREAKM": 3109, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2667, "numnum:min:MAX_AREAKM": 2447, "numnum:sum:MAX_AREAKM": 5114, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 647, "numnum:min:MIN_AREAMI": 554, "numnum:sum:MIN_AREAMI": 1201, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1030, "numnum:min:MAX_AREAMI": 945, "numnum:sum:MAX_AREAMI": 1975, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 570, "numnum:min:MIN_PERKM": 532, "numnum:sum:MIN_PERKM": 1102, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1086, "numnum:min:MAX_PERKM": 1064, "numnum:sum:MAX_PERKM": 2150, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 354, "numnum:min:MIN_PERMI": 330, "numnum:sum:MIN_PERMI": 684, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 675, "numnum:min:MAX_PERMI": 661, "numnum:sum:MAX_PERMI": 1336, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -47.058333, "numnum:min:MIN_BBXMIN": -59.016667, "numnum:sum:MIN_BBXMIN": -106.07499999999999, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -47.056372, "numnum:min:MAX_BBXMIN": -58.757731, "numnum:sum:MAX_BBXMIN": -105.814103, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -46.383333, "numnum:min:MIN_BBXMAX": -58.175, "numnum:sum:MIN_BBXMAX": -104.558333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -46.108333, "numnum:min:MAX_BBXMAX": -57.816667, "numnum:sum:MAX_BBXMAX": -103.92500000000001, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -23.891667, "numnum:min:MIN_BBYMIN": -35.008333, "numnum:sum:MIN_BBYMIN": -58.900000000000009, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -23.842331, "numnum:min:MAX_BBYMIN": -35.008333, "numnum:sum:MAX_BBYMIN": -58.850664, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -23.358333, "numnum:min:MIN_BBYMAX": -34.375, "numnum:sum:MIN_BBYMAX": -57.733333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -23.241667, "numnum:min:MAX_BBYMAX": -34.366667, "numnum:sum:MAX_BBYMAX": -57.608334, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -46.651489, "numnum:min:MEAN_BBXC": -58.50845, "numnum:sum:MEAN_BBXC": -105.15993900000001, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -23.558961, "numnum:min:MEAN_BBYC": -34.681331, "numnum:sum:MEAN_BBYC": -58.240292, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 27, "numnum:min:ADMIN1_COD": 7, "numnum:sum:ADMIN1_COD": 34, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 13076300, "numnum:min:GN_POP": 10021295, "numnum:sum:GN_POP": 23097595, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 631, "numnum:min:GTOPO30": 13, "numnum:sum:GTOPO30": 644, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 491, "numnum:min:UN_FID": 201, "numnum:sum:UN_FID": 692, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": -23.58, "numnum:min:UN_LAT": -34.62, "numnum:sum:UN_LAT": -58.199999999999999, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -46.62, "numnum:min:UN_LONG": -58.44, "numnum:sum:UN_LONG": -105.06, "numnum:count:POP1950": 2, "numnum:max:POP1950": 5098, "numnum:min:POP1950": 2334, "numnum:sum:POP1950": 7432, "numnum:count:POP1955": 2, "numnum:max:POP1955": 5799, "numnum:min:POP1955": 3044, "numnum:sum:POP1955": 8843, "numnum:count:POP1960": 2, "numnum:max:POP1960": 6598, "numnum:min:POP1960": 3970, "numnum:sum:POP1960": 10568, "numnum:count:POP1965": 2, "numnum:max:POP1965": 7317, "numnum:min:POP1965": 5494, "numnum:sum:POP1965": 12811, "numnum:count:POP1970": 2, "numnum:max:POP1970": 8105, "numnum:min:POP1970": 7620, "numnum:sum:POP1970": 15725, "numnum:count:POP1975": 2, "numnum:max:POP1975": 9614, "numnum:min:POP1975": 8745, "numnum:sum:POP1975": 18359, "numnum:count:POP1980": 2, "numnum:max:POP1980": 12089, "numnum:min:POP1980": 9422, "numnum:sum:POP1980": 21511, "numnum:count:POP1985": 2, "numnum:max:POP1985": 13395, "numnum:min:POP1985": 9959, "numnum:sum:POP1985": 23354, "numnum:count:POP1990": 2, "numnum:max:POP1990": 14776, "numnum:min:POP1990": 10513, "numnum:sum:POP1990": 25289, "numnum:count:POP1995": 2, "numnum:max:POP1995": 15948, "numnum:min:POP1995": 11154, "numnum:sum:POP1995": 27102, "numnum:count:POP2000": 2, "numnum:max:POP2000": 17099, "numnum:min:POP2000": 11847, "numnum:sum:POP2000": 28946, "numnum:count:POP2005": 2, "numnum:max:POP2005": 18333, "numnum:min:POP2005": 12553, "numnum:sum:POP2005": 30886, "numnum:count:POP2010": 2, "numnum:max:POP2010": 18845, "numnum:min:POP2010": 12795, "numnum:sum:POP2010": 31640, "numnum:count:POP2015": 2, "numnum:max:POP2015": 19582, "numnum:min:POP2015": 13089, "numnum:sum:POP2015": 32671, "numnum:count:POP2020": 2, "numnum:max:POP2020": 20544, "numnum:min:POP2020": 13432, "numnum:sum:POP2020": 33976, "numnum:count:POP2025": 2, "numnum:max:POP2025": 21124, "numnum:min:POP2025": 13653, "numnum:sum:POP2025": 34777, "numnum:count:POP2050": 2, "numnum:max:POP2050": 21428, "numnum:min:POP2050": 13768, "numnum:sum:POP2050": 35196, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -58.403320, -34.597042 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Montevideo", "DIFFASCII": 0, "NAMEASCII": "Montevideo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uruguay", "SOV_A3": "URY", "ADM0NAME": "Uruguay", "ADM0_A3": "URY", "ADM1NAME": "Montevideo", "ISO_A2": "UY", "LATITUDE": -34.858042, "LONGITUDE": -56.171052, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1513000, "POP_MIN": 5324, "POP_OTHER": 1276128, "RANK_MAX": 12, "RANK_MIN": 5, "GEONAMEID": 5038018, "MEGANAME": "Montevideo", "LS_NAME": "Montevideo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1381747, "MAX_POP20": 1381747, "MAX_POP50": 1381747, "MAX_POP300": 1381747, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 347, "MAX_AREAKM": 347, "MIN_AREAMI": 134, "MAX_AREAMI": 134, "MIN_PERKM": 266, "MAX_PERKM": 266, "MIN_PERMI": 165, "MAX_PERMI": 165, "MIN_BBXMIN": -56.291667, "MAX_BBXMIN": -56.291667, "MIN_BBXMAX": -55.8, "MAX_BBXMAX": -55.8, "MIN_BBYMIN": -34.933333, "MAX_BBYMIN": -34.933333, "MIN_BBYMAX": -34.65, "MAX_BBYMAX": -34.65, "MEAN_BBXC": -56.12273, "MEAN_BBYC": -34.828337, "COMPARE": 0, "GN_ASCII": "Montevideo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5324, "ELEVATION": 284, "GTOPO30": 305, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 579, "UN_ADM0": "Uruguay", "UN_LAT": -34.92, "UN_LONG": -56.16, "POP1950": 1212, "POP1955": 1248, "POP1960": 1285, "POP1965": 1323, "POP1970": 1362, "POP1975": 1403, "POP1980": 1454, "POP1985": 1508, "POP1990": 1546, "POP1995": 1584, "POP2000": 1561, "POP2005": 1525, "POP2010": 1513, "POP2015": 1504, "POP2020": 1506, "POP2025": 1515, "POP2050": 1520, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.867905 ] } } , @@ -394,31 +382,31 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "LATITUDE": 41.829991, "LONGITUDE": -87.750055, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798, "MAX_POP20": 5069998, "MAX_POP50": 8416660, "MAX_POP300": 8416660, "MAX_POP310": 8450289, "MAX_NATSCA": 300, "MIN_AREAKM": 1345, "MAX_AREAKM": 4804, "MIN_AREAMI": 519, "MAX_AREAMI": 1855, "MIN_PERKM": 471, "MAX_PERKM": 2946, "MIN_PERMI": 293, "MAX_PERMI": 1830, "MIN_BBXMIN": -88.408333, "MAX_BBXMIN": -88.03629, "MIN_BBXMAX": -87.528138, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.391667, "MAX_BBYMIN": 41.458333, "MIN_BBYMAX": 42.000972, "MAX_BBYMAX": 42.491667, "MEAN_BBXC": -87.85874, "MEAN_BBYC": 41.832719, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2841952, "ELEVATION": 179, "GTOPO30": 181, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999, "POP1955": 5565, "POP1960": 6183, "POP1965": 6639, "POP1970": 7106, "POP1975": 7160, "POP1980": 7216, "POP1985": 7285, "POP1990": 7374, "POP1995": 7839, "POP2000": 8333, "POP2005": 8820, "POP2010": 8990, "POP2015": 9211, "POP2020": 9516, "POP2025": 9756, "POP2050": 9932, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -87.736816, 41.820455 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "LATITUDE": 41.829991, "LONGITUDE": -87.750055, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798, "MAX_POP20": 5069998, "MAX_POP50": 8416660, "MAX_POP300": 8416660, "MAX_POP310": 8450289, "MAX_NATSCA": 300, "MIN_AREAKM": 1345, "MAX_AREAKM": 4804, "MIN_AREAMI": 519, "MAX_AREAMI": 1855, "MIN_PERKM": 471, "MAX_PERKM": 2946, "MIN_PERMI": 293, "MAX_PERMI": 1830, "MIN_BBXMIN": -88.408333, "MAX_BBXMIN": -88.03629, "MIN_BBXMAX": -87.528138, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.391667, "MAX_BBYMIN": 41.458333, "MIN_BBYMAX": 42.000972, "MAX_BBYMAX": 42.491667, "MEAN_BBXC": -87.85874, "MEAN_BBYC": 41.832719, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2841952, "ELEVATION": 179, "GTOPO30": 181, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999, "POP1955": 5565, "POP1960": 6183, "POP1965": 6639, "POP1970": 7106, "POP1975": 7160, "POP1980": 7216, "POP1985": 7285, "POP1990": 7374, "POP1995": 7839, "POP2000": 8333, "POP2005": 8820, "POP2010": 8990, "POP2015": 9211, "POP2020": 9516, "POP2025": 9756, "POP2050": 9932, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -87.736816, 41.820455 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421, "MAX_POP20": 4377344, "MAX_POP50": 5190755, "MAX_POP300": 5190755, "MAX_POP310": 5190755, "MAX_NATSCA": 300, "MIN_AREAKM": 1432, "MAX_AREAKM": 2286, "MIN_AREAMI": 553, "MAX_AREAMI": 883, "MIN_PERKM": 464, "MAX_PERKM": 1161, "MIN_PERMI": 289, "MAX_PERMI": 721, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 4612191, "ELEVATION": 0, "GTOPO30": 173, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068, "POP1955": 1365, "POP1960": 1744, "POP1965": 2093, "POP1970": 2535, "POP1975": 2770, "POP1980": 3008, "POP1985": 3355, "POP1990": 3807, "POP1995": 4197, "POP2000": 4607, "POP2005": 5035, "POP2010": 5213, "POP2015": 5447, "POP2020": 5687, "POP2025": 5827, "POP2050": 5946, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -79.409180, 43.691708 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421, "MAX_POP20": 4377344, "MAX_POP50": 5190755, "MAX_POP300": 5190755, "MAX_POP310": 5190755, "MAX_NATSCA": 300, "MIN_AREAKM": 1432, "MAX_AREAKM": 2286, "MIN_AREAMI": 553, "MAX_AREAMI": 883, "MIN_PERKM": 464, "MAX_PERKM": 1161, "MIN_PERMI": 289, "MAX_PERMI": 721, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 4612191, "ELEVATION": 0, "GTOPO30": 173, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068, "POP1955": 1365, "POP1960": 1744, "POP1965": 2093, "POP1970": 2535, "POP1975": 2770, "POP1980": 3008, "POP1985": 3355, "POP1990": 3807, "POP1995": 4197, "POP2000": 4607, "POP2005": 5035, "POP2010": 5213, "POP2015": 5447, "POP2020": 5687, "POP2025": 5827, "POP2050": 5946, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -79.409180, 43.691708 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780, "MAX_POP20": 885780, "MAX_POP50": 885780, "MAX_POP300": 885780, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 504, "MAX_AREAKM": 504, "MIN_AREAMI": 195, "MAX_AREAMI": 195, "MIN_PERKM": 442, "MAX_PERKM": 442, "MIN_PERMI": 274, "MAX_PERMI": 274, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 812129, "ELEVATION": 0, "GTOPO30": 61, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282, "POP1955": 342, "POP1960": 415, "POP1965": 482, "POP1970": 581, "POP1975": 676, "POP1980": 729, "POP1985": 803, "POP1990": 918, "POP1995": 988, "POP2000": 1079, "POP2005": 1119, "POP2010": 1145, "POP2015": 1182, "POP2020": 1232, "POP2025": 1274, "POP2050": 1315, "CITYALT": "Ottawa", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780, "MAX_POP20": 885780, "MAX_POP50": 885780, "MAX_POP300": 885780, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 504, "MAX_AREAKM": 504, "MIN_AREAMI": 195, "MAX_AREAMI": 195, "MIN_PERKM": 442, "MAX_PERKM": 442, "MIN_PERMI": 274, "MAX_PERMI": 274, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 812129, "ELEVATION": 0, "GTOPO30": 61, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282, "POP1955": 342, "POP1960": 415, "POP1965": 482, "POP1970": 581, "POP1975": 676, "POP1980": 729, "POP1985": 803, "POP1990": 918, "POP1995": 988, "POP2000": 1079, "POP2005": 1119, "POP2010": 1145, "POP2015": 1182, "POP2020": 1232, "POP2025": 1274, "POP2050": 1315, "CITYALT": "Ottawa", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "LATITUDE": 33.830014, "LONGITUDE": -84.399949, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128, "MAX_POP20": 3896411, "MAX_POP50": 3910939, "MAX_POP300": 3910939, "MAX_POP310": 3910939, "MAX_NATSCA": 300, "MIN_AREAKM": 2761, "MAX_AREAKM": 4086, "MIN_AREAMI": 1066, "MAX_AREAMI": 1578, "MIN_PERKM": 1494, "MAX_PERKM": 2459, "MIN_PERMI": 929, "MAX_PERMI": 1528, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.608333, "MIN_BBXMAX": -83.879976, "MAX_BBXMAX": -83.858333, "MIN_BBYMIN": 33.383333, "MAX_BBYMIN": 33.383333, "MIN_BBYMAX": 34.202715, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.328739, "MEAN_BBYC": 33.851552, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 422908, "ELEVATION": 320, "GTOPO30": 305, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513, "POP1955": 631, "POP1960": 776, "POP1965": 959, "POP1970": 1182, "POP1975": 1386, "POP1980": 1625, "POP1985": 1879, "POP1990": 2184, "POP1995": 2781, "POP2000": 3542, "POP2005": 4307, "POP2010": 4506, "POP2015": 4695, "POP2020": 4888, "POP2025": 5035, "POP2050": 5151, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -84.396973, 33.833920 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "LATITUDE": 33.830014, "LONGITUDE": -84.399949, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128, "MAX_POP20": 3896411, "MAX_POP50": 3910939, "MAX_POP300": 3910939, "MAX_POP310": 3910939, "MAX_NATSCA": 300, "MIN_AREAKM": 2761, "MAX_AREAKM": 4086, "MIN_AREAMI": 1066, "MAX_AREAMI": 1578, "MIN_PERKM": 1494, "MAX_PERKM": 2459, "MIN_PERMI": 929, "MAX_PERMI": 1528, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.608333, "MIN_BBXMAX": -83.879976, "MAX_BBXMAX": -83.858333, "MIN_BBYMIN": 33.383333, "MAX_BBYMIN": 33.383333, "MIN_BBYMAX": 34.202715, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.328739, "MEAN_BBYC": 33.851552, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 422908, "ELEVATION": 320, "GTOPO30": 305, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513, "POP1955": 631, "POP1960": 776, "POP1965": 959, "POP1970": 1182, "POP1975": 1386, "POP1980": 1625, "POP1985": 1879, "POP1990": 2184, "POP1995": 2781, "POP2000": 3542, "POP2005": 4307, "POP2010": 4506, "POP2015": 4695, "POP2020": 4888, "POP2025": 5035, "POP2050": 5151, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -84.396973, 33.833920 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.120154 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.120154 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.780107 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.780107 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C.", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.891033 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C.", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.891033 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nassau", "DIFFASCII": 0, "NAMEASCII": "Nassau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahamas, The", "SOV_A3": "BHS", "ADM0NAME": "The Bahamas", "ADM0_A3": "BHS", "ISO_A2": "BS", "LATITUDE": 25.08339, "LONGITUDE": -77.350044, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 227940, "POP_MIN": 160966, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 3571824, "LS_NAME": "Nassau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 160966, "MAX_POP20": 160966, "MAX_POP50": 160966, "MAX_POP300": 160966, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 84, "MAX_AREAKM": 84, "MIN_AREAMI": 32, "MAX_AREAMI": 32, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -77.4, "MAX_BBXMIN": -77.4, "MIN_BBXMAX": -77.258333, "MAX_BBXMAX": -77.258333, "MIN_BBYMIN": 25, "MAX_BBYMIN": 25, "MIN_BBYMAX": 25.091667, "MAX_BBYMAX": 25.091667, "MEAN_BBXC": -77.335571, "MEAN_BBYC": 25.04483, "COMPARE": 0, "GN_ASCII": "Nassau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 23, "GN_POP": 227940, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Nassau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nassau", "DIFFASCII": 0, "NAMEASCII": "Nassau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahamas, The", "SOV_A3": "BHS", "ADM0NAME": "The Bahamas", "ADM0_A3": "BHS", "ISO_A2": "BS", "LATITUDE": 25.08339, "LONGITUDE": -77.350044, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 227940, "POP_MIN": 160966, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 3571824, "LS_NAME": "Nassau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 160966, "MAX_POP20": 160966, "MAX_POP50": 160966, "MAX_POP300": 160966, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 84, "MAX_AREAKM": 84, "MIN_AREAMI": 32, "MAX_AREAMI": 32, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -77.4, "MAX_BBXMIN": -77.4, "MIN_BBXMAX": -77.258333, "MAX_BBXMAX": -77.258333, "MIN_BBYMIN": 25, "MAX_BBYMIN": 25, "MIN_BBYMAX": 25.091667, "MAX_BBYMAX": 25.091667, "MEAN_BBXC": -77.335571, "MEAN_BBYC": 25.04483, "COMPARE": 0, "GN_ASCII": "Nassau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 23, "GN_POP": 227940, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Nassau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tegucigalpa", "DIFFASCII": 0, "NAMEASCII": "Tegucigalpa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Honduras", "SOV_A3": "HND", "ADM0NAME": "Honduras", "ADM0_A3": "HND", "ADM1NAME": "Francisco Morazán", "ISO_A2": "HN", "LATITUDE": 14.102045, "LONGITUDE": -87.217529, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 946000, "POP_MIN": 850848, "POP_OTHER": 1014546, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3600949, "MEGANAME": "Tegucigalpa", "LS_NAME": "Tegucigalpa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1014546, "MAX_POP20": 1014546, "MAX_POP50": 1014546, "MAX_POP300": 1014546, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 97, "MAX_AREAKM": 97, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -87.266667, "MAX_BBXMIN": -87.266667, "MIN_BBXMAX": -87.141667, "MAX_BBXMAX": -87.141667, "MIN_BBYMIN": 14.033333, "MAX_BBYMIN": 14.033333, "MIN_BBYMAX": 14.133333, "MAX_BBYMAX": 14.133333, "MEAN_BBXC": -87.19911, "MEAN_BBYC": 14.083298, "COMPARE": 0, "GN_ASCII": "Tegucigalpa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 850848, "ELEVATION": 0, "GTOPO30": 997, "TIMEZONE": "America/Tegucigalpa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 209, "UN_ADM0": "Honduras", "UN_LAT": 14.09, "UN_LONG": -87.2, "POP1950": 73, "POP1955": 96, "POP1960": 128, "POP1965": 169, "POP1970": 223, "POP1975": 292, "POP1980": 371, "POP1985": 471, "POP1990": 578, "POP1995": 677, "POP2000": 793, "POP2005": 901, "POP2010": 946, "POP2015": 1022, "POP2020": 1165, "POP2025": 1317, "POP2050": 1472, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -87.209473, 14.093957 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Managua", "DIFFASCII": 0, "NAMEASCII": "Managua", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nicaragua", "SOV_A3": "NIC", "ADM0NAME": "Nicaragua", "ADM0_A3": "NIC", "ADM1NAME": "Managua", "ISO_A2": "NI", "LATITUDE": 12.153017, "LONGITUDE": -86.268492, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 920000, "POP_MIN": 920000, "POP_OTHER": 1088194, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3617763, "MEGANAME": "Managua", "LS_NAME": "Managua", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1105973, "MAX_POP20": 1105973, "MAX_POP50": 1105973, "MAX_POP300": 1105973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 131, "MIN_AREAMI": 51, "MAX_AREAMI": 51, "MIN_PERKM": 97, "MAX_PERKM": 97, "MIN_PERMI": 60, "MAX_PERMI": 60, "MIN_BBXMIN": -86.383333, "MAX_BBXMIN": -86.383333, "MIN_BBXMAX": -86.158333, "MAX_BBXMAX": -86.158333, "MIN_BBYMIN": 12.075, "MAX_BBYMIN": 12.075, "MIN_BBYMAX": 12.175, "MAX_BBYMAX": 12.175, "MEAN_BBXC": -86.263402, "MEAN_BBYC": 12.13336, "COMPARE": 0, "GN_ASCII": "Managua", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 973087, "ELEVATION": 0, "GTOPO30": 59, "TIMEZONE": "America/Managua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 382, "UN_ADM0": "Nicaragua", "UN_LAT": 12.15, "UN_LONG": -86.27, "POP1950": 110, "POP1955": 148, "POP1960": 199, "POP1965": 269, "POP1970": 366, "POP1975": 443, "POP1980": 525, "POP1985": 621, "POP1990": 735, "POP1995": 865, "POP2000": 887, "POP2005": 909, "POP2010": 920, "POP2015": 944, "POP2020": 1015, "POP2025": 1104, "POP2050": 1193, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.146746 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Managua", "DIFFASCII": 0, "NAMEASCII": "Managua", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nicaragua", "SOV_A3": "NIC", "ADM0NAME": "Nicaragua", "ADM0_A3": "NIC", "ADM1NAME": "Managua", "ISO_A2": "NI", "LATITUDE": 12.153017, "LONGITUDE": -86.268492, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 920000, "POP_MIN": 920000, "POP_OTHER": 1088194, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3617763, "MEGANAME": "Managua", "LS_NAME": "Managua", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1105973, "MAX_POP20": 1105973, "MAX_POP50": 1105973, "MAX_POP300": 1105973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 131, "MIN_AREAMI": 51, "MAX_AREAMI": 51, "MIN_PERKM": 97, "MAX_PERKM": 97, "MIN_PERMI": 60, "MAX_PERMI": 60, "MIN_BBXMIN": -86.383333, "MAX_BBXMIN": -86.383333, "MIN_BBXMAX": -86.158333, "MAX_BBXMAX": -86.158333, "MIN_BBYMIN": 12.075, "MAX_BBYMIN": 12.075, "MIN_BBYMAX": 12.175, "MAX_BBYMAX": 12.175, "MEAN_BBXC": -86.263402, "MEAN_BBYC": 12.13336, "COMPARE": 0, "GN_ASCII": "Managua", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 973087, "ELEVATION": 0, "GTOPO30": 59, "TIMEZONE": "America/Managua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 382, "UN_ADM0": "Nicaragua", "UN_LAT": 12.15, "UN_LONG": -86.27, "POP1950": 110, "POP1955": 148, "POP1960": 199, "POP1965": 269, "POP1970": 366, "POP1975": 443, "POP1980": 525, "POP1985": 621, "POP1990": 735, "POP1995": 865, "POP2000": 887, "POP2005": 909, "POP2010": 920, "POP2015": 944, "POP2020": 1015, "POP2025": 1104, "POP2050": 1193, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.146746 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Jose", "NAMEALT": "San José", "DIFFASCII": 0, "NAMEASCII": "San Jose", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Costa Rica", "SOV_A3": "CRI", "ADM0NAME": "Costa Rica", "ADM0_A3": "CRI", "ADM1NAME": "San José", "ISO_A2": "CR", "LATITUDE": 9.935012, "LONGITUDE": -84.084051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1284000, "POP_MIN": 1724, "POP_OTHER": 1434681, "RANK_MAX": 12, "RANK_MIN": 3, "GEONAMEID": 3669623, "MEGANAME": "San José", "LS_NAME": "San Jose1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1450902, "MAX_POP20": 1826034, "MAX_POP50": 1826034, "MAX_POP300": 1826034, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 431, "MIN_AREAMI": 102, "MAX_AREAMI": 166, "MIN_PERKM": 136, "MAX_PERKM": 270, "MIN_PERMI": 84, "MAX_PERMI": 168, "MIN_BBXMIN": -84.366667, "MAX_BBXMIN": -84.166667, "MIN_BBXMAX": -83.983333, "MAX_BBXMAX": -83.975, "MIN_BBYMIN": 9.841667, "MAX_BBYMIN": 9.841667, "MIN_BBYMAX": 10.041667, "MAX_BBYMAX": 10.05, "MEAN_BBXC": -84.111698, "MEAN_BBYC": 9.959268, "COMPARE": 0, "GN_ASCII": "San Jose", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 37, "GN_POP": 1724, "ELEVATION": 0, "GTOPO30": 1468, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 171, "UN_ADM0": "Costa Rica", "UN_LAT": 9.93, "UN_LONG": -84.07, "POP1950": 148, "POP1955": 184, "POP1960": 230, "POP1965": 287, "POP1970": 359, "POP1975": 440, "POP1980": 526, "POP1985": 627, "POP1990": 737, "POP1995": 867, "POP2000": 1032, "POP2005": 1217, "POP2010": 1284, "POP2015": 1374, "POP2020": 1506, "POP2025": 1627, "POP2050": 1737, "CITYALT": "San Jose", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -84.089355, 9.925566 ] } } , @@ -426,29 +414,27 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kingston", "DIFFASCII": 0, "NAMEASCII": "Kingston", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Jamaica", "SOV_A3": "JAM", "ADM0NAME": "Jamaica", "ADM0_A3": "JAM", "ADM1NAME": "Kingston", "ISO_A2": "JM", "LATITUDE": 17.977077, "LONGITUDE": -76.767434, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 937700, "POP_MIN": 664973, "POP_OTHER": 18171, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3489854, "LS_NAME": "Kingston1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 664973, "MAX_POP20": 664973, "MAX_POP50": 664973, "MAX_POP300": 664973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 120, "MAX_AREAKM": 120, "MIN_AREAMI": 46, "MAX_AREAMI": 46, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": -76.866667, "MAX_BBXMIN": -76.866667, "MIN_BBXMAX": -76.733333, "MAX_BBXMAX": -76.733333, "MIN_BBYMIN": 17.958333, "MAX_BBYMIN": 17.958333, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": -76.798044, "MEAN_BBYC": 18.018509, "COMPARE": 0, "GN_ASCII": "Kingston", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 937700, "ELEVATION": 0, "GTOPO30": 54, "TIMEZONE": "America/Jamaica", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -76.772461, 17.978733 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-au-Prince", "DIFFASCII": 0, "NAMEASCII": "Port-au-Prince", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Haiti", "SOV_A3": "HTI", "ADM0NAME": "Haiti", "ADM0_A3": "HTI", "ADM1NAME": "Ouest", "ISO_A2": "HT", "LATITUDE": 18.541025, "LONGITUDE": -72.336035, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1998000, "POP_MIN": 1234742, "POP_OTHER": 2385397, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3718426, "MEGANAME": "Port-au-Prince", "LS_NAME": "Port-au-Prince", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2445384, "MAX_POP20": 2445384, "MAX_POP50": 2445384, "MAX_POP300": 2445384, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 374, "MAX_AREAKM": 374, "MIN_AREAMI": 144, "MAX_AREAMI": 144, "MIN_PERKM": 287, "MAX_PERKM": 287, "MIN_PERMI": 179, "MAX_PERMI": 179, "MIN_BBXMIN": -72.441667, "MAX_BBXMIN": -72.441667, "MIN_BBXMAX": -72.033333, "MAX_BBXMAX": -72.033333, "MIN_BBYMIN": 18.491667, "MAX_BBYMIN": 18.491667, "MIN_BBYMAX": 18.666667, "MAX_BBYMAX": 18.666667, "MEAN_BBXC": -72.222424, "MEAN_BBYC": 18.56946, "COMPARE": 0, "GN_ASCII": "Port-au-Prince", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1234742, "ELEVATION": 0, "GTOPO30": 65, "TIMEZONE": "America/Port-au-Prince", "GEONAMESNO": "GeoNames match general.", "UN_FID": 208, "UN_ADM0": "Haiti", "UN_LAT": 18.52, "UN_LONG": -72.34, "POP1950": 133, "POP1955": 182, "POP1960": 247, "POP1965": 337, "POP1970": 460, "POP1975": 575, "POP1980": 701, "POP1985": 881, "POP1990": 1134, "POP1995": 1427, "POP2000": 1653, "POP2005": 1885, "POP2010": 1998, "POP2015": 2209, "POP2020": 2621, "POP2025": 3012, "POP2050": 3346, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-au-Prince", "DIFFASCII": 0, "NAMEASCII": "Port-au-Prince", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Haiti", "SOV_A3": "HTI", "ADM0NAME": "Haiti", "ADM0_A3": "HTI", "ADM1NAME": "Ouest", "ISO_A2": "HT", "LATITUDE": 18.541025, "LONGITUDE": -72.336035, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1998000, "POP_MIN": 1234742, "POP_OTHER": 2385397, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3718426, "MEGANAME": "Port-au-Prince", "LS_NAME": "Port-au-Prince", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2445384, "MAX_POP20": 2445384, "MAX_POP50": 2445384, "MAX_POP300": 2445384, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 374, "MAX_AREAKM": 374, "MIN_AREAMI": 144, "MAX_AREAMI": 144, "MIN_PERKM": 287, "MAX_PERKM": 287, "MIN_PERMI": 179, "MAX_PERMI": 179, "MIN_BBXMIN": -72.441667, "MAX_BBXMIN": -72.441667, "MIN_BBXMAX": -72.033333, "MAX_BBXMAX": -72.033333, "MIN_BBYMIN": 18.491667, "MAX_BBYMIN": 18.491667, "MIN_BBYMAX": 18.666667, "MAX_BBYMAX": 18.666667, "MEAN_BBXC": -72.222424, "MEAN_BBYC": 18.56946, "COMPARE": 0, "GN_ASCII": "Port-au-Prince", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1234742, "ELEVATION": 0, "GTOPO30": 65, "TIMEZONE": "America/Port-au-Prince", "GEONAMESNO": "GeoNames match general.", "UN_FID": 208, "UN_ADM0": "Haiti", "UN_LAT": 18.52, "UN_LONG": -72.34, "POP1950": 133, "POP1955": 182, "POP1960": 247, "POP1965": 337, "POP1970": 460, "POP1975": 575, "POP1980": 701, "POP1985": 881, "POP1990": 1134, "POP1995": 1427, "POP2000": 1653, "POP2005": 1885, "POP2010": 1998, "POP2015": 2209, "POP2020": 2621, "POP2025": 3012, "POP2050": 3346, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.458768 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.458768 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bogota", "NAMEALT": "Bogotá", "DIFFASCII": 0, "NAMEASCII": "Bogota", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Colombia", "SOV_A3": "COL", "ADM0NAME": "Colombia", "ADM0_A3": "COL", "ADM1NAME": "Bogota", "ISO_A2": "CO", "LATITUDE": 4.596424, "LONGITUDE": -74.083344, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7772000, "POP_MIN": 6333661, "POP_OTHER": 5754084, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3688689, "MEGANAME": "Bogotá", "LS_NAME": "Bogota", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6333661, "MAX_POP20": 6333154, "MAX_POP50": 6333154, "MAX_POP300": 6333154, "MAX_POP310": 6333154, "MAX_NATSCA": 300, "MIN_AREAKM": 523, "MAX_AREAKM": 523, "MIN_AREAMI": 202, "MAX_AREAMI": 202, "MIN_PERKM": 186, "MAX_PERKM": 186, "MIN_PERMI": 116, "MAX_PERMI": 116, "MIN_BBXMIN": -74.266667, "MAX_BBXMIN": -74.266667, "MIN_BBXMAX": -74.008333, "MAX_BBXMAX": -74.008333, "MIN_BBYMIN": 4.483333, "MAX_BBYMIN": 4.483333, "MIN_BBYMAX": 4.8, "MAX_BBYMAX": 4.8, "MEAN_BBXC": -74.116517, "MEAN_BBYC": 4.643227, "COMPARE": 0, "GN_ASCII": "Bogota", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 34, "GN_POP": 7102602, "ELEVATION": 0, "GTOPO30": 2620, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 161, "UN_ADM0": "Colombia", "UN_LAT": 4.63, "UN_LONG": -74.08, "POP1950": 630, "POP1955": 894, "POP1960": 1269, "POP1965": 1780, "POP1970": 2383, "POP1975": 3040, "POP1980": 3525, "POP1985": 4087, "POP1990": 4740, "POP1995": 5494, "POP2000": 6356, "POP2005": 7353, "POP2010": 7772, "POP2015": 8320, "POP2020": 8916, "POP2025": 9299, "POP2050": 9600, "CITYALT": "Bogota", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -74.069824, 4.587376 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bogota", "NAMEALT": "Bogotá", "DIFFASCII": 0, "NAMEASCII": "Bogota", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Colombia", "SOV_A3": "COL", "ADM0NAME": "Colombia", "ADM0_A3": "COL", "ADM1NAME": "Bogota", "ISO_A2": "CO", "LATITUDE": 4.596424, "LONGITUDE": -74.083344, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7772000, "POP_MIN": 6333661, "POP_OTHER": 5754084, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3688689, "MEGANAME": "Bogotá", "LS_NAME": "Bogota", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6333661, "MAX_POP20": 6333154, "MAX_POP50": 6333154, "MAX_POP300": 6333154, "MAX_POP310": 6333154, "MAX_NATSCA": 300, "MIN_AREAKM": 523, "MAX_AREAKM": 523, "MIN_AREAMI": 202, "MAX_AREAMI": 202, "MIN_PERKM": 186, "MAX_PERKM": 186, "MIN_PERMI": 116, "MAX_PERMI": 116, "MIN_BBXMIN": -74.266667, "MAX_BBXMIN": -74.266667, "MIN_BBXMAX": -74.008333, "MAX_BBXMAX": -74.008333, "MIN_BBYMIN": 4.483333, "MAX_BBYMIN": 4.483333, "MIN_BBYMAX": 4.8, "MAX_BBYMAX": 4.8, "MEAN_BBXC": -74.116517, "MEAN_BBYC": 4.643227, "COMPARE": 0, "GN_ASCII": "Bogota", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 34, "GN_POP": 7102602, "ELEVATION": 0, "GTOPO30": 2620, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 161, "UN_ADM0": "Colombia", "UN_LAT": 4.63, "UN_LONG": -74.08, "POP1950": 630, "POP1955": 894, "POP1960": 1269, "POP1965": 1780, "POP1970": 2383, "POP1975": 3040, "POP1980": 3525, "POP1985": 4087, "POP1990": 4740, "POP1995": 5494, "POP2000": 6356, "POP2005": 7353, "POP2010": 7772, "POP2015": 8320, "POP2020": 8916, "POP2025": 9299, "POP2050": 9600, "CITYALT": "Bogota", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -74.069824, 4.587376 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.287709 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint John's", "DIFFASCII": 0, "NAMEASCII": "Saint John's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Antigua and Barbuda", "SOV_A3": "ATG", "ADM0NAME": "Antigua and Barbuda", "ADM0_A3": "ATG", "ISO_A2": "AG", "LATITUDE": 17.118037, "LONGITUDE": -61.850034, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 35499, "POP_MIN": 24226, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3576022, "LS_NAME": "Saint John's", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 35499, "MAX_POP20": 35499, "MAX_POP50": 35499, "MAX_POP300": 35499, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 25, "MAX_AREAKM": 25, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 38, "MAX_PERKM": 38, "MIN_PERMI": 24, "MAX_PERMI": 24, "MIN_BBXMIN": -61.858333, "MAX_BBXMIN": -61.858333, "MIN_BBXMAX": -61.783333, "MAX_BBXMAX": -61.783333, "MIN_BBYMIN": 17.091667, "MAX_BBYMIN": 17.091667, "MIN_BBYMAX": 17.141667, "MAX_BBYMAX": 17.141667, "MEAN_BBXC": -61.824059, "MEAN_BBYC": 17.120565, "COMPARE": 0, "GN_ASCII": "Saint John's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 24226, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Antigua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -61.853027, 17.119793 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.305380 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Castries", "DIFFASCII": 0, "NAMEASCII": "Castries", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Lucia", "SOV_A3": "LCA", "ADM0NAME": "Saint Lucia", "ADM0_A3": "LCA", "ISO_A2": "LC", "LATITUDE": 14.001973, "LONGITUDE": -61.000008, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 37963, "POP_MIN": 10634, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3028258, "LS_NAME": "Castries", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 64343, "MAX_POP20": 64343, "MAX_POP50": 64343, "MAX_POP300": 64343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 16, "MAX_AREAKM": 16, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 22, "MAX_PERKM": 22, "MIN_PERMI": 14, "MAX_PERMI": 14, "MIN_BBXMIN": -61.008333, "MAX_BBXMIN": -61.008333, "MIN_BBXMAX": -60.966667, "MAX_BBXMAX": -60.966667, "MIN_BBYMIN": 13.975, "MAX_BBYMIN": 13.975, "MIN_BBYMAX": 14.025, "MAX_BBYMAX": 14.025, "MEAN_BBXC": -60.988377, "MEAN_BBYC": 14.005921, "COMPARE": 0, "GN_ASCII": "Castries", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5790, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Europe/Paris", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.987376 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.305380 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.132979 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Castries", "DIFFASCII": 0, "NAMEASCII": "Castries", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Lucia", "SOV_A3": "LCA", "ADM0NAME": "Saint Lucia", "ADM0_A3": "LCA", "ISO_A2": "LC", "LATITUDE": 14.001973, "LONGITUDE": -61.000008, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 37963, "POP_MIN": 10634, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3028258, "LS_NAME": "Castries", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 64343, "MAX_POP20": 64343, "MAX_POP50": 64343, "MAX_POP300": 64343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 16, "MAX_AREAKM": 16, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 22, "MAX_PERKM": 22, "MIN_PERMI": 14, "MAX_PERMI": 14, "MIN_BBXMIN": -61.008333, "MAX_BBXMIN": -61.008333, "MIN_BBXMAX": -60.966667, "MAX_BBXMAX": -60.966667, "MIN_BBYMIN": 13.975, "MAX_BBYMIN": 13.975, "MIN_BBYMAX": 14.025, "MAX_BBYMAX": 14.025, "MEAN_BBXC": -60.988377, "MEAN_BBYC": 14.005921, "COMPARE": 0, "GN_ASCII": "Castries", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5790, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Europe/Paris", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.987376 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint George‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.132979 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bridgetown", "DIFFASCII": 0, "NAMEASCII": "Bridgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Barbados", "SOV_A3": "BRB", "ADM0NAME": "Barbados", "ADM0_A3": "BRB", "ADM1NAME": "Saint Michael", "ISO_A2": "BB", "LATITUDE": 13.102003, "LONGITUDE": -59.616527, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 191152, "POP_MIN": 96578, "POP_OTHER": 191814, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2075807, "LS_NAME": "Bridgetown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 191152, "MAX_POP20": 191152, "MAX_POP50": 191152, "MAX_POP300": 191152, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 131, "MAX_PERKM": 131, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": -59.641667, "MAX_BBXMIN": -59.641667, "MIN_BBXMAX": -59.5, "MAX_BBXMAX": -59.5, "MIN_BBYMIN": 13.05, "MAX_BBYMIN": 13.05, "MIN_BBYMAX": 13.266667, "MAX_BBYMAX": 13.266667, "MEAN_BBXC": -59.589731, "MEAN_BBYC": 13.128773, "COMPARE": 0, "GN_ASCII": "Bridgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 2971, "ELEVATION": 0, "GTOPO30": 152, "TIMEZONE": "Australia/Perth", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -59.611816, 13.090179 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint George‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -66.906738, 10.487812 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bridgetown", "DIFFASCII": 0, "NAMEASCII": "Bridgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Barbados", "SOV_A3": "BRB", "ADM0NAME": "Barbados", "ADM0_A3": "BRB", "ADM1NAME": "Saint Michael", "ISO_A2": "BB", "LATITUDE": 13.102003, "LONGITUDE": -59.616527, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 191152, "POP_MIN": 96578, "POP_OTHER": 191814, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2075807, "LS_NAME": "Bridgetown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 191152, "MAX_POP20": 191152, "MAX_POP50": 191152, "MAX_POP300": 191152, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 131, "MAX_PERKM": 131, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": -59.641667, "MAX_BBXMIN": -59.641667, "MIN_BBXMAX": -59.5, "MAX_BBXMAX": -59.5, "MIN_BBYMIN": 13.05, "MAX_BBYMIN": 13.05, "MIN_BBYMAX": 13.266667, "MAX_BBYMAX": 13.266667, "MEAN_BBXC": -59.589731, "MEAN_BBYC": 13.128773, "COMPARE": 0, "GN_ASCII": "Bridgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 2971, "ELEVATION": 0, "GTOPO30": 152, "TIMEZONE": "Australia/Perth", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 350, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 13.102003, "numnum:min:LATITUDE": 10.500999, "numnum:sum:LATITUDE": 23.603002, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -59.616527, "numnum:min:LONGITUDE": -66.917037, "numnum:sum:LONGITUDE": -126.53356399999999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2985000, "numnum:min:POP_MAX": 191152, "numnum:sum:POP_MAX": 3176152, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1815679, "numnum:min:POP_MIN": 96578, "numnum:sum:POP_MIN": 1912257, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2764555, "numnum:min:POP_OTHER": 191814, "numnum:sum:POP_OTHER": 2956369, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 20, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3646738, "numnum:min:GEONAMEID": 2075807, "numnum:sum:GEONAMEID": 5722545, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2818500, "numnum:min:MAX_POP10": 191152, "numnum:sum:MAX_POP10": 3009652, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3351058, "numnum:min:MAX_POP20": 191152, "numnum:sum:MAX_POP20": 3542210, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3351241, "numnum:min:MAX_POP50": 191152, "numnum:sum:MAX_POP50": 3542393, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3351241, "numnum:min:MAX_POP300": 191152, "numnum:sum:MAX_POP300": 3542393, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 224, "numnum:min:MIN_AREAKM": 106, "numnum:sum:MIN_AREAKM": 330, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 370, "numnum:min:MAX_AREAKM": 106, "numnum:sum:MAX_AREAKM": 476, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 86, "numnum:min:MIN_AREAMI": 41, "numnum:sum:MIN_AREAMI": 127, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 143, "numnum:min:MAX_AREAMI": 41, "numnum:sum:MAX_AREAMI": 184, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 137, "numnum:min:MIN_PERKM": 131, "numnum:sum:MIN_PERKM": 268, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 278, "numnum:min:MAX_PERKM": 131, "numnum:sum:MAX_PERKM": 409, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 85, "numnum:min:MIN_PERMI": 82, "numnum:sum:MIN_PERMI": 167, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 172, "numnum:min:MAX_PERMI": 82, "numnum:sum:MAX_PERMI": 254, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -59.641667, "numnum:min:MIN_BBXMIN": -67.133333, "numnum:sum:MIN_BBXMIN": -126.77499999999999, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -59.641667, "numnum:min:MAX_BBXMIN": -66.993057, "numnum:sum:MAX_BBXMIN": -126.63472399999999, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -59.5, "numnum:min:MIN_BBXMAX": -66.725, "numnum:sum:MIN_BBXMAX": -126.225, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -59.5, "numnum:min:MAX_BBXMAX": -66.725, "numnum:sum:MAX_BBXMAX": -126.225, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 13.05, "numnum:min:MIN_BBYMIN": 10.325, "numnum:sum:MIN_BBYMIN": 23.375, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 13.05, "numnum:min:MAX_BBYMIN": 10.408333, "numnum:sum:MAX_BBYMIN": 23.458333000000004, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 13.266667, "numnum:min:MIN_BBYMAX": 10.533671, "numnum:sum:MIN_BBYMAX": 23.800338, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 13.266667, "numnum:min:MAX_BBYMAX": 10.541667, "numnum:sum:MAX_BBYMAX": 23.808334000000003, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -59.589731, "numnum:min:MEAN_BBXC": -66.917919, "numnum:sum:MEAN_BBXC": -126.50765, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 13.128773, "numnum:min:MEAN_BBYC": 10.451672, "numnum:sum:MEAN_BBYC": 23.580445, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 25, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 33, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1815679, "numnum:min:GN_POP": 2971, "numnum:sum:GN_POP": 1818650, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 920, "numnum:min:GTOPO30": 152, "numnum:sum:GTOPO30": 1072, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 582, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 582, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 10.49, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 10.49, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -66.89, "numnum:sum:UN_LONG": -66.89, "numnum:count:POP1950": 2, "numnum:max:POP1950": 694, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 694, "numnum:count:POP1955": 2, "numnum:max:POP1955": 955, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 955, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1316, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1316, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1657, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1657, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2060, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2060, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2342, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2342, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2575, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2575, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2693, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2693, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2767, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2767, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2816, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2816, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2864, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2864, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2930, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2930, "numnum:count:POP2010": 2, "numnum:max:POP2010": 2985, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2985, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3098, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3098, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3306, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3306, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3482, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3482, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3619, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3619, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -59.611816, 13.090179 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -61.501465, 10.639014 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -61.501465, 10.639014 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Georgetown", "DIFFASCII": 0, "NAMEASCII": "Georgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Guyana", "SOV_A3": "GUY", "ADM0NAME": "Guyana", "ADM0_A3": "GUY", "ADM1NAME": "East Berbice-Corentyne", "ISO_A2": "GY", "LATITUDE": 6.801974, "LONGITUDE": -58.167029, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 264350, "POP_MIN": 235017, "POP_OTHER": 264350, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3378644, "LS_NAME": "Georgetown1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 264350, "MAX_POP20": 264350, "MAX_POP50": 264350, "MAX_POP300": 264350, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": -58.2, "MAX_BBXMIN": -58.2, "MIN_BBXMAX": -58.116667, "MAX_BBXMAX": -58.116667, "MIN_BBYMIN": 6.75, "MAX_BBYMIN": 6.75, "MIN_BBYMAX": 6.833333, "MAX_BBYMAX": 6.833333, "MEAN_BBXC": -58.153788, "MEAN_BBYC": 6.797348, "COMPARE": 0, "GN_ASCII": "Georgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 235017, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Guyana", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -58.161621, 6.795535 ] } } , @@ -456,47 +442,43 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Reykjavík", "DIFFASCII": 1, "NAMEASCII": "Reykjavik", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Iceland", "SOV_A3": "ISL", "ADM0NAME": "Iceland", "ADM0_A3": "ISL", "ADM1NAME": "Suðurnes", "ISO_A2": "IS", "LATITUDE": 64.150024, "LONGITUDE": -21.950014, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 166212, "POP_MIN": 113906, "POP_OTHER": 160116, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3413829, "LS_NAME": "Reykjavik", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 166212, "MAX_POP20": 166212, "MAX_POP50": 166212, "MAX_POP300": 166212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 75, "MAX_AREAKM": 75, "MIN_AREAMI": 29, "MAX_AREAMI": 29, "MIN_PERKM": 119, "MAX_PERKM": 119, "MIN_PERMI": 74, "MAX_PERMI": 74, "MIN_BBXMIN": -22.008333, "MAX_BBXMIN": -22.008333, "MIN_BBXMAX": -21.75, "MAX_BBXMAX": -21.75, "MIN_BBYMIN": 64.05, "MAX_BBYMIN": 64.05, "MIN_BBYMAX": 64.166667, "MAX_BBYMAX": 64.166667, "MEAN_BBXC": -21.8825, "MEAN_BBYC": 64.116125, "COMPARE": 0, "GN_ASCII": "Reykjavik", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 39, "GN_POP": 113906, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Atlantic/Reykjavik", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Praia", "DIFFASCII": 0, "NAMEASCII": "Praia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cape Verde", "SOV_A3": "CPV", "ADM0NAME": "Cape Verde", "ADM0_A3": "CPV", "ISO_A2": "CV", "LATITUDE": 14.916698, "LONGITUDE": -23.516689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 113364, "POP_MIN": 88859, "POP_OTHER": 89205, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 3374333, "LS_NAME": "Praia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88859, "MAX_POP20": 88859, "MAX_POP50": 88859, "MAX_POP300": 88859, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 40, "MAX_PERKM": 40, "MIN_PERMI": 25, "MAX_PERMI": 25, "MIN_BBXMIN": -23.541667, "MAX_BBXMIN": -23.541667, "MIN_BBXMAX": -23.483333, "MAX_BBXMAX": -23.483333, "MIN_BBYMIN": 14.9, "MAX_BBYMIN": 14.9, "MIN_BBYMAX": 14.983333, "MAX_BBYMAX": 14.983333, "MEAN_BBXC": -23.514907, "MEAN_BBYC": 14.938056, "COMPARE": 0, "GN_ASCII": "Praia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 113364, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Atlantic/Cape_Verde", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.902322 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Praia", "DIFFASCII": 0, "NAMEASCII": "Praia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cape Verde", "SOV_A3": "CPV", "ADM0NAME": "Cape Verde", "ADM0_A3": "CPV", "ISO_A2": "CV", "LATITUDE": 14.916698, "LONGITUDE": -23.516689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 113364, "POP_MIN": 88859, "POP_OTHER": 89205, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 3374333, "LS_NAME": "Praia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88859, "MAX_POP20": 88859, "MAX_POP50": 88859, "MAX_POP300": 88859, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 40, "MAX_PERKM": 40, "MIN_PERMI": 25, "MAX_PERMI": 25, "MIN_BBXMIN": -23.541667, "MAX_BBXMIN": -23.541667, "MIN_BBXMAX": -23.483333, "MAX_BBXMAX": -23.483333, "MIN_BBYMIN": 14.9, "MAX_BBYMIN": 14.9, "MIN_BBYMAX": 14.983333, "MAX_BBYMAX": 14.983333, "MEAN_BBXC": -23.514907, "MEAN_BBYC": 14.938056, "COMPARE": 0, "GN_ASCII": "Praia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 113364, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Atlantic/Cape_Verde", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.902322 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laâyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -7.602539, 33.596319 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -7.602539, 33.596319 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rabat", "DIFFASCII": 0, "NAMEASCII": "Rabat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Rabat - Salé - Zemmour - Zaer", "ISO_A2": "MA", "LATITUDE": 34.025299, "LONGITUDE": -6.836131, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1705000, "POP_MIN": 1655753, "POP_OTHER": 2029349, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2538475, "MEGANAME": "Rabat", "LS_NAME": "Rabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2037124, "MAX_POP20": 2037124, "MAX_POP50": 2037124, "MAX_POP300": 2037124, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 428, "MAX_AREAKM": 428, "MIN_AREAMI": 165, "MAX_AREAMI": 165, "MIN_PERKM": 475, "MAX_PERKM": 475, "MIN_PERMI": 295, "MAX_PERMI": 295, "MIN_BBXMIN": -7.116667, "MAX_BBXMIN": -7.116667, "MIN_BBXMAX": -6.725, "MAX_BBXMAX": -6.725, "MIN_BBYMIN": 33.741667, "MAX_BBYMIN": 33.741667, "MIN_BBYMAX": 34.125, "MAX_BBYMAX": 34.125, "MEAN_BBXC": -6.87491, "MEAN_BBYC": 33.912847, "COMPARE": 0, "GN_ASCII": "Rabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 49, "GN_POP": 1655753, "ELEVATION": 0, "GTOPO30": 54, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 375, "UN_ADM0": "Morocco", "UN_LAT": 34.01, "UN_LONG": -6.83, "POP1950": 145, "POP1955": 184, "POP1960": 233, "POP1965": 339, "POP1970": 494, "POP1975": 641, "POP1980": 808, "POP1985": 986, "POP1990": 1174, "POP1995": 1379, "POP2000": 1507, "POP2005": 1647, "POP2010": 1705, "POP2015": 1793, "POP2020": 1938, "POP2025": 2083, "POP2050": 2222, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.016242 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -3.669434, 40.396764 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -3.669434, 40.396764 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dakar", "DIFFASCII": 0, "NAMEASCII": "Dakar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Senegal", "SOV_A3": "SEN", "ADM0NAME": "Senegal", "ADM0_A3": "SEN", "ADM1NAME": "Dakar", "ISO_A2": "SM", "LATITUDE": 14.715832, "LONGITUDE": -17.47313, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2604000, "POP_MIN": 2476400, "POP_OTHER": 2470140, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2253354, "MEGANAME": "Dakar", "LS_NAME": "Dakar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2635239, "MAX_POP20": 2634882, "MAX_POP50": 2660614, "MAX_POP300": 2660614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 257, "MAX_AREAKM": 302, "MIN_AREAMI": 99, "MAX_AREAMI": 117, "MIN_PERKM": 222, "MAX_PERKM": 288, "MIN_PERMI": 138, "MAX_PERMI": 179, "MIN_BBXMIN": -17.533333, "MAX_BBXMIN": -17.533333, "MIN_BBXMAX": -17.2, "MAX_BBXMAX": -17.125, "MIN_BBYMIN": 14.65, "MAX_BBYMIN": 14.65, "MIN_BBYMAX": 14.825, "MAX_BBYMAX": 14.825, "MEAN_BBXC": -17.343779, "MEAN_BBYC": 14.742828, "COMPARE": 0, "GN_ASCII": "Dakar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 2476400, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Africa/Dakar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 447, "UN_ADM0": "Senegal", "UN_LAT": 14.68, "UN_LONG": -17.45, "POP1950": 211, "POP1955": 235, "POP1960": 359, "POP1965": 473, "POP1970": 610, "POP1975": 782, "POP1980": 957, "POP1985": 1162, "POP1990": 1405, "POP1995": 1688, "POP2000": 2029, "POP2005": 2434, "POP2010": 2604, "POP2015": 2856, "POP2020": 3275, "POP2025": 3726, "POP2050": 4225, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -17.468262, 14.711135 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dakar", "DIFFASCII": 0, "NAMEASCII": "Dakar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Senegal", "SOV_A3": "SEN", "ADM0NAME": "Senegal", "ADM0_A3": "SEN", "ADM1NAME": "Dakar", "ISO_A2": "SM", "LATITUDE": 14.715832, "LONGITUDE": -17.47313, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2604000, "POP_MIN": 2476400, "POP_OTHER": 2470140, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2253354, "MEGANAME": "Dakar", "LS_NAME": "Dakar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2635239, "MAX_POP20": 2634882, "MAX_POP50": 2660614, "MAX_POP300": 2660614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 257, "MAX_AREAKM": 302, "MIN_AREAMI": 99, "MAX_AREAMI": 117, "MIN_PERKM": 222, "MAX_PERKM": 288, "MIN_PERMI": 138, "MAX_PERMI": 179, "MIN_BBXMIN": -17.533333, "MAX_BBXMIN": -17.533333, "MIN_BBXMAX": -17.2, "MAX_BBXMAX": -17.125, "MIN_BBYMIN": 14.65, "MAX_BBYMIN": 14.65, "MIN_BBYMAX": 14.825, "MAX_BBYMAX": 14.825, "MEAN_BBXC": -17.343779, "MEAN_BBYC": 14.742828, "COMPARE": 0, "GN_ASCII": "Dakar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 2476400, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Africa/Dakar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 447, "UN_ADM0": "Senegal", "UN_LAT": 14.68, "UN_LONG": -17.45, "POP1950": 211, "POP1955": 235, "POP1960": 359, "POP1965": 473, "POP1970": 610, "POP1975": 782, "POP1980": 957, "POP1985": 1162, "POP1990": 1405, "POP1995": 1688, "POP2000": 2029, "POP2005": 2434, "POP2010": 2604, "POP2015": 2856, "POP2020": 3275, "POP2025": 3726, "POP2050": 4225, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 7, "numnum:sum:LABELRANK": 15, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 18.086427, "numnum:min:LATITUDE": 14.715832, "numnum:sum:LATITUDE": 32.802259, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -15.97534, "numnum:min:LONGITUDE": -17.47313, "numnum:sum:LONGITUDE": -33.44847, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2604000, "numnum:min:POP_MAX": 742144, "numnum:sum:POP_MAX": 3346144, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2476400, "numnum:min:POP_MIN": 661400, "numnum:sum:POP_MIN": 3137800, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2470140, "numnum:min:POP_OTHER": 742144, "numnum:sum:POP_OTHER": 3212284, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2377450, "numnum:min:GEONAMEID": 2253354, "numnum:sum:GEONAMEID": 4630804, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2635239, "numnum:min:MAX_POP10": 742144, "numnum:sum:MAX_POP10": 3377383, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2634882, "numnum:min:MAX_POP20": 742144, "numnum:sum:MAX_POP20": 3377026, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 2660614, "numnum:min:MAX_POP50": 742144, "numnum:sum:MAX_POP50": 3402758, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 2660614, "numnum:min:MAX_POP300": 742144, "numnum:sum:MAX_POP300": 3402758, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 257, "numnum:min:MIN_AREAKM": 98, "numnum:sum:MIN_AREAKM": 355, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 302, "numnum:min:MAX_AREAKM": 98, "numnum:sum:MAX_AREAKM": 400, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 99, "numnum:min:MIN_AREAMI": 38, "numnum:sum:MIN_AREAMI": 137, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 117, "numnum:min:MAX_AREAMI": 38, "numnum:sum:MAX_AREAMI": 155, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 222, "numnum:min:MIN_PERKM": 92, "numnum:sum:MIN_PERKM": 314, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 288, "numnum:min:MAX_PERKM": 92, "numnum:sum:MAX_PERKM": 380, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 138, "numnum:min:MIN_PERMI": 57, "numnum:sum:MIN_PERMI": 195, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 179, "numnum:min:MAX_PERMI": 57, "numnum:sum:MAX_PERMI": 236, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -16.016667, "numnum:min:MIN_BBXMIN": -17.533333, "numnum:sum:MIN_BBXMIN": -33.55, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -16.016667, "numnum:min:MAX_BBXMIN": -17.533333, "numnum:sum:MAX_BBXMIN": -33.55, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -15.891667, "numnum:min:MIN_BBXMAX": -17.2, "numnum:sum:MIN_BBXMAX": -33.091667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -15.891667, "numnum:min:MAX_BBXMAX": -17.125, "numnum:sum:MAX_BBXMAX": -33.016667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 18.033333, "numnum:min:MIN_BBYMIN": 14.65, "numnum:sum:MIN_BBYMIN": 32.683333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 18.033333, "numnum:min:MAX_BBYMIN": 14.65, "numnum:sum:MAX_BBYMIN": 32.683333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 18.15, "numnum:min:MIN_BBYMAX": 14.825, "numnum:sum:MIN_BBYMAX": 32.974999999999997, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 18.15, "numnum:min:MAX_BBYMAX": 14.825, "numnum:sum:MAX_BBYMAX": 32.974999999999997, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -15.960139, "numnum:min:MEAN_BBXC": -17.343779, "numnum:sum:MEAN_BBXC": -33.303918, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 18.092569, "numnum:min:MEAN_BBYC": 14.742828, "numnum:sum:MEAN_BBYC": 32.835397, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 6, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 7, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2476400, "numnum:min:GN_POP": 661400, "numnum:sum:GN_POP": 3137800, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 14, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9985, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 447, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 447, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 14.68, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 14.68, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -17.45, "numnum:sum:UN_LONG": -17.45, "numnum:count:POP1950": 2, "numnum:max:POP1950": 211, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 211, "numnum:count:POP1955": 2, "numnum:max:POP1955": 235, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 235, "numnum:count:POP1960": 2, "numnum:max:POP1960": 359, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 359, "numnum:count:POP1965": 2, "numnum:max:POP1965": 473, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 473, "numnum:count:POP1970": 2, "numnum:max:POP1970": 610, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 610, "numnum:count:POP1975": 2, "numnum:max:POP1975": 782, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 782, "numnum:count:POP1980": 2, "numnum:max:POP1980": 957, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 957, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1162, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1162, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1405, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1405, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1688, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1688, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2029, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2029, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2434, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2434, "numnum:count:POP2010": 2, "numnum:max:POP2010": 2604, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2604, "numnum:count:POP2015": 2, "numnum:max:POP2015": 2856, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2856, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3275, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3275, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3726, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3726, "numnum:count:POP2050": 2, "numnum:max:POP2050": 4225, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4225, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -17.468262, 14.711135 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144, "MAX_POP20": 742144, "MAX_POP50": 742144, "MAX_POP300": 742144, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 98, "MAX_AREAKM": 98, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 661400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Banjul", "DIFFASCII": 0, "NAMEASCII": "Banjul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gambia, The", "SOV_A3": "GMB", "ADM0NAME": "The Gambia", "ADM0_A3": "GMB", "ADM1NAME": "Banjul", "ISO_A2": "GM", "LATITUDE": 13.453876, "LONGITUDE": -16.591701, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 43094, "POP_MIN": 34589, "POP_OTHER": 581300, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2413876, "LS_NAME": "Banjul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 43094, "MAX_POP20": 43094, "MAX_POP50": 43094, "MAX_POP300": 43094, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 13, "MAX_PERKM": 13, "MIN_PERMI": 8, "MAX_PERMI": 8, "MIN_BBXMIN": -16.6, "MAX_BBXMIN": -16.6, "MIN_BBXMAX": -16.566667, "MAX_BBXMAX": -16.566667, "MIN_BBYMIN": 13.441667, "MAX_BBYMIN": 13.441667, "MIN_BBYMAX": 13.466667, "MAX_BBYMAX": 13.466667, "MEAN_BBXC": -16.58125, "MEAN_BBYC": 13.455208, "COMPARE": 0, "GN_ASCII": "Banjul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 34589, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "Africa/Banjul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Banjul", "DIFFASCII": 0, "NAMEASCII": "Banjul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gambia, The", "SOV_A3": "GMB", "ADM0NAME": "The Gambia", "ADM0_A3": "GMB", "ADM1NAME": "Banjul", "ISO_A2": "GM", "LATITUDE": 13.453876, "LONGITUDE": -16.591701, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 43094, "POP_MIN": 34589, "POP_OTHER": 581300, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2413876, "LS_NAME": "Banjul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 43094, "MAX_POP20": 43094, "MAX_POP50": 43094, "MAX_POP300": 43094, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 13, "MAX_PERKM": 13, "MIN_PERMI": 8, "MAX_PERMI": 8, "MIN_BBXMIN": -16.6, "MAX_BBXMIN": -16.6, "MIN_BBXMAX": -16.566667, "MAX_BBXMAX": -16.566667, "MIN_BBYMIN": 13.441667, "MAX_BBYMIN": 13.441667, "MIN_BBYMAX": 13.466667, "MAX_BBYMAX": 13.466667, "MEAN_BBXC": -16.58125, "MEAN_BBYC": 13.455208, "COMPARE": 0, "GN_ASCII": "Banjul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 34589, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "Africa/Banjul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bissau", "DIFFASCII": 0, "NAMEASCII": "Bissau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Guinea Bissau", "SOV_A3": "GNB", "ADM0NAME": "Guinea Bissau", "ADM0_A3": "GNB", "ADM1NAME": "Bissau", "ISO_A2": "GW", "LATITUDE": 11.865024, "LONGITUDE": -15.598361, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 403339, "POP_MIN": 388028, "POP_OTHER": 403339, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2374775, "LS_NAME": "Bissau", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 403339, "MAX_POP20": 403339, "MAX_POP50": 403339, "MAX_POP300": 403339, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 70, "MIN_AREAMI": 27, "MAX_AREAMI": 27, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -15.658333, "MAX_BBXMIN": -15.658333, "MIN_BBXMAX": -15.558333, "MAX_BBXMAX": -15.558333, "MIN_BBYMIN": 11.808333, "MAX_BBYMIN": 11.808333, "MIN_BBYMAX": 11.933333, "MAX_BBYMAX": 11.933333, "MEAN_BBXC": -15.612698, "MEAN_BBYC": 11.871032, "COMPARE": 0, "GN_ASCII": "Bissau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 388028, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Bissau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -15.600586, 11.867351 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Freetown", "DIFFASCII": 0, "NAMEASCII": "Freetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sierra Leone", "SOV_A3": "SLE", "ADM0NAME": "Sierra Leone", "ADM0_A3": "SLE", "ADM1NAME": "Western", "ISO_A2": "SL", "LATITUDE": 8.470011, "LONGITUDE": -13.234216, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 827000, "POP_MIN": 13768, "POP_OTHER": 1074640, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 2408770, "MEGANAME": "Freetown", "LS_NAME": "Freetown", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1074311, "MAX_POP20": 1074311, "MAX_POP50": 1074311, "MAX_POP300": 1074311, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 81, "MAX_PERKM": 81, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": -13.3, "MAX_BBXMIN": -13.3, "MIN_BBXMAX": -13.15, "MAX_BBXMAX": -13.15, "MIN_BBYMIN": 8.408333, "MAX_BBYMIN": 8.408333, "MIN_BBYMAX": 8.5, "MAX_BBYMAX": 8.5, "MEAN_BBXC": -13.230082, "MEAN_BBYC": 8.462592, "COMPARE": 0, "GN_ASCII": "Freetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 4, "GN_POP": 13768, "ELEVATION": 0, "GTOPO30": 15, "TIMEZONE": "Africa/Freetown", "GEONAMESNO": "GeoNames match general.", "UN_FID": 449, "UN_ADM0": "Sierra Leone", "UN_LAT": 8.48, "UN_LONG": -13.23, "POP1950": 92, "POP1955": 104, "POP1960": 119, "POP1965": 148, "POP1970": 206, "POP1975": 284, "POP1980": 361, "POP1985": 460, "POP1990": 529, "POP1995": 603, "POP2000": 688, "POP2005": 785, "POP2010": 827, "POP2015": 894, "POP2020": 1029, "POP2025": 1200, "POP2050": 1406, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -13.227539, 8.472372 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bamako", "DIFFASCII": 0, "NAMEASCII": "Bamako", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mali", "SOV_A3": "MLI", "ADM0NAME": "Mali", "ADM0_A3": "MLI", "ADM1NAME": "Bamako", "ISO_A2": "ML", "LATITUDE": 12.650015, "LONGITUDE": -8.000039, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1297281, "POP_OTHER": 1301407, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2460596, "MEGANAME": "Bamako", "LS_NAME": "Bamako", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1316564, "MAX_POP20": 1316564, "MAX_POP50": 1316564, "MAX_POP300": 1316564, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 172, "MAX_AREAKM": 172, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 106, "MAX_PERKM": 106, "MIN_PERMI": 66, "MAX_PERMI": 66, "MIN_BBXMIN": -8.058333, "MAX_BBXMIN": -8.058333, "MIN_BBXMAX": -7.908333, "MAX_BBXMAX": -7.908333, "MIN_BBYMIN": 12.541667, "MAX_BBYMIN": 12.541667, "MIN_BBYMAX": 12.716667, "MAX_BBYMAX": 12.716667, "MEAN_BBXC": -7.987419, "MEAN_BBYC": 12.626173, "COMPARE": 0, "GN_ASCII": "Bamako", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1297281, "ELEVATION": 0, "GTOPO30": 350, "TIMEZONE": "Africa/Bamako", "GEONAMESNO": "GeoNames match general.", "UN_FID": 349, "UN_ADM0": "Mali", "UN_LAT": 12.65, "UN_LONG": -7.98, "POP1950": 89, "POP1955": 111, "POP1960": 130, "POP1965": 158, "POP1970": 222, "POP1975": 363, "POP1980": 489, "POP1985": 608, "POP1990": 746, "POP1995": 910, "POP2000": 1110, "POP2005": 1368, "POP2010": 1494, "POP2015": 1708, "POP2020": 2130, "POP2025": 2633, "POP2050": 3214, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.640338 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.361466 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bamako", "DIFFASCII": 0, "NAMEASCII": "Bamako", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mali", "SOV_A3": "MLI", "ADM0NAME": "Mali", "ADM0_A3": "MLI", "ADM1NAME": "Bamako", "ISO_A2": "ML", "LATITUDE": 12.650015, "LONGITUDE": -8.000039, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1297281, "POP_OTHER": 1301407, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2460596, "MEGANAME": "Bamako", "LS_NAME": "Bamako", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1316564, "MAX_POP20": 1316564, "MAX_POP50": 1316564, "MAX_POP300": 1316564, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 172, "MAX_AREAKM": 172, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 106, "MAX_PERKM": 106, "MIN_PERMI": 66, "MAX_PERMI": 66, "MIN_BBXMIN": -8.058333, "MAX_BBXMIN": -8.058333, "MIN_BBXMAX": -7.908333, "MAX_BBXMAX": -7.908333, "MIN_BBYMIN": 12.541667, "MAX_BBYMIN": 12.541667, "MIN_BBYMAX": 12.716667, "MAX_BBYMAX": 12.716667, "MEAN_BBXC": -7.987419, "MEAN_BBYC": 12.626173, "COMPARE": 0, "GN_ASCII": "Bamako", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1297281, "ELEVATION": 0, "GTOPO30": 350, "TIMEZONE": "Africa/Bamako", "GEONAMESNO": "GeoNames match general.", "UN_FID": 349, "UN_ADM0": "Mali", "UN_LAT": 12.65, "UN_LONG": -7.98, "POP1950": 89, "POP1955": 111, "POP1960": 130, "POP1965": 158, "POP1970": 222, "POP1975": 363, "POP1980": 489, "POP1985": 608, "POP1990": 746, "POP1995": 910, "POP2000": 1110, "POP2005": 1368, "POP2010": 1494, "POP2015": 1708, "POP2020": 2130, "POP2025": 2633, "POP2050": 3214, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.640338 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -10.788574, 6.315299 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.361466 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499, "MAX_POP20": 206499, "MAX_POP50": 206499, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 59, "MAX_AREAKM": 59, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 52, "MAX_PERKM": 52, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 194530, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -10.788574, 6.315299 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abidjan", "DIFFASCII": 0, "NAMEASCII": "Abidjan", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lagunes", "ISO_A2": "CI", "LATITUDE": 5.319997, "LONGITUDE": -4.040048, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3802000, "POP_MIN": 3190395, "POP_OTHER": 3181637, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2293538, "MEGANAME": "Abidjan", "LS_NAME": "Abidjan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3190395, "MAX_POP20": 3190395, "MAX_POP50": 3190395, "MAX_POP300": 3190395, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 474, "MAX_AREAKM": 474, "MIN_AREAMI": 183, "MAX_AREAMI": 183, "MIN_PERKM": 304, "MAX_PERKM": 304, "MIN_PERMI": 189, "MAX_PERMI": 189, "MIN_BBXMIN": -4.191667, "MAX_BBXMIN": -4.191667, "MIN_BBXMAX": -3.866667, "MAX_BBXMAX": -3.866667, "MIN_BBYMIN": 5.241667, "MAX_BBYMIN": 5.241667, "MIN_BBYMAX": 5.55, "MAX_BBYMAX": 5.55, "MEAN_BBXC": -4.019846, "MEAN_BBYC": 5.3739, "COMPARE": 0, "GN_ASCII": "Abidjan", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 82, "GN_POP": 3677115, "ELEVATION": 0, "GTOPO30": 75, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 310, "UN_ADM0": "Côte d'Ivoire", "UN_LAT": 5.32, "UN_LONG": -4.02, "POP1950": 65, "POP1955": 125, "POP1960": 192, "POP1965": 310, "POP1970": 548, "POP1975": 966, "POP1980": 1384, "POP1985": 1716, "POP1990": 2102, "POP1995": 2535, "POP2000": 3032, "POP2005": 3564, "POP2010": 3802, "POP2015": 4175, "POP2020": 4810, "POP2025": 5432, "POP2050": 6031, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.309766 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499, "MAX_POP20": 206499, "MAX_POP50": 206499, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 59, "MAX_AREAKM": 59, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 52, "MAX_PERKM": 52, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 194530, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abidjan", "DIFFASCII": 0, "NAMEASCII": "Abidjan", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lagunes", "ISO_A2": "CI", "LATITUDE": 5.319997, "LONGITUDE": -4.040048, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3802000, "POP_MIN": 3190395, "POP_OTHER": 3181637, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2293538, "MEGANAME": "Abidjan", "LS_NAME": "Abidjan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3190395, "MAX_POP20": 3190395, "MAX_POP50": 3190395, "MAX_POP300": 3190395, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 474, "MAX_AREAKM": 474, "MIN_AREAMI": 183, "MAX_AREAMI": 183, "MIN_PERKM": 304, "MAX_PERKM": 304, "MIN_PERMI": 189, "MAX_PERMI": 189, "MIN_BBXMIN": -4.191667, "MAX_BBXMIN": -4.191667, "MIN_BBXMAX": -3.866667, "MAX_BBXMAX": -3.866667, "MIN_BBYMIN": 5.241667, "MAX_BBYMIN": 5.241667, "MIN_BBYMAX": 5.55, "MAX_BBYMAX": 5.55, "MEAN_BBXC": -4.019846, "MEAN_BBYC": 5.3739, "COMPARE": 0, "GN_ASCII": "Abidjan", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 82, "GN_POP": 3677115, "ELEVATION": 0, "GTOPO30": 75, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 310, "UN_ADM0": "Côte d'Ivoire", "UN_LAT": 5.32, "UN_LONG": -4.02, "POP1950": 65, "POP1955": 125, "POP1960": 192, "POP1965": 310, "POP1970": 548, "POP1975": 966, "POP1980": 1384, "POP1985": 1716, "POP1990": 2102, "POP1995": 2535, "POP2000": 3032, "POP2005": 3564, "POP2010": 3802, "POP2015": 4175, "POP2020": 4810, "POP2025": 5432, "POP2050": 6031, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 400, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 5.550035, "numnum:min:LATITUDE": 5.319997, "numnum:sum:LATITUDE": 10.870032, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -0.216716, "numnum:min:LONGITUDE": -4.040048, "numnum:sum:LONGITUDE": -4.2567639999999999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 5, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3802000, "numnum:min:POP_MAX": 2121000, "numnum:sum:POP_MAX": 5923000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3190395, "numnum:min:POP_MIN": 1963264, "numnum:sum:POP_MIN": 5153659, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3181637, "numnum:min:POP_OTHER": 2334371, "numnum:sum:POP_OTHER": 5516008, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2306104, "numnum:min:GEONAMEID": 2293538, "numnum:sum:GEONAMEID": 4599642, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3190395, "numnum:min:MAX_POP10": 2359119, "numnum:sum:MAX_POP10": 5549514, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3190395, "numnum:min:MAX_POP20": 2941045, "numnum:sum:MAX_POP20": 6131440, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3190395, "numnum:min:MAX_POP50": 2941045, "numnum:sum:MAX_POP50": 6131440, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3190395, "numnum:min:MAX_POP300": 2941045, "numnum:sum:MAX_POP300": 6131440, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 474, "numnum:min:MIN_AREAKM": 443, "numnum:sum:MIN_AREAKM": 917, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 636, "numnum:min:MAX_AREAKM": 474, "numnum:sum:MAX_AREAKM": 1110, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 183, "numnum:min:MIN_AREAMI": 171, "numnum:sum:MIN_AREAMI": 354, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 245, "numnum:min:MAX_AREAMI": 183, "numnum:sum:MAX_AREAMI": 428, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 304, "numnum:min:MIN_PERKM": 244, "numnum:sum:MIN_PERKM": 548, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 345, "numnum:min:MAX_PERKM": 304, "numnum:sum:MAX_PERKM": 649, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 189, "numnum:min:MIN_PERMI": 152, "numnum:sum:MIN_PERMI": 341, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 214, "numnum:min:MAX_PERMI": 189, "numnum:sum:MAX_PERMI": 403, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -0.35, "numnum:min:MIN_BBXMIN": -4.191667, "numnum:sum:MIN_BBXMIN": -4.5416669999999998, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -0.35, "numnum:min:MAX_BBXMIN": -4.191667, "numnum:sum:MAX_BBXMIN": -4.5416669999999998, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -0.098725, "numnum:min:MIN_BBXMAX": -3.866667, "numnum:sum:MIN_BBXMAX": -3.965392, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 0.033333, "numnum:min:MAX_BBXMAX": -3.866667, "numnum:sum:MAX_BBXMAX": -3.8333340000000004, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 5.516667, "numnum:min:MIN_BBYMIN": 5.241667, "numnum:sum:MIN_BBYMIN": 10.758334, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 5.516667, "numnum:min:MAX_BBYMIN": 5.241667, "numnum:sum:MAX_BBYMIN": 10.758334, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 5.775, "numnum:min:MIN_BBYMAX": 5.55, "numnum:sum:MIN_BBYMAX": 11.325, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 5.775, "numnum:min:MAX_BBYMAX": 5.55, "numnum:sum:MAX_BBYMAX": 11.325, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -0.188893, "numnum:min:MEAN_BBXC": -4.019846, "numnum:sum:MEAN_BBXC": -4.2087390000000008, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 5.637403, "numnum:min:MEAN_BBYC": 5.3739, "numnum:sum:MEAN_BBYC": 11.011303, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 82, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 83, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 3677115, "numnum:min:GN_POP": 1963264, "numnum:sum:GN_POP": 5640379, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 104, "numnum:min:GTOPO30": 75, "numnum:sum:GTOPO30": 179, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 310, "numnum:min:UN_FID": 196, "numnum:sum:UN_FID": 506, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 5.55, "numnum:min:UN_LAT": 5.32, "numnum:sum:UN_LAT": 10.870000000000001, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -0.2, "numnum:min:UN_LONG": -4.02, "numnum:sum:UN_LONG": -4.22, "numnum:count:POP1950": 2, "numnum:max:POP1950": 177, "numnum:min:POP1950": 65, "numnum:sum:POP1950": 242, "numnum:count:POP1955": 2, "numnum:max:POP1955": 265, "numnum:min:POP1955": 125, "numnum:sum:POP1955": 390, "numnum:count:POP1960": 2, "numnum:max:POP1960": 393, "numnum:min:POP1960": 192, "numnum:sum:POP1960": 585, "numnum:count:POP1965": 2, "numnum:max:POP1965": 499, "numnum:min:POP1965": 310, "numnum:sum:POP1965": 809, "numnum:count:POP1970": 2, "numnum:max:POP1970": 631, "numnum:min:POP1970": 548, "numnum:sum:POP1970": 1179, "numnum:count:POP1975": 2, "numnum:max:POP1975": 966, "numnum:min:POP1975": 738, "numnum:sum:POP1975": 1704, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1384, "numnum:min:POP1980": 863, "numnum:sum:POP1980": 2247, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1716, "numnum:min:POP1985": 1013, "numnum:sum:POP1985": 2729, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2102, "numnum:min:POP1990": 1197, "numnum:sum:POP1990": 3299, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2535, "numnum:min:POP1995": 1415, "numnum:sum:POP1995": 3950, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3032, "numnum:min:POP2000": 1674, "numnum:sum:POP2000": 4706, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3564, "numnum:min:POP2005": 1984, "numnum:sum:POP2005": 5548, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3802, "numnum:min:POP2010": 2121, "numnum:sum:POP2010": 5923, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4175, "numnum:min:POP2015": 2332, "numnum:sum:POP2015": 6507, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4810, "numnum:min:POP2020": 2688, "numnum:sum:POP2020": 7498, "numnum:count:POP2025": 2, "numnum:max:POP2025": 5432, "numnum:min:POP2025": 3041, "numnum:sum:POP2025": 8473, "numnum:count:POP2050": 2, "numnum:max:POP2050": 6031, "numnum:min:POP2050": 3382, "numnum:sum:POP2050": 9413, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.309766 ] } } ] } ] } , @@ -504,13 +486,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890, "MAX_POP20": 1163890, "MAX_POP50": 1163890, "MAX_POP300": 1163890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 148, "MAX_AREAKM": 148, "MIN_AREAMI": 57, "MAX_AREAMI": 57, "MIN_PERKM": 105, "MAX_PERKM": 105, "MIN_PERMI": 65, "MAX_PERMI": 65, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 1284609, "ELEVATION": 0, "GTOPO30": 156, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83, "POP1955": 92, "POP1960": 124, "POP1965": 172, "POP1970": 238, "POP1975": 329, "POP1980": 446, "POP1985": 596, "POP1990": 704, "POP1995": 830, "POP2000": 986, "POP2005": 1216, "POP2010": 1355, "POP2015": 1505, "POP2020": 1729, "POP2025": 1938, "POP2050": 2150, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Luanda", "DIFFASCII": 0, "NAMEASCII": "Luanda", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Angola", "SOV_A3": "AGO", "ADM0NAME": "Angola", "ADM0_A3": "AGO", "ADM1NAME": "Luanda", "ISO_A2": "AO", "LATITUDE": -8.838286, "LONGITUDE": 13.234427, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5172900, "POP_MIN": 1951272, "POP_OTHER": 1951272, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 2240449, "MEGANAME": "Luanda", "LS_NAME": "Luanda", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1951272, "MAX_POP20": 1951272, "MAX_POP50": 1951272, "MAX_POP300": 1951272, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 237, "MAX_AREAKM": 237, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 13.166667, "MAX_BBXMIN": 13.166667, "MIN_BBXMAX": 13.4, "MAX_BBXMAX": 13.4, "MIN_BBYMIN": -8.933333, "MAX_BBYMIN": -8.933333, "MIN_BBYMAX": -8.766667, "MAX_BBYMAX": -8.766667, "MEAN_BBXC": 13.28253, "MEAN_BBYC": -8.851964, "COMPARE": 0, "GN_ASCII": "Luanda", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 2776168, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Africa/Luanda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 182, "UN_ADM0": "Angola", "UN_LAT": -8.81, "UN_LONG": 13.23, "POP1950": 138, "POP1955": 174, "POP1960": 219, "POP1965": 315, "POP1970": 459, "POP1975": 665, "POP1980": 962, "POP1985": 1295, "POP1990": 1568, "POP1995": 1953, "POP2000": 2591, "POP2005": 3533, "POP2010": 4000, "POP2015": 4775, "POP2020": 6036, "POP2025": 7153, "POP2050": 8236, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 13.227539, -8.841651 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 17.094727, -22.573438 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 17.094727, -22.573438 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cape Town", "DIFFASCII": 0, "NAMEASCII": "Cape Town", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Western Cape", "ISO_A2": "ZA", "LATITUDE": -33.920011, "LONGITUDE": 18.434988, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3215000, "POP_MIN": 2432858, "POP_OTHER": 2401318, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3369157, "MEGANAME": "Cape Town", "LS_NAME": "Cape Town", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2432858, "MAX_POP20": 2443605, "MAX_POP50": 2443605, "MAX_POP300": 2443605, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 534, "MAX_AREAKM": 542, "MIN_AREAMI": 206, "MAX_AREAMI": 209, "MIN_PERKM": 295, "MAX_PERKM": 300, "MIN_PERMI": 183, "MAX_PERMI": 187, "MIN_BBXMIN": 18.375, "MAX_BBXMIN": 18.375, "MIN_BBXMAX": 18.724745, "MAX_BBXMAX": 18.741667, "MIN_BBYMIN": -34.108333, "MAX_BBYMIN": -34.108333, "MIN_BBYMAX": -33.808333, "MAX_BBYMAX": -33.808333, "MEAN_BBXC": 18.557208, "MEAN_BBYC": -33.954979, "COMPARE": 0, "GN_ASCII": "Cape Town", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 11, "GN_POP": 3433441, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 455, "UN_ADM0": "South Africa", "UN_LAT": -33.97, "UN_LONG": 18.48, "POP1950": 618, "POP1955": 705, "POP1960": 803, "POP1965": 945, "POP1970": 1114, "POP1975": 1339, "POP1980": 1609, "POP1985": 1925, "POP1990": 2155, "POP1995": 2394, "POP2000": 2715, "POP2005": 3087, "POP2010": 3215, "POP2015": 3357, "POP2020": 3504, "POP2025": 3627, "POP2050": 3744, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.925130 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cape Town", "DIFFASCII": 0, "NAMEASCII": "Cape Town", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Western Cape", "ISO_A2": "ZA", "LATITUDE": -33.920011, "LONGITUDE": 18.434988, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3215000, "POP_MIN": 2432858, "POP_OTHER": 2401318, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3369157, "MEGANAME": "Cape Town", "LS_NAME": "Cape Town", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2432858, "MAX_POP20": 2443605, "MAX_POP50": 2443605, "MAX_POP300": 2443605, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 534, "MAX_AREAKM": 542, "MIN_AREAMI": 206, "MAX_AREAMI": 209, "MIN_PERKM": 295, "MAX_PERKM": 300, "MIN_PERMI": 183, "MAX_PERMI": 187, "MIN_BBXMIN": 18.375, "MAX_BBXMIN": 18.375, "MIN_BBXMAX": 18.724745, "MAX_BBXMAX": 18.741667, "MIN_BBYMIN": -34.108333, "MAX_BBYMIN": -34.108333, "MIN_BBYMAX": -33.808333, "MAX_BBYMAX": -33.808333, "MEAN_BBXC": 18.557208, "MEAN_BBYC": -33.954979, "COMPARE": 0, "GN_ASCII": "Cape Town", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 11, "GN_POP": 3433441, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 455, "UN_ADM0": "South Africa", "UN_LAT": -33.97, "UN_LONG": 18.48, "POP1950": 618, "POP1955": 705, "POP1960": 803, "POP1965": 945, "POP1970": 1114, "POP1975": 1339, "POP1980": 1609, "POP1985": 1925, "POP1990": 2155, "POP1995": 2394, "POP2000": 2715, "POP2005": 3087, "POP2010": 3215, "POP2015": 3357, "POP2020": 3504, "POP2025": 3627, "POP2050": 3744, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.925130 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kigali", "DIFFASCII": 0, "NAMEASCII": "Kigali", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Rwanda", "SOV_A3": "RWA", "ADM0NAME": "Rwanda", "ADM0_A3": "RWA", "ADM1NAME": "Kigali City", "ISO_A2": "RW", "LATITUDE": -1.95359, "LONGITUDE": 30.060532, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 860000, "POP_MIN": 745261, "POP_OTHER": 1152904, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 202061, "MEGANAME": "Kigali", "LS_NAME": "Kigali", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1046787, "MAX_POP20": 2263899, "MAX_POP50": 5065653, "MAX_POP300": 7102391, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 601, "MAX_AREAKM": 8753, "MIN_AREAMI": 232, "MAX_AREAMI": 3380, "MIN_PERKM": 735, "MAX_PERKM": 9184, "MIN_PERMI": 457, "MAX_PERMI": 5707, "MIN_BBXMIN": 29.166667, "MAX_BBXMIN": 29.833333, "MIN_BBXMAX": 30.233333, "MAX_BBXMAX": 30.475, "MIN_BBYMIN": -2.991667, "MAX_BBYMIN": -2.075, "MIN_BBYMAX": -1.76663, "MAX_BBYMAX": -1.075, "MEAN_BBXC": 29.913775, "MEAN_BBYC": -2.034427, "COMPARE": 0, "GN_ASCII": "Kigali", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 745261, "ELEVATION": 0, "GTOPO30": 1568, "TIMEZONE": "Africa/Kigali", "GEONAMESNO": "GeoNames match general.", "UN_FID": 439, "UN_ADM0": "Rwanda", "UN_LAT": -1.95, "UN_LONG": 30.05, "POP1950": 18, "POP1955": 25, "POP1960": 34, "POP1965": 45, "POP1970": 59, "POP1975": 90, "POP1980": 128, "POP1985": 168, "POP1990": 219, "POP1995": 289, "POP2000": 497, "POP2005": 775, "POP2010": 860, "POP2015": 947, "POP2020": 1152, "POP2025": 1413, "POP2050": 1715, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.955187 ] } } , @@ -518,29 +500,27 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lusaka", "DIFFASCII": 0, "NAMEASCII": "Lusaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zambia", "SOV_A3": "ZMB", "ADM0NAME": "Zambia", "ADM0_A3": "ZMB", "ADM1NAME": "Lusaka", "ISO_A2": "ZM", "LATITUDE": -15.416644, "LONGITUDE": 28.283328, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1328000, "POP_MIN": 1267440, "POP_OTHER": 1240558, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 909137, "MEGANAME": "Lusaka", "LS_NAME": "Lusaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1289566, "MAX_POP20": 1289566, "MAX_POP50": 1289566, "MAX_POP300": 1289566, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 183, "MAX_AREAKM": 183, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 122, "MAX_PERKM": 122, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": 28.225, "MAX_BBXMIN": 28.225, "MIN_BBXMAX": 28.416667, "MAX_BBXMAX": 28.416667, "MIN_BBYMIN": -15.483333, "MAX_BBYMIN": -15.483333, "MIN_BBYMAX": -15.333333, "MAX_BBYMAX": -15.333333, "MEAN_BBXC": 28.308596, "MEAN_BBYC": -15.403941, "COMPARE": 0, "GN_ASCII": "Lusaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1267440, "ELEVATION": 0, "GTOPO30": 1277, "TIMEZONE": "Africa/Lusaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 589, "UN_ADM0": "Zambia", "UN_LAT": -15.42, "UN_LONG": 28.17, "POP1950": 31, "POP1955": 53, "POP1960": 91, "POP1965": 160, "POP1970": 278, "POP1975": 385, "POP1980": 533, "POP1985": 636, "POP1990": 757, "POP1995": 902, "POP2000": 1073, "POP2005": 1261, "POP2010": 1328, "POP2015": 1421, "POP2020": 1587, "POP2025": 1797, "POP2050": 2047, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 28.278809, -15.411319 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Harare", "DIFFASCII": 0, "NAMEASCII": "Harare", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zimbabwe", "SOV_A3": "ZWE", "ADM0NAME": "Zimbabwe", "ADM0_A3": "ZWE", "ADM1NAME": "Harare", "ISO_A2": "ZW", "LATITUDE": -17.81779, "LONGITUDE": 31.044709, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1572000, "POP_MIN": 1542813, "POP_OTHER": 1831877, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 890299, "MEGANAME": "Harare", "LS_NAME": "Harare", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1833439, "MAX_POP20": 1833439, "MAX_POP50": 1833439, "MAX_POP300": 1839463, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 310, "MAX_AREAKM": 326, "MIN_AREAMI": 120, "MAX_AREAMI": 126, "MIN_PERKM": 186, "MAX_PERKM": 210, "MIN_PERMI": 115, "MAX_PERMI": 130, "MIN_BBXMIN": 30.908333, "MAX_BBXMIN": 30.908333, "MIN_BBXMAX": 31.175, "MAX_BBXMAX": 31.191667, "MIN_BBYMIN": -17.925, "MAX_BBYMIN": -17.925, "MIN_BBYMAX": -17.725, "MAX_BBYMAX": -17.725, "MEAN_BBXC": 31.045288, "MEAN_BBYC": -17.832399, "COMPARE": 0, "GN_ASCII": "Harare", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1542813, "ELEVATION": 0, "GTOPO30": 1481, "TIMEZONE": "Africa/Harare", "GEONAMESNO": "GeoNames match general.", "UN_FID": 462, "UN_ADM0": "Zimbabwe", "UN_LAT": -17.82, "UN_LONG": 31.02, "POP1950": 143, "POP1955": 192, "POP1960": 248, "POP1965": 319, "POP1970": 417, "POP1975": 532, "POP1980": 616, "POP1985": 778, "POP1990": 1047, "POP1995": 1255, "POP2000": 1379, "POP2005": 1515, "POP2010": 1572, "POP2015": 1663, "POP2020": 1839, "POP2025": 2037, "POP2050": 2247, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.811456 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Harare", "DIFFASCII": 0, "NAMEASCII": "Harare", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zimbabwe", "SOV_A3": "ZWE", "ADM0NAME": "Zimbabwe", "ADM0_A3": "ZWE", "ADM1NAME": "Harare", "ISO_A2": "ZW", "LATITUDE": -17.81779, "LONGITUDE": 31.044709, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1572000, "POP_MIN": 1542813, "POP_OTHER": 1831877, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 890299, "MEGANAME": "Harare", "LS_NAME": "Harare", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1833439, "MAX_POP20": 1833439, "MAX_POP50": 1833439, "MAX_POP300": 1839463, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 310, "MAX_AREAKM": 326, "MIN_AREAMI": 120, "MAX_AREAMI": 126, "MIN_PERKM": 186, "MAX_PERKM": 210, "MIN_PERMI": 115, "MAX_PERMI": 130, "MIN_BBXMIN": 30.908333, "MAX_BBXMIN": 30.908333, "MIN_BBXMAX": 31.175, "MAX_BBXMAX": 31.191667, "MIN_BBYMIN": -17.925, "MAX_BBYMIN": -17.925, "MIN_BBYMAX": -17.725, "MAX_BBYMAX": -17.725, "MEAN_BBXC": 31.045288, "MEAN_BBYC": -17.832399, "COMPARE": 0, "GN_ASCII": "Harare", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1542813, "ELEVATION": 0, "GTOPO30": 1481, "TIMEZONE": "Africa/Harare", "GEONAMESNO": "GeoNames match general.", "UN_FID": 462, "UN_ADM0": "Zimbabwe", "UN_LAT": -17.82, "UN_LONG": 31.02, "POP1950": 143, "POP1955": 192, "POP1960": 248, "POP1965": 319, "POP1970": 417, "POP1975": 532, "POP1980": 616, "POP1985": 778, "POP1990": 1047, "POP1995": 1255, "POP2000": 1379, "POP2005": 1515, "POP2010": 1572, "POP2015": 1663, "POP2020": 1839, "POP2025": 2037, "POP2050": 2247, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.811456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.296276 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.296276 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Dodoma", "DIFFASCII": 0, "NAMEASCII": "Dodoma", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Offical capital", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dodoma", "ISO_A2": "TZ", "LATITUDE": -6.183306, "LONGITUDE": 35.750004, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 218269, "POP_MIN": 180541, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 160196, "LS_NAME": "Dodoma", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 218269, "MAX_POP20": 218269, "MAX_POP50": 218269, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 55, "MAX_AREAKM": 55, "MIN_AREAMI": 21, "MAX_AREAMI": 21, "MIN_PERKM": 61, "MAX_PERKM": 61, "MIN_PERMI": 38, "MAX_PERMI": 38, "MIN_BBXMIN": 35.691667, "MAX_BBXMIN": 35.691667, "MIN_BBXMAX": 35.808333, "MAX_BBXMAX": 35.808333, "MIN_BBYMIN": -6.208333, "MAX_BBYMIN": -6.208333, "MIN_BBYMAX": -6.116667, "MAX_BBYMAX": -6.116667, "MEAN_BBXC": 35.7475, "MEAN_BBYC": -6.162244, "COMPARE": 0, "GN_ASCII": "Dodoma", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 180541, "ELEVATION": 0, "GTOPO30": 1129, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.184246 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Dar es Salaam", "DIFFASCII": 0, "NAMEASCII": "Dar es Salaam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dar-Es-Salaam", "ISO_A2": "TZ", "LATITUDE": -6.800013, "LONGITUDE": 39.268342, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2930000, "POP_MIN": 2698652, "POP_OTHER": 2757835, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 160263, "MEGANAME": "Dar es Salaam", "LS_NAME": "Dar es Salaam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2757507, "MAX_POP20": 2757507, "MAX_POP50": 2757507, "MAX_POP300": 2757507, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 153, "MAX_PERKM": 153, "MIN_PERMI": 95, "MAX_PERMI": 95, "MIN_BBXMIN": 39.15, "MAX_BBXMIN": 39.15, "MIN_BBXMAX": 39.325, "MAX_BBXMAX": 39.325, "MIN_BBYMIN": -6.933333, "MAX_BBYMIN": -6.933333, "MIN_BBYMAX": -6.725, "MAX_BBYMAX": -6.725, "MEAN_BBXC": 39.23918, "MEAN_BBYC": -6.833434, "COMPARE": 0, "GN_ASCII": "Dar es Salaam", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 2698652, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 523, "UN_ADM0": "United Republic of Tanzania", "UN_LAT": -6.81, "UN_LONG": 39.25, "POP1950": 67, "POP1955": 110, "POP1960": 162, "POP1965": 233, "POP1970": 357, "POP1975": 572, "POP1980": 836, "POP1985": 1046, "POP1990": 1316, "POP1995": 1668, "POP2000": 2116, "POP2005": 2679, "POP2010": 2930, "POP2015": 3319, "POP2020": 4020, "POP2025": 4804, "POP2050": 5688, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.716788 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.716788 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Gaborone", "DIFFASCII": 0, "NAMEASCII": "Gaborone", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Botswana", "SOV_A3": "BWA", "ADM0NAME": "Botswana", "ADM0_A3": "BWA", "ADM1NAME": "South-East", "ISO_A2": "BW", "LATITUDE": -24.646313, "LONGITUDE": 25.911948, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 208411, "POP_MIN": 159243, "POP_OTHER": 158896, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 933773, "LS_NAME": "Gaborone", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 159243, "MAX_POP20": 159243, "MAX_POP50": 159243, "MAX_POP300": 159243, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 72, "MAX_AREAKM": 72, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 59, "MAX_PERKM": 59, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 25.858333, "MAX_BBXMIN": 25.858333, "MIN_BBXMAX": 25.991667, "MAX_BBXMAX": 25.991667, "MIN_BBYMIN": -24.7, "MAX_BBYMIN": -24.7, "MIN_BBYMAX": -24.6, "MAX_BBYMAX": -24.6, "MEAN_BBXC": 25.925091, "MEAN_BBYC": -24.656793, "COMPARE": 0, "GN_ASCII": "Gaborone", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 208411, "ELEVATION": 0, "GTOPO30": 1006, "TIMEZONE": "Africa/Gaborone", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.647017 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Johannesburg", "DIFFASCII": 0, "NAMEASCII": "Johannesburg", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "LATITUDE": -26.170044999999999, "LONGITUDE": 28.03001, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 3435000, "POP_MIN": 2026469, "POP_OTHER": 3852246, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 993800, "MEGANAME": "Johannesburg", "LS_NAME": "Johannesburg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3887168, "MAX_POP20": 5413549, "MAX_POP50": 5413549, "MAX_POP300": 5413549, "MAX_POP310": 5451385, "MAX_NATSCA": 300, "MIN_AREAKM": 1124, "MAX_AREAKM": 1614, "MIN_AREAMI": 434, "MAX_AREAMI": 623, "MIN_PERKM": 497, "MAX_PERKM": 828, "MIN_PERMI": 309, "MAX_PERMI": 514, "MIN_BBXMIN": 27.733333, "MAX_BBXMIN": 27.733333, "MIN_BBXMAX": 28.193693, "MAX_BBXMAX": 28.491667, "MIN_BBYMIN": -26.4, "MAX_BBYMIN": -26.4, "MIN_BBYMAX": -25.991667, "MAX_BBYMAX": -25.941667, "MEAN_BBXC": 28.063712, "MEAN_BBYC": -26.187259, "COMPARE": 0, "GN_ASCII": "Johannesburg", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 6, "GN_POP": 2026469, "ELEVATION": 0, "GTOPO30": 1775, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 458, "UN_ADM0": "South Africa", "UN_LAT": -26.17, "UN_LONG": 28, "POP1950": 900, "POP1955": 1016, "POP1960": 1147, "POP1965": 1288, "POP1970": 1444, "POP1975": 1547, "POP1980": 1656, "POP1985": 1773, "POP1990": 1898, "POP1995": 2265, "POP2000": 2732, "POP2005": 3258, "POP2010": 3435, "POP2015": 3618, "POP2020": 3785, "POP2025": 3916, "POP2050": 4041, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 28.037109, -26.175159 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Gaborone", "DIFFASCII": 0, "NAMEASCII": "Gaborone", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Botswana", "SOV_A3": "BWA", "ADM0NAME": "Botswana", "ADM0_A3": "BWA", "ADM1NAME": "South-East", "ISO_A2": "BW", "LATITUDE": -24.646313, "LONGITUDE": 25.911948, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 208411, "POP_MIN": 159243, "POP_OTHER": 158896, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 933773, "LS_NAME": "Gaborone", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 159243, "MAX_POP20": 159243, "MAX_POP50": 159243, "MAX_POP300": 159243, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 72, "MAX_AREAKM": 72, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 59, "MAX_PERKM": 59, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 25.858333, "MAX_BBXMIN": 25.858333, "MIN_BBXMAX": 25.991667, "MAX_BBXMAX": 25.991667, "MIN_BBYMIN": -24.7, "MAX_BBYMIN": -24.7, "MIN_BBYMAX": -24.6, "MAX_BBYMAX": -24.6, "MEAN_BBXC": 25.925091, "MEAN_BBYC": -24.656793, "COMPARE": 0, "GN_ASCII": "Gaborone", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 208411, "ELEVATION": 0, "GTOPO30": 1006, "TIMEZONE": "Africa/Gaborone", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 10, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -24.646313, "numnum:min:LATITUDE": -26.170044999999999, "numnum:sum:LATITUDE": -50.816357999999997, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 28.03001, "numnum:min:LONGITUDE": 25.911948, "numnum:sum:LONGITUDE": 53.941958, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3435000, "numnum:min:POP_MAX": 208411, "numnum:sum:POP_MAX": 3643411, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2026469, "numnum:min:POP_MIN": 159243, "numnum:sum:POP_MIN": 2185712, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3852246, "numnum:min:POP_OTHER": 158896, "numnum:sum:POP_OTHER": 4011142, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 993800, "numnum:min:GEONAMEID": 933773, "numnum:sum:GEONAMEID": 1927573, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3887168, "numnum:min:MAX_POP10": 159243, "numnum:sum:MAX_POP10": 4046411, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 5413549, "numnum:min:MAX_POP20": 159243, "numnum:sum:MAX_POP20": 5572792, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 5413549, "numnum:min:MAX_POP50": 159243, "numnum:sum:MAX_POP50": 5572792, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 5413549, "numnum:min:MAX_POP300": 159243, "numnum:sum:MAX_POP300": 5572792, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 5451385, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 5451385, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1124, "numnum:min:MIN_AREAKM": 72, "numnum:sum:MIN_AREAKM": 1196, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1614, "numnum:min:MAX_AREAKM": 72, "numnum:sum:MAX_AREAKM": 1686, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 434, "numnum:min:MIN_AREAMI": 28, "numnum:sum:MIN_AREAMI": 462, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 623, "numnum:min:MAX_AREAMI": 28, "numnum:sum:MAX_AREAMI": 651, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 497, "numnum:min:MIN_PERKM": 59, "numnum:sum:MIN_PERKM": 556, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 828, "numnum:min:MAX_PERKM": 59, "numnum:sum:MAX_PERKM": 887, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 309, "numnum:min:MIN_PERMI": 37, "numnum:sum:MIN_PERMI": 346, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 514, "numnum:min:MAX_PERMI": 37, "numnum:sum:MAX_PERMI": 551, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 27.733333, "numnum:min:MIN_BBXMIN": 25.858333, "numnum:sum:MIN_BBXMIN": 53.591666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 27.733333, "numnum:min:MAX_BBXMIN": 25.858333, "numnum:sum:MAX_BBXMIN": 53.591666, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 28.193693, "numnum:min:MIN_BBXMAX": 25.991667, "numnum:sum:MIN_BBXMAX": 54.18536, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 28.491667, "numnum:min:MAX_BBXMAX": 25.991667, "numnum:sum:MAX_BBXMAX": 54.483334, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -24.7, "numnum:min:MIN_BBYMIN": -26.4, "numnum:sum:MIN_BBYMIN": -51.099999999999997, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -24.7, "numnum:min:MAX_BBYMIN": -26.4, "numnum:sum:MAX_BBYMIN": -51.099999999999997, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -24.6, "numnum:min:MIN_BBYMAX": -25.991667, "numnum:sum:MIN_BBYMAX": -50.591667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -24.6, "numnum:min:MAX_BBYMAX": -25.941667, "numnum:sum:MAX_BBYMAX": -50.541667000000007, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 28.063712, "numnum:min:MEAN_BBXC": 25.925091, "numnum:sum:MEAN_BBXC": 53.988803, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -24.656793, "numnum:min:MEAN_BBYC": -26.187259, "numnum:sum:MEAN_BBYC": -50.844052000000008, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 9, "numnum:min:ADMIN1_COD": 6, "numnum:sum:ADMIN1_COD": 15, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2026469, "numnum:min:GN_POP": 208411, "numnum:sum:GN_POP": 2234880, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1775, "numnum:min:GTOPO30": 1006, "numnum:sum:GTOPO30": 2781, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 458, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 458, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -26.17, "numnum:sum:UN_LAT": -26.17, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 28, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 28, "numnum:count:POP1950": 2, "numnum:max:POP1950": 900, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 900, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1016, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1016, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1147, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1147, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1288, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1288, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1444, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1444, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1547, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1547, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1656, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1656, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1773, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1773, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1898, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1898, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2265, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2265, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2732, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2732, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3258, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3258, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3435, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3435, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3618, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3618, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3785, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3785, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3916, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3916, "numnum:count:POP2050": 2, "numnum:max:POP2050": 4041, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4041, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.647017 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Bloemfontein", "DIFFASCII": 0, "NAMEASCII": "Bloemfontein", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Judicial capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Orange Free State", "ISO_A2": "ZA", "LATITUDE": -29.119994, "LONGITUDE": 26.229913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 463064, "POP_MIN": 456669, "POP_OTHER": 456513, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1018725, "LS_NAME": "Bloemfontein", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 456669, "MAX_POP20": 456669, "MAX_POP50": 456669, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 105, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 26.166667, "MAX_BBXMIN": 26.166667, "MIN_BBXMAX": 26.3, "MAX_BBXMAX": 26.3, "MIN_BBYMIN": -29.2, "MAX_BBYMIN": -29.2, "MIN_BBYMAX": -29.058333, "MAX_BBYMAX": -29.058333, "MEAN_BBXC": 26.225714, "MEAN_BBYC": -29.128155, "COMPARE": 0, "GN_ASCII": "Bloemfontein", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 463064, "ELEVATION": 0, "GTOPO30": 1398, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.132970 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Maseru", "DIFFASCII": 0, "NAMEASCII": "Maseru", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lesotho", "SOV_A3": "LSO", "ADM0NAME": "Lesotho", "ADM0_A3": "LSO", "ADM1NAME": "Maseru", "ISO_A2": "LS", "LATITUDE": -29.316674, "LONGITUDE": 27.483273, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 361324, "POP_MIN": 118355, "POP_OTHER": 356225, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 932505, "LS_NAME": "Maseru", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 361324, "MAX_POP20": 361324, "MAX_POP50": 361324, "MAX_POP300": 361324, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 141, "MIN_AREAMI": 54, "MAX_AREAMI": 54, "MIN_PERKM": 177, "MAX_PERKM": 177, "MIN_PERMI": 110, "MAX_PERMI": 110, "MIN_BBXMIN": 27.458333, "MAX_BBXMIN": 27.458333, "MIN_BBXMAX": 27.616667, "MAX_BBXMAX": 27.616667, "MIN_BBYMIN": -29.525, "MAX_BBYMIN": -29.525, "MIN_BBYMAX": -29.241667, "MAX_BBYMAX": -29.241667, "MEAN_BBXC": 27.536702, "MEAN_BBYC": -29.350222, "COMPARE": 0, "GN_ASCII": "Maseru", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 118355, "ELEVATION": 0, "GTOPO30": 1482, "TIMEZONE": "Africa/Maseru", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 27.487793, -29.324720 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Pretoria", "DIFFASCII": 0, "NAMEASCII": "Pretoria", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "LATITUDE": -25.706921, "LONGITUDE": 28.229429, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1338000, "POP_MIN": 1338000, "POP_OTHER": 1443084, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 964137, "MEGANAME": "Pretoria", "LS_NAME": "Pretoria", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1444949, "MAX_POP20": 1444949, "MAX_POP50": 1444949, "MAX_POP300": 1444949, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 502, "MAX_AREAKM": 502, "MIN_AREAMI": 194, "MAX_AREAMI": 194, "MIN_PERKM": 256, "MAX_PERKM": 256, "MIN_PERMI": 159, "MAX_PERMI": 159, "MIN_BBXMIN": 28.041667, "MAX_BBXMIN": 28.041667, "MIN_BBXMAX": 28.4, "MAX_BBXMAX": 28.4, "MIN_BBYMIN": -25.891667, "MAX_BBYMIN": -25.891667, "MIN_BBYMAX": -25.641667, "MAX_BBYMAX": -25.641667, "MEAN_BBXC": 28.214676, "MEAN_BBYC": -25.755716, "COMPARE": 0, "GN_ASCII": "Pretoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 1619438, "ELEVATION": 0, "GTOPO30": 1282, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 460, "UN_ADM0": "South Africa", "UN_LAT": -25.73, "UN_LONG": 28.21, "POP1950": 275, "POP1955": 340, "POP1960": 419, "POP1965": 488, "POP1970": 565, "POP1975": 624, "POP1980": 688, "POP1985": 763, "POP1990": 911, "POP1995": 951, "POP2000": 1084, "POP2005": 1273, "POP2010": 1338, "POP2015": 1409, "POP2020": 1482, "POP2025": 1544, "POP2050": 1604, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.700938 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Pretoria", "DIFFASCII": 0, "NAMEASCII": "Pretoria", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "LATITUDE": -25.706921, "LONGITUDE": 28.229429, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1338000, "POP_MIN": 1338000, "POP_OTHER": 1443084, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 964137, "MEGANAME": "Pretoria", "LS_NAME": "Pretoria", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1444949, "MAX_POP20": 1444949, "MAX_POP50": 1444949, "MAX_POP300": 1444949, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 502, "MAX_AREAKM": 502, "MIN_AREAMI": 194, "MAX_AREAMI": 194, "MIN_PERKM": 256, "MAX_PERKM": 256, "MIN_PERMI": 159, "MAX_PERMI": 159, "MIN_BBXMIN": 28.041667, "MAX_BBXMIN": 28.041667, "MIN_BBXMAX": 28.4, "MAX_BBXMAX": 28.4, "MIN_BBYMIN": -25.891667, "MAX_BBYMIN": -25.891667, "MIN_BBYMAX": -25.641667, "MAX_BBYMAX": -25.641667, "MEAN_BBXC": 28.214676, "MEAN_BBYC": -25.755716, "COMPARE": 0, "GN_ASCII": "Pretoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 1619438, "ELEVATION": 0, "GTOPO30": 1282, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 460, "UN_ADM0": "South Africa", "UN_LAT": -25.73, "UN_LONG": 28.21, "POP1950": 275, "POP1955": 340, "POP1960": 419, "POP1965": 488, "POP1970": 565, "POP1975": 624, "POP1980": 688, "POP1985": 763, "POP1990": 911, "POP1995": 951, "POP2000": 1084, "POP2005": 1273, "POP2010": 1338, "POP2015": 1409, "POP2020": 1482, "POP2025": 1544, "POP2050": 1604, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.700938 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } , { "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lobamba", "DIFFASCII": 0, "NAMEASCII": "Lobamba", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative and", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Manzini", "ISO_A2": "SZ", "LATITUDE": -26.466667, "LONGITUDE": 31.199997, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 9782, "POP_MIN": 4557, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 4, "GEONAMEID": 935048, "LS_NAME": "Lobamba", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 9782, "MAX_POP20": 9782, "MAX_POP50": 9782, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": 31.183333, "MAX_BBXMIN": 31.183333, "MIN_BBXMAX": 31.233333, "MAX_BBXMAX": 31.233333, "MIN_BBYMIN": -26.458333, "MAX_BBYMIN": -26.458333, "MIN_BBYMAX": -26.391667, "MAX_BBYMAX": -26.391667, "MEAN_BBXC": 31.201993, "MEAN_BBYC": -26.430254, "COMPARE": 0, "GN_ASCII": "Lobamba", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4557, "ELEVATION": 0, "GTOPO30": 651, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.201172, -26.470573 ] } } , @@ -548,221 +528,209 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Victoria", "DIFFASCII": 0, "NAMEASCII": "Victoria", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Seychelles", "SOV_A3": "SYC", "ADM0NAME": "Seychelles", "ADM0_A3": "SYC", "ISO_A2": "SC", "LATITUDE": -4.616632, "LONGITUDE": 55.44999, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 33576, "POP_MIN": 22881, "POP_OTHER": 33737, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 241131, "LS_NAME": "Victoria4", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 33576, "MAX_POP20": 33576, "MAX_POP50": 33576, "MAX_POP300": 33576, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": 55.416667, "MAX_BBXMIN": 55.416667, "MIN_BBXMAX": 55.475, "MAX_BBXMAX": 55.475, "MIN_BBYMIN": -4.65, "MAX_BBYMIN": -4.65, "MIN_BBYMAX": -4.6, "MAX_BBYMAX": -4.6, "MEAN_BBXC": 55.45, "MEAN_BBYC": -4.626389, "COMPARE": 0, "GN_ASCII": "Victoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 22881, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Indian/Mahe", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.631179 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Antananarivo", "DIFFASCII": 0, "NAMEASCII": "Antananarivo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Madagascar", "SOV_A3": "MDG", "ADM0NAME": "Madagascar", "ADM0_A3": "MDG", "ADM1NAME": "Antananarivo", "ISO_A2": "MG", "LATITUDE": -18.916637, "LONGITUDE": 47.516624, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1697000, "POP_MIN": 1391433, "POP_OTHER": 1844658, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1070940, "MEGANAME": "Antananarivo", "LS_NAME": "Antananarivo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1727538, "MAX_POP20": 1727538, "MAX_POP50": 1727538, "MAX_POP300": 1727538, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 700, "MAX_AREAKM": 700, "MIN_AREAMI": 270, "MAX_AREAMI": 270, "MIN_PERKM": 699, "MAX_PERKM": 699, "MIN_PERMI": 434, "MAX_PERMI": 434, "MIN_BBXMIN": 47.233333, "MAX_BBXMIN": 47.233333, "MIN_BBXMAX": 47.625, "MAX_BBXMAX": 47.625, "MIN_BBYMIN": -19.166667, "MAX_BBYMIN": -19.166667, "MIN_BBYMAX": -18.625, "MAX_BBYMAX": -18.625, "MEAN_BBXC": 47.476707, "MEAN_BBYC": -18.875473, "COMPARE": 0, "GN_ASCII": "Antananarivo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1391433, "ELEVATION": 0, "GTOPO30": 1289, "TIMEZONE": "Indian/Antananarivo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 345, "UN_ADM0": "Madagascar", "UN_LAT": -18.9, "UN_LONG": 47.52, "POP1950": 177, "POP1955": 189, "POP1960": 252, "POP1965": 298, "POP1970": 363, "POP1975": 454, "POP1980": 580, "POP1985": 742, "POP1990": 948, "POP1995": 1169, "POP2000": 1361, "POP2005": 1590, "POP2010": 1697, "POP2015": 1877, "POP2020": 2229, "POP2025": 2642, "POP2050": 3118, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 47.526855, -18.916680 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Antananarivo", "DIFFASCII": 0, "NAMEASCII": "Antananarivo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Madagascar", "SOV_A3": "MDG", "ADM0NAME": "Madagascar", "ADM0_A3": "MDG", "ADM1NAME": "Antananarivo", "ISO_A2": "MG", "LATITUDE": -18.916637, "LONGITUDE": 47.516624, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1697000, "POP_MIN": 1391433, "POP_OTHER": 1844658, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1070940, "MEGANAME": "Antananarivo", "LS_NAME": "Antananarivo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1727538, "MAX_POP20": 1727538, "MAX_POP50": 1727538, "MAX_POP300": 1727538, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 700, "MAX_AREAKM": 700, "MIN_AREAMI": 270, "MAX_AREAMI": 270, "MIN_PERKM": 699, "MAX_PERKM": 699, "MIN_PERMI": 434, "MAX_PERMI": 434, "MIN_BBXMIN": 47.233333, "MAX_BBXMIN": 47.233333, "MIN_BBXMAX": 47.625, "MAX_BBXMAX": 47.625, "MIN_BBYMIN": -19.166667, "MAX_BBYMIN": -19.166667, "MIN_BBYMAX": -18.625, "MAX_BBYMAX": -18.625, "MEAN_BBXC": 47.476707, "MEAN_BBYC": -18.875473, "COMPARE": 0, "GN_ASCII": "Antananarivo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1391433, "ELEVATION": 0, "GTOPO30": 1289, "TIMEZONE": "Indian/Antananarivo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 345, "UN_ADM0": "Madagascar", "UN_LAT": -18.9, "UN_LONG": 47.52, "POP1950": 177, "POP1955": 189, "POP1960": 252, "POP1965": 298, "POP1970": 363, "POP1975": 454, "POP1980": 580, "POP1985": 742, "POP1990": 948, "POP1995": 1169, "POP2000": 1361, "POP2005": 1590, "POP2010": 1697, "POP2015": 1877, "POP2020": 2229, "POP2025": 2642, "POP2050": 3118, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 47.526855, -18.916680 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Port Louis", "DIFFASCII": 0, "NAMEASCII": "Port Louis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritius", "SOV_A3": "MUS", "ADM0NAME": "Mauritius", "ADM0_A3": "MUS", "ISO_A2": "MU", "LATITUDE": -20.166639, "LONGITUDE": 57.499994, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 595491, "POP_MIN": 148416, "POP_OTHER": 304613, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 934154, "LS_NAME": "Port Louis", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 291837, "MAX_POP20": 595491, "MAX_POP50": 595491, "MAX_POP300": 595491, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 152, "MIN_AREAMI": 27, "MAX_AREAMI": 59, "MIN_PERKM": 85, "MAX_PERKM": 154, "MIN_PERMI": 53, "MAX_PERMI": 96, "MIN_BBXMIN": 57.425, "MAX_BBXMIN": 57.425, "MIN_BBXMAX": 57.541667, "MAX_BBXMAX": 57.575, "MIN_BBYMIN": -20.333333, "MAX_BBYMIN": -20.248073, "MIN_BBYMAX": -20.108333, "MAX_BBYMAX": -20.108333, "MEAN_BBXC": 57.491611, "MEAN_BBYC": -20.221833, "COMPARE": 0, "GN_ASCII": "Port Louis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 155226, "ELEVATION": 0, "GTOPO30": 133, "TIMEZONE": "Indian/Mauritius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.179724 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Port Louis", "DIFFASCII": 0, "NAMEASCII": "Port Louis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritius", "SOV_A3": "MUS", "ADM0NAME": "Mauritius", "ADM0_A3": "MUS", "ISO_A2": "MU", "LATITUDE": -20.166639, "LONGITUDE": 57.499994, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 595491, "POP_MIN": 148416, "POP_OTHER": 304613, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 934154, "LS_NAME": "Port Louis", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 291837, "MAX_POP20": 595491, "MAX_POP50": 595491, "MAX_POP300": 595491, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 152, "MIN_AREAMI": 27, "MAX_AREAMI": 59, "MIN_PERKM": 85, "MAX_PERKM": 154, "MIN_PERMI": 53, "MAX_PERMI": 96, "MIN_BBXMIN": 57.425, "MAX_BBXMIN": 57.425, "MIN_BBXMAX": 57.541667, "MAX_BBXMAX": 57.575, "MIN_BBYMIN": -20.333333, "MAX_BBYMIN": -20.248073, "MIN_BBYMAX": -20.108333, "MAX_BBYMAX": -20.108333, "MEAN_BBXC": 57.491611, "MEAN_BBYC": -20.221833, "COMPARE": 0, "GN_ASCII": "Port Louis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 155226, "ELEVATION": 0, "GTOPO30": 133, "TIMEZONE": "Indian/Mauritius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.179724 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.910976 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.344395 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "The Hague", "DIFFASCII": 0, "NAMEASCII": "The Hague", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official, legis", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Zuid-Holland", "ISO_A2": "NL", "LATITUDE": 52.080037, "LONGITUDE": 4.269961, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1406000, "POP_MIN": 501725, "POP_OTHER": 688599, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2747373, "LS_NAME": "The Hague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 708489, "MAX_POP20": 708489, "MAX_POP50": 2312867, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 195, "MAX_AREAKM": 710, "MIN_AREAMI": 75, "MAX_AREAMI": 274, "MIN_PERKM": 217, "MAX_PERKM": 764, "MIN_PERMI": 135, "MAX_PERMI": 475, "MIN_BBXMIN": 4.15, "MAX_BBXMIN": 4.15, "MIN_BBXMAX": 4.45, "MAX_BBXMAX": 4.749141, "MIN_BBYMIN": 51.766667, "MAX_BBYMIN": 51.958333, "MIN_BBYMAX": 52.158333, "MAX_BBYMAX": 52.158333, "MEAN_BBXC": 4.355912, "MEAN_BBYC": 52.021475, "COMPARE": 0, "GN_ASCII": "Den Haag", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 11, "GN_POP": 474292, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 4.284668, 52.079506 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.910976 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Luxembourg", "DIFFASCII": 0, "NAMEASCII": "Luxembourg", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Luxembourg", "SOV_A3": "LUX", "ADM0NAME": "Luxembourg", "ADM0_A3": "LUX", "ADM1NAME": "Luxembourg", "ISO_A2": "LU", "LATITUDE": 49.61166, "LONGITUDE": 6.130003, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 107260, "POP_MIN": 76684, "POP_OTHER": 106219, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2960316, "LS_NAME": "Luxembourg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 107260, "MAX_POP20": 107260, "MAX_POP50": 107260, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 71, "MAX_PERKM": 71, "MIN_PERMI": 44, "MAX_PERMI": 44, "MIN_BBXMIN": 6.041667, "MAX_BBXMIN": 6.041667, "MIN_BBXMAX": 6.183333, "MAX_BBXMAX": 6.183333, "MIN_BBYMIN": 49.558333, "MAX_BBYMIN": 49.558333, "MIN_BBYMAX": 49.708333, "MAX_BBYMAX": 49.708333, "MEAN_BBXC": 6.125273, "MEAN_BBYC": 49.620833, "COMPARE": 0, "GN_ASCII": "Luxembourg", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 76684, "ELEVATION": 0, "GTOPO30": 259, "TIMEZONE": "Europe/Luxembourg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Paris", "DIFFASCII": 0, "NAMEASCII": "Paris", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "French Republic", "SOV_A3": "FRA", "ADM0NAME": "France", "ADM0_A3": "FRA", "ADM1NAME": "Île-de-France", "ISO_A2": "FR", "LATITUDE": 48.866693, "LONGITUDE": 2.333335, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9904000, "POP_MIN": 11177, "POP_OTHER": 7142744, "RANK_MAX": 13, "RANK_MIN": 6, "GEONAMEID": 6942553, "MEGANAME": "Paris", "LS_NAME": "Paris", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7454172, "MAX_POP20": 7970513, "MAX_POP50": 9960588, "MAX_POP300": 9960588, "MAX_POP310": 9960588, "MAX_NATSCA": 300, "MIN_AREAKM": 1121, "MAX_AREAKM": 2415, "MIN_AREAMI": 433, "MAX_AREAMI": 932, "MIN_PERKM": 542, "MAX_PERKM": 1891, "MIN_PERMI": 337, "MAX_PERMI": 1175, "MIN_BBXMIN": 1.658333, "MAX_BBXMIN": 2.152754, "MIN_BBXMAX": 2.658336, "MAX_BBXMAX": 2.925, "MIN_BBYMIN": 48.491667, "MAX_BBYMIN": 48.591667, "MIN_BBYMAX": 49.183333, "MAX_BBYMAX": 49.183333, "MEAN_BBXC": 2.352277, "MEAN_BBYC": 48.839027, "COMPARE": 0, "GN_ASCII": "Paris", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 11177, "ELEVATION": 0, "GTOPO30": 228, "TIMEZONE": "America/Toronto", "GEONAMESNO": "GeoNames match general.", "UN_FID": 189, "UN_ADM0": "France", "UN_LAT": 48.88, "UN_LONG": 2.43, "POP1950": 6522, "POP1955": 6796, "POP1960": 7411, "POP1965": 7968, "POP1970": 8350, "POP1975": 8558, "POP1980": 8669, "POP1985": 8956, "POP1990": 9330, "POP1995": 9510, "POP2000": 9692, "POP2005": 9852, "POP2010": 9904, "POP2015": 9958, "POP2020": 10007, "POP2025": 10031, "POP2050": 10036, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.864715 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.344395 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Andorra", "DIFFASCII": 0, "NAMEASCII": "Andorra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Andorra", "SOV_A3": "AND", "ADM0NAME": "Andorra", "ADM0_A3": "AND", "ISO_A2": "AD", "LATITUDE": 42.500001, "LONGITUDE": 1.516486, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 53998, "POP_MIN": 22256, "POP_OTHER": 53371, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3130067, "LS_NAME": "Andorra", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 53998, "MAX_POP20": 53998, "MAX_POP50": 53998, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 23, "MAX_AREAKM": 23, "MIN_AREAMI": 9, "MAX_AREAMI": 9, "MIN_PERKM": 49, "MAX_PERKM": 49, "MIN_PERMI": 31, "MAX_PERMI": 31, "MIN_BBXMIN": 1.483333, "MAX_BBXMIN": 1.483333, "MIN_BBXMAX": 1.591667, "MAX_BBXMAX": 1.591667, "MIN_BBYMIN": 42.483333, "MAX_BBYMIN": 42.483333, "MIN_BBYMAX": 42.55, "MAX_BBYMAX": 42.55, "MEAN_BBXC": 1.535473, "MEAN_BBYC": 42.518131, "COMPARE": 0, "GN_ASCII": "Andorra", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 52, "GN_POP": 7890, "ELEVATION": 0, "GTOPO30": 687, "TIMEZONE": "Europe/Madrid", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.488302 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "The Hague", "DIFFASCII": 0, "NAMEASCII": "The Hague", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official, legis", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Zuid-Holland", "ISO_A2": "NL", "LATITUDE": 52.080037, "LONGITUDE": 4.269961, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1406000, "POP_MIN": 501725, "POP_OTHER": 688599, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2747373, "LS_NAME": "The Hague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 708489, "MAX_POP20": 708489, "MAX_POP50": 2312867, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 195, "MAX_AREAKM": 710, "MIN_AREAMI": 75, "MAX_AREAMI": 274, "MIN_PERKM": 217, "MAX_PERKM": 764, "MIN_PERMI": 135, "MAX_PERMI": 475, "MIN_BBXMIN": 4.15, "MAX_BBXMIN": 4.15, "MIN_BBXMAX": 4.45, "MAX_BBXMAX": 4.749141, "MIN_BBYMIN": 51.766667, "MAX_BBYMIN": 51.958333, "MIN_BBYMAX": 52.158333, "MAX_BBYMAX": 52.158333, "MEAN_BBXC": 4.355912, "MEAN_BBYC": 52.021475, "COMPARE": 0, "GN_ASCII": "Den Haag", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 11, "GN_POP": 474292, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 4.284668, 52.079506 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genève", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bern", "DIFFASCII": 0, "NAMEASCII": "Bern", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Bern", "ISO_A2": "CH", "LATITUDE": 46.916683, "LONGITUDE": 7.466975, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 275329, "POP_MIN": 121631, "POP_OTHER": 267814, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2661552, "LS_NAME": "Bern", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 275329, "MAX_POP20": 275329, "MAX_POP50": 275329, "MAX_POP300": 275329, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 78, "MAX_AREAKM": 78, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 46.9, "MAX_BBYMIN": 46.9, "MIN_BBYMAX": 47.041667, "MAX_BBYMAX": 47.041667, "MEAN_BBXC": 7.453227, "MEAN_BBYC": 46.958239, "COMPARE": 0, "GN_ASCII": "Bern", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 121631, "ELEVATION": 0, "GTOPO30": 527, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Luxembourg", "DIFFASCII": 0, "NAMEASCII": "Luxembourg", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Luxembourg", "SOV_A3": "LUX", "ADM0NAME": "Luxembourg", "ADM0_A3": "LUX", "ADM1NAME": "Luxembourg", "ISO_A2": "LU", "LATITUDE": 49.61166, "LONGITUDE": 6.130003, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 107260, "POP_MIN": 76684, "POP_OTHER": 106219, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2960316, "LS_NAME": "Luxembourg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 107260, "MAX_POP20": 107260, "MAX_POP50": 107260, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 71, "MAX_PERKM": 71, "MIN_PERMI": 44, "MAX_PERMI": 44, "MIN_BBXMIN": 6.041667, "MAX_BBXMIN": 6.041667, "MIN_BBXMAX": 6.183333, "MAX_BBXMAX": 6.183333, "MIN_BBYMIN": 49.558333, "MAX_BBYMIN": 49.558333, "MIN_BBYMAX": 49.708333, "MAX_BBYMAX": 49.708333, "MEAN_BBXC": 6.125273, "MEAN_BBYC": 49.620833, "COMPARE": 0, "GN_ASCII": "Luxembourg", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 76684, "ELEVATION": 0, "GTOPO30": 259, "TIMEZONE": "Europe/Luxembourg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Paris", "DIFFASCII": 0, "NAMEASCII": "Paris", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "French Republic", "SOV_A3": "FRA", "ADM0NAME": "France", "ADM0_A3": "FRA", "ADM1NAME": "Île-de-France", "ISO_A2": "FR", "LATITUDE": 48.866693, "LONGITUDE": 2.333335, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9904000, "POP_MIN": 11177, "POP_OTHER": 7142744, "RANK_MAX": 13, "RANK_MIN": 6, "GEONAMEID": 6942553, "MEGANAME": "Paris", "LS_NAME": "Paris", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7454172, "MAX_POP20": 7970513, "MAX_POP50": 9960588, "MAX_POP300": 9960588, "MAX_POP310": 9960588, "MAX_NATSCA": 300, "MIN_AREAKM": 1121, "MAX_AREAKM": 2415, "MIN_AREAMI": 433, "MAX_AREAMI": 932, "MIN_PERKM": 542, "MAX_PERKM": 1891, "MIN_PERMI": 337, "MAX_PERMI": 1175, "MIN_BBXMIN": 1.658333, "MAX_BBXMIN": 2.152754, "MIN_BBXMAX": 2.658336, "MAX_BBXMAX": 2.925, "MIN_BBYMIN": 48.491667, "MAX_BBYMIN": 48.591667, "MIN_BBYMAX": 49.183333, "MAX_BBYMAX": 49.183333, "MEAN_BBXC": 2.352277, "MEAN_BBYC": 48.839027, "COMPARE": 0, "GN_ASCII": "Paris", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 11177, "ELEVATION": 0, "GTOPO30": 228, "TIMEZONE": "America/Toronto", "GEONAMESNO": "GeoNames match general.", "UN_FID": 189, "UN_ADM0": "France", "UN_LAT": 48.88, "UN_LONG": 2.43, "POP1950": 6522, "POP1955": 6796, "POP1960": 7411, "POP1965": 7968, "POP1970": 8350, "POP1975": 8558, "POP1980": 8669, "POP1985": 8956, "POP1990": 9330, "POP1995": 9510, "POP2000": 9692, "POP2005": 9852, "POP2010": 9904, "POP2015": 9958, "POP2020": 10007, "POP2025": 10031, "POP2050": 10036, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 630, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 3, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 3, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 48.866693, "numnum:min:LATITUDE": 42.500001, "numnum:sum:LATITUDE": 91.366694, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 2.333335, "numnum:min:LONGITUDE": 1.516486, "numnum:sum:LONGITUDE": 3.849821, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 9904000, "numnum:min:POP_MAX": 53998, "numnum:sum:POP_MAX": 9957998, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 22256, "numnum:min:POP_MIN": 11177, "numnum:sum:POP_MIN": 33433, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 7142744, "numnum:min:POP_OTHER": 53371, "numnum:sum:POP_OTHER": 7196115, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 7, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 13, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 6942553, "numnum:min:GEONAMEID": 3130067, "numnum:sum:GEONAMEID": 10072620, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 7454172, "numnum:min:MAX_POP10": 53998, "numnum:sum:MAX_POP10": 7508170, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 7970513, "numnum:min:MAX_POP20": 53998, "numnum:sum:MAX_POP20": 8024511, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 9960588, "numnum:min:MAX_POP50": 53998, "numnum:sum:MAX_POP50": 10014586, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 9960588, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 9960588, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 9960588, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9960588, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1121, "numnum:min:MIN_AREAKM": 23, "numnum:sum:MIN_AREAKM": 1144, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2415, "numnum:min:MAX_AREAKM": 23, "numnum:sum:MAX_AREAKM": 2438, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 433, "numnum:min:MIN_AREAMI": 9, "numnum:sum:MIN_AREAMI": 442, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 932, "numnum:min:MAX_AREAMI": 9, "numnum:sum:MAX_AREAMI": 941, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 542, "numnum:min:MIN_PERKM": 49, "numnum:sum:MIN_PERKM": 591, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1891, "numnum:min:MAX_PERKM": 49, "numnum:sum:MAX_PERKM": 1940, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 337, "numnum:min:MIN_PERMI": 31, "numnum:sum:MIN_PERMI": 368, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1175, "numnum:min:MAX_PERMI": 31, "numnum:sum:MAX_PERMI": 1206, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 1.658333, "numnum:min:MIN_BBXMIN": 1.483333, "numnum:sum:MIN_BBXMIN": 3.141666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 2.152754, "numnum:min:MAX_BBXMIN": 1.483333, "numnum:sum:MAX_BBXMIN": 3.636087, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 2.658336, "numnum:min:MIN_BBXMAX": 1.591667, "numnum:sum:MIN_BBXMAX": 4.2500029999999999, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 2.925, "numnum:min:MAX_BBXMAX": 1.591667, "numnum:sum:MAX_BBXMAX": 4.516667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 48.491667, "numnum:min:MIN_BBYMIN": 42.483333, "numnum:sum:MIN_BBYMIN": 90.975, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 48.591667, "numnum:min:MAX_BBYMIN": 42.483333, "numnum:sum:MAX_BBYMIN": 91.075, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 49.183333, "numnum:min:MIN_BBYMAX": 42.55, "numnum:sum:MIN_BBYMAX": 91.73333299999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 49.183333, "numnum:min:MAX_BBYMAX": 42.55, "numnum:sum:MAX_BBYMAX": 91.73333299999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 2.352277, "numnum:min:MEAN_BBXC": 1.535473, "numnum:sum:MEAN_BBXC": 3.88775, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 48.839027, "numnum:min:MEAN_BBYC": 42.518131, "numnum:sum:MEAN_BBYC": 91.357158, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 52, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 60, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 11177, "numnum:min:GN_POP": 7890, "numnum:sum:GN_POP": 19067, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 687, "numnum:min:GTOPO30": 228, "numnum:sum:GTOPO30": 915, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 189, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 189, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 48.88, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 48.88, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 2.43, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 2.43, "numnum:count:POP1950": 2, "numnum:max:POP1950": 6522, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 6522, "numnum:count:POP1955": 2, "numnum:max:POP1955": 6796, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 6796, "numnum:count:POP1960": 2, "numnum:max:POP1960": 7411, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 7411, "numnum:count:POP1965": 2, "numnum:max:POP1965": 7968, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 7968, "numnum:count:POP1970": 2, "numnum:max:POP1970": 8350, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 8350, "numnum:count:POP1975": 2, "numnum:max:POP1975": 8558, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 8558, "numnum:count:POP1980": 2, "numnum:max:POP1980": 8669, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 8669, "numnum:count:POP1985": 2, "numnum:max:POP1985": 8956, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 8956, "numnum:count:POP1990": 2, "numnum:max:POP1990": 9330, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 9330, "numnum:count:POP1995": 2, "numnum:max:POP1995": 9510, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9510, "numnum:count:POP2000": 2, "numnum:max:POP2000": 9692, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 9692, "numnum:count:POP2005": 2, "numnum:max:POP2005": 9852, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 9852, "numnum:count:POP2010": 2, "numnum:max:POP2010": 9904, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 9904, "numnum:count:POP2015": 2, "numnum:max:POP2015": 9958, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9958, "numnum:count:POP2020": 2, "numnum:max:POP2020": 10007, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 10007, "numnum:count:POP2025": 2, "numnum:max:POP2025": 10031, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 10031, "numnum:count:POP2050": 2, "numnum:max:POP2050": 10036, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 10036, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.864715 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "København", "NAMEPAR": "Copenhagen", "DIFFASCII": 1, "NAMEASCII": "Kobenhavn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Denmark", "SOV_A3": "DNK", "ADM0NAME": "Denmark", "ADM0_A3": "DNK", "ADM1NAME": "Hovedstaden", "ISO_A2": "DK", "LATITUDE": 55.678564, "LONGITUDE": 12.563486, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1085000, "POP_MIN": 1085000, "POP_OTHER": 1038288, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2618425, "MEGANAME": "København", "LS_NAME": "Copenhagen", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1124323, "MAX_POP20": 1230007, "MAX_POP50": 1256924, "MAX_POP300": 1256924, "MAX_POP310": 1256924, "MAX_NATSCA": 300, "MIN_AREAKM": 438, "MAX_AREAKM": 577, "MIN_AREAMI": 169, "MAX_AREAMI": 223, "MIN_PERKM": 348, "MAX_PERKM": 542, "MIN_PERMI": 216, "MAX_PERMI": 337, "MIN_BBXMIN": 12.116667, "MAX_BBXMIN": 12.316667, "MIN_BBXMAX": 12.658333, "MAX_BBXMAX": 12.658333, "MIN_BBYMIN": 55.4, "MAX_BBYMIN": 55.583333, "MIN_BBYMAX": 55.927962, "MAX_BBYMAX": 56.008333, "MEAN_BBXC": 12.437175, "MEAN_BBYC": 55.716213, "COMPARE": 0, "GN_ASCII": "Copenhagen", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 1153615, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Europe/Copenhagen", "GEONAMESNO": "GeoNames match general.", "UN_FID": 175, "UN_ADM0": "Denmark", "UN_LAT": 55.71, "UN_LONG": 12.54, "POP1950": 1216, "POP1955": 1227, "POP1960": 1284, "POP1965": 1373, "POP1970": 1380, "POP1975": 1172, "POP1980": 1096, "POP1985": 1056, "POP1990": 1035, "POP1995": 1048, "POP2000": 1077, "POP2005": 1085, "POP2010": 1085, "POP2015": 1087, "POP2020": 1092, "POP2025": 1095, "POP2050": 1096, "CITYALT": "Copenhagen", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ 12.568359, 55.677584 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genève", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bern", "DIFFASCII": 0, "NAMEASCII": "Bern", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Bern", "ISO_A2": "CH", "LATITUDE": 46.916683, "LONGITUDE": 7.466975, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 275329, "POP_MIN": 121631, "POP_OTHER": 267814, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2661552, "LS_NAME": "Bern", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 275329, "MAX_POP20": 275329, "MAX_POP50": 275329, "MAX_POP300": 275329, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 78, "MAX_AREAKM": 78, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 46.9, "MAX_BBYMIN": 46.9, "MIN_BBYMAX": 47.041667, "MAX_BBYMAX": 47.041667, "MEAN_BBXC": 7.453227, "MEAN_BBYC": 46.958239, "COMPARE": 0, "GN_ASCII": "Bern", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 121631, "ELEVATION": 0, "GTOPO30": 527, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Prague", "NAMEPAR": "Praha", "DIFFASCII": 0, "NAMEASCII": "Prague", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Czech Republic", "SOV_A3": "CZE", "ADM0NAME": "Czech Republic", "ADM0_A3": "CZE", "ADM1NAME": "Prague", "ISO_A2": "CZ", "LATITUDE": 50.083337, "LONGITUDE": 14.46598, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1162000, "POP_MIN": 2087, "POP_OTHER": 1088042, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 4548393, "MEGANAME": "Praha", "LS_NAME": "Prague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1115771, "MAX_POP20": 1115771, "MAX_POP50": 1115771, "MAX_POP300": 1115771, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 317, "MAX_AREAKM": 317, "MIN_AREAMI": 122, "MAX_AREAMI": 122, "MIN_PERKM": 249, "MAX_PERKM": 249, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": 14.266667, "MAX_BBXMIN": 14.266667, "MIN_BBXMAX": 14.616667, "MAX_BBXMAX": 14.616667, "MIN_BBYMIN": 49.95, "MAX_BBYMIN": 49.95, "MIN_BBYMAX": 50.183333, "MAX_BBYMAX": 50.183333, "MEAN_BBXC": 14.445557, "MEAN_BBYC": 50.073451, "COMPARE": 0, "GN_ASCII": "Prague", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2087, "ELEVATION": 308, "GTOPO30": 306, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 173, "UN_ADM0": "Czech Republic", "UN_LAT": 50.1, "UN_LONG": 14.45, "POP1950": 935, "POP1955": 967, "POP1960": 1001, "POP1965": 1038, "POP1970": 1076, "POP1975": 1126, "POP1980": 1179, "POP1985": 1197, "POP1990": 1212, "POP1995": 1194, "POP2000": 1172, "POP2005": 1164, "POP2010": 1162, "POP2015": 1160, "POP2020": 1159, "POP2025": 1159, "POP2050": 1159, "CITYALT": "Prague", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ 14.479980, 50.078295 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Warsaw", "NAMEPAR": "Warszawa", "DIFFASCII": 0, "NAMEASCII": "Warsaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Poland", "SOV_A3": "POL", "ADM0NAME": "Poland", "ADM0_A3": "POL", "ADM1NAME": "Masovian", "ISO_A2": "PL", "LATITUDE": 52.250001, "LONGITUDE": 21, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1707000, "POP_MIN": 1702139, "POP_OTHER": 2012431, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 756135, "MEGANAME": "Warszawa", "LS_NAME": "Warsaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2129163, "MAX_POP20": 2129163, "MAX_POP50": 2129163, "MAX_POP300": 2129163, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 802, "MAX_AREAKM": 802, "MIN_AREAMI": 310, "MAX_AREAMI": 310, "MIN_PERKM": 759, "MAX_PERKM": 759, "MIN_PERMI": 471, "MAX_PERMI": 471, "MIN_BBXMIN": 20.666667, "MAX_BBXMIN": 20.666667, "MIN_BBXMAX": 21.358333, "MAX_BBXMAX": 21.358333, "MIN_BBYMIN": 52.033333, "MAX_BBYMIN": 52.033333, "MIN_BBYMAX": 52.433333, "MAX_BBYMAX": 52.433333, "MEAN_BBXC": 21.031458, "MEAN_BBYC": 52.230916, "COMPARE": 0, "GN_ASCII": "Warsaw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 78, "GN_POP": 1702139, "ELEVATION": 0, "GTOPO30": 94, "TIMEZONE": "Europe/Warsaw", "GEONAMESNO": "GeoNames match general.", "UN_FID": 418, "UN_ADM0": "Poland", "UN_LAT": 52.24, "UN_LONG": 21.01, "POP1950": 768, "POP1955": 942, "POP1960": 1119, "POP1965": 1212, "POP1970": 1300, "POP1975": 1444, "POP1980": 1565, "POP1985": 1596, "POP1990": 1628, "POP1995": 1652, "POP2000": 1666, "POP2005": 1693, "POP2010": 1707, "POP2015": 1724, "POP2020": 1735, "POP2025": 1736, "POP2050": 1736, "CITYALT": "Warsaw", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.254709 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Vienna", "NAMEPAR": "Wien", "DIFFASCII": 0, "NAMEASCII": "Vienna", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Austria", "SOV_A3": "AUT", "ADM0NAME": "Austria", "ADM0_A3": "AUT", "ADM1NAME": "Wien", "ISO_A2": "AT", "LATITUDE": 48.200015, "LONGITUDE": 16.366639, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2400000, "POP_MIN": 1731000, "POP_OTHER": 1480886, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2761369, "MEGANAME": "Wien", "LS_NAME": "Vienna", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1561335, "MAX_POP20": 1610331, "MAX_POP50": 1610331, "MAX_POP300": 1610331, "MAX_POP310": 1610331, "MAX_NATSCA": 300, "MIN_AREAKM": 488, "MAX_AREAKM": 533, "MIN_AREAMI": 189, "MAX_AREAMI": 206, "MIN_PERKM": 444, "MAX_PERKM": 497, "MIN_PERMI": 276, "MAX_PERMI": 309, "MIN_BBXMIN": 16.133333, "MAX_BBXMIN": 16.133333, "MIN_BBXMAX": 16.583333, "MAX_BBXMAX": 16.583333, "MIN_BBYMIN": 47.916667, "MAX_BBYMIN": 48.008333, "MIN_BBYMAX": 48.383333, "MAX_BBYMAX": 48.383333, "MEAN_BBXC": 16.351672, "MEAN_BBYC": 48.18247, "COMPARE": 0, "GN_ASCII": "Vienna", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1691468, "ELEVATION": 171, "GTOPO30": 164, "TIMEZONE": "Europe/Vienna", "GEONAMESNO": "GeoNames match general.", "UN_FID": 321, "UN_ADM0": "Austria", "UN_LAT": 48.2, "UN_LONG": 16.32, "POP1950": 2086, "POP1955": 2087, "POP1960": 2089, "POP1965": 2080, "POP1970": 2070, "POP1975": 2059, "POP1980": 2049, "POP1985": 2069, "POP1990": 2096, "POP1995": 2127, "POP2000": 2158, "POP2005": 2264, "POP2010": 2315, "POP2015": 2385, "POP2020": 2451, "POP2025": 2476, "POP2050": 2496, "CITYALT": "Vienna", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.195387 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ljubljana", "DIFFASCII": 0, "NAMEASCII": "Ljubljana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovenia", "SOV_A3": "SVN", "ADM0NAME": "Slovenia", "ADM0_A3": "SVN", "ADM1NAME": "Osrednjeslovenska", "ISO_A2": "SI", "LATITUDE": 46.055288, "LONGITUDE": 14.514969, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 314807, "POP_MIN": 255115, "POP_OTHER": 256316, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3196359, "LS_NAME": "Ljubljana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314807, "MAX_POP20": 314807, "MAX_POP50": 314807, "MAX_POP300": 314807, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 129, "MAX_PERMI": 129, "MIN_BBXMIN": 14.433333, "MAX_BBXMIN": 14.433333, "MIN_BBXMAX": 14.633333, "MAX_BBXMAX": 14.633333, "MIN_BBYMIN": 46, "MAX_BBYMIN": 46, "MIN_BBYMAX": 46.241667, "MAX_BBYMAX": 46.241667, "MEAN_BBXC": 14.541032, "MEAN_BBYC": 46.091958, "COMPARE": 0, "GN_ASCII": "Ljubljana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 61, "GN_POP": 255115, "ELEVATION": 0, "GTOPO30": 284, "TIMEZONE": "Europe/Ljubljana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 46.057985 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "København", "NAMEPAR": "Copenhagen", "DIFFASCII": 1, "NAMEASCII": "Kobenhavn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Denmark", "SOV_A3": "DNK", "ADM0NAME": "Denmark", "ADM0_A3": "DNK", "ADM1NAME": "Hovedstaden", "ISO_A2": "DK", "LATITUDE": 55.678564, "LONGITUDE": 12.563486, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1085000, "POP_MIN": 1085000, "POP_OTHER": 1038288, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2618425, "MEGANAME": "København", "LS_NAME": "Copenhagen", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1124323, "MAX_POP20": 1230007, "MAX_POP50": 1256924, "MAX_POP300": 1256924, "MAX_POP310": 1256924, "MAX_NATSCA": 300, "MIN_AREAKM": 438, "MAX_AREAKM": 577, "MIN_AREAMI": 169, "MAX_AREAMI": 223, "MIN_PERKM": 348, "MAX_PERKM": 542, "MIN_PERMI": 216, "MAX_PERMI": 337, "MIN_BBXMIN": 12.116667, "MAX_BBXMIN": 12.316667, "MIN_BBXMAX": 12.658333, "MAX_BBXMAX": 12.658333, "MIN_BBYMIN": 55.4, "MAX_BBYMIN": 55.583333, "MIN_BBYMAX": 55.927962, "MAX_BBYMAX": 56.008333, "MEAN_BBXC": 12.437175, "MEAN_BBYC": 55.716213, "COMPARE": 0, "GN_ASCII": "Copenhagen", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 1153615, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Europe/Copenhagen", "GEONAMESNO": "GeoNames match general.", "UN_FID": 175, "UN_ADM0": "Denmark", "UN_LAT": 55.71, "UN_LONG": 12.54, "POP1950": 1216, "POP1955": 1227, "POP1960": 1284, "POP1965": 1373, "POP1970": 1380, "POP1975": 1172, "POP1980": 1096, "POP1985": 1056, "POP1990": 1035, "POP1995": 1048, "POP2000": 1077, "POP2005": 1085, "POP2010": 1085, "POP2015": 1087, "POP2020": 1092, "POP2025": 1095, "POP2050": 1096, "CITYALT": "Copenhagen", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ 12.568359, 55.677584 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Prague", "NAMEPAR": "Praha", "DIFFASCII": 0, "NAMEASCII": "Prague", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Czech Republic", "SOV_A3": "CZE", "ADM0NAME": "Czech Republic", "ADM0_A3": "CZE", "ADM1NAME": "Prague", "ISO_A2": "CZ", "LATITUDE": 50.083337, "LONGITUDE": 14.46598, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1162000, "POP_MIN": 2087, "POP_OTHER": 1088042, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 4548393, "MEGANAME": "Praha", "LS_NAME": "Prague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1115771, "MAX_POP20": 1115771, "MAX_POP50": 1115771, "MAX_POP300": 1115771, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 317, "MAX_AREAKM": 317, "MIN_AREAMI": 122, "MAX_AREAMI": 122, "MIN_PERKM": 249, "MAX_PERKM": 249, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": 14.266667, "MAX_BBXMIN": 14.266667, "MIN_BBXMAX": 14.616667, "MAX_BBXMAX": 14.616667, "MIN_BBYMIN": 49.95, "MAX_BBYMIN": 49.95, "MIN_BBYMAX": 50.183333, "MAX_BBYMAX": 50.183333, "MEAN_BBXC": 14.445557, "MEAN_BBYC": 50.073451, "COMPARE": 0, "GN_ASCII": "Prague", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2087, "ELEVATION": 308, "GTOPO30": 306, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 173, "UN_ADM0": "Czech Republic", "UN_LAT": 50.1, "UN_LONG": 14.45, "POP1950": 935, "POP1955": 967, "POP1960": 1001, "POP1965": 1038, "POP1970": 1076, "POP1975": 1126, "POP1980": 1179, "POP1985": 1197, "POP1990": 1212, "POP1995": 1194, "POP2000": 1172, "POP2005": 1164, "POP2010": 1162, "POP2015": 1160, "POP2020": 1159, "POP2025": 1159, "POP2050": 1159, "CITYALT": "Prague", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ 14.479980, 50.078295 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Warsaw", "NAMEPAR": "Warszawa", "DIFFASCII": 0, "NAMEASCII": "Warsaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Poland", "SOV_A3": "POL", "ADM0NAME": "Poland", "ADM0_A3": "POL", "ADM1NAME": "Masovian", "ISO_A2": "PL", "LATITUDE": 52.250001, "LONGITUDE": 21, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1707000, "POP_MIN": 1702139, "POP_OTHER": 2012431, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 756135, "MEGANAME": "Warszawa", "LS_NAME": "Warsaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2129163, "MAX_POP20": 2129163, "MAX_POP50": 2129163, "MAX_POP300": 2129163, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 802, "MAX_AREAKM": 802, "MIN_AREAMI": 310, "MAX_AREAMI": 310, "MIN_PERKM": 759, "MAX_PERKM": 759, "MIN_PERMI": 471, "MAX_PERMI": 471, "MIN_BBXMIN": 20.666667, "MAX_BBXMIN": 20.666667, "MIN_BBXMAX": 21.358333, "MAX_BBXMAX": 21.358333, "MIN_BBYMIN": 52.033333, "MAX_BBYMIN": 52.033333, "MIN_BBYMAX": 52.433333, "MAX_BBYMAX": 52.433333, "MEAN_BBXC": 21.031458, "MEAN_BBYC": 52.230916, "COMPARE": 0, "GN_ASCII": "Warsaw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 78, "GN_POP": 1702139, "ELEVATION": 0, "GTOPO30": 94, "TIMEZONE": "Europe/Warsaw", "GEONAMESNO": "GeoNames match general.", "UN_FID": 418, "UN_ADM0": "Poland", "UN_LAT": 52.24, "UN_LONG": 21.01, "POP1950": 768, "POP1955": 942, "POP1960": 1119, "POP1965": 1212, "POP1970": 1300, "POP1975": 1444, "POP1980": 1565, "POP1985": 1596, "POP1990": 1628, "POP1995": 1652, "POP2000": 1666, "POP2005": 1693, "POP2010": 1707, "POP2015": 1724, "POP2020": 1735, "POP2025": 1736, "POP2050": 1736, "CITYALT": "Warsaw", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.254709 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Rome", "DIFFASCII": 0, "NAMEASCII": "Rome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Italy", "SOV_A3": "ITA", "ADM0NAME": "Italy", "ADM0_A3": "ITA", "ADM1NAME": "Lazio", "ISO_A2": "IT", "LATITUDE": 41.895956, "LONGITUDE": 12.483258, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3339000, "POP_MIN": 35452, "POP_OTHER": 2050212, "RANK_MAX": 12, "RANK_MIN": 7, "GEONAMEID": 4219762, "MEGANAME": "Rome", "LS_NAME": "Rome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2143900, "MAX_POP20": 2143900, "MAX_POP50": 2666328, "MAX_POP300": 2666328, "MAX_POP310": 2666328, "MAX_NATSCA": 300, "MIN_AREAKM": 505, "MAX_AREAKM": 683, "MIN_AREAMI": 195, "MAX_AREAMI": 264, "MIN_PERKM": 382, "MAX_PERKM": 500, "MIN_PERMI": 238, "MAX_PERMI": 311, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.450494, "MIN_BBXMAX": 12.766667, "MAX_BBXMAX": 12.766667, "MIN_BBYMIN": 41.666667, "MAX_BBYMIN": 41.666667, "MIN_BBYMAX": 42.033333, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.561474, "MEAN_BBYC": 41.864442, "COMPARE": 0, "GN_ASCII": "Rome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 35452, "ELEVATION": 187, "GTOPO30": 183, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 308, "UN_ADM0": "Italy", "UN_LAT": 41.87, "UN_LONG": 12.51, "POP1950": 1884, "POP1955": 2143, "POP1960": 2456, "POP1965": 2780, "POP1970": 3135, "POP1975": 3300, "POP1980": 3390, "POP1985": 3429, "POP1990": 3450, "POP1995": 3425, "POP2000": 3385, "POP2005": 3348, "POP2010": 3339, "POP2015": 3333, "POP2020": 3330, "POP2025": 3330, "POP2050": 3330, "CITYALT": "Rome", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.885921 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Vienna", "NAMEPAR": "Wien", "DIFFASCII": 0, "NAMEASCII": "Vienna", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Austria", "SOV_A3": "AUT", "ADM0NAME": "Austria", "ADM0_A3": "AUT", "ADM1NAME": "Wien", "ISO_A2": "AT", "LATITUDE": 48.200015, "LONGITUDE": 16.366639, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2400000, "POP_MIN": 1731000, "POP_OTHER": 1480886, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2761369, "MEGANAME": "Wien", "LS_NAME": "Vienna", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1561335, "MAX_POP20": 1610331, "MAX_POP50": 1610331, "MAX_POP300": 1610331, "MAX_POP310": 1610331, "MAX_NATSCA": 300, "MIN_AREAKM": 488, "MAX_AREAKM": 533, "MIN_AREAMI": 189, "MAX_AREAMI": 206, "MIN_PERKM": 444, "MAX_PERKM": 497, "MIN_PERMI": 276, "MAX_PERMI": 309, "MIN_BBXMIN": 16.133333, "MAX_BBXMIN": 16.133333, "MIN_BBXMAX": 16.583333, "MAX_BBXMAX": 16.583333, "MIN_BBYMIN": 47.916667, "MAX_BBYMIN": 48.008333, "MIN_BBYMAX": 48.383333, "MAX_BBYMAX": 48.383333, "MEAN_BBXC": 16.351672, "MEAN_BBYC": 48.18247, "COMPARE": 0, "GN_ASCII": "Vienna", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1691468, "ELEVATION": 171, "GTOPO30": 164, "TIMEZONE": "Europe/Vienna", "GEONAMESNO": "GeoNames match general.", "UN_FID": 321, "UN_ADM0": "Austria", "UN_LAT": 48.2, "UN_LONG": 16.32, "POP1950": 2086, "POP1955": 2087, "POP1960": 2089, "POP1965": 2080, "POP1970": 2070, "POP1975": 2059, "POP1980": 2049, "POP1985": 2069, "POP1990": 2096, "POP1995": 2127, "POP2000": 2158, "POP2005": 2264, "POP2010": 2315, "POP2015": 2385, "POP2020": 2451, "POP2025": 2476, "POP2050": 2496, "CITYALT": "Vienna", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.195387 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bratislava", "DIFFASCII": 0, "NAMEASCII": "Bratislava", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovakia", "SOV_A3": "SVK", "ADM0NAME": "Slovakia", "ADM0_A3": "SVK", "ADM1NAME": "Bratislavský", "ISO_A2": "SK", "LATITUDE": 48.150018, "LONGITUDE": 17.116981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 423737, "POP_MIN": 373687, "POP_OTHER": 361489, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3060972, "LS_NAME": "Bratislava", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 373687, "MAX_POP20": 373687, "MAX_POP50": 373687, "MAX_POP300": 373687, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 113, "MAX_AREAKM": 113, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 17.016667, "MAX_BBXMIN": 17.016667, "MIN_BBXMAX": 17.233333, "MAX_BBXMAX": 17.233333, "MIN_BBYMIN": 48.091667, "MAX_BBYMIN": 48.091667, "MIN_BBYMAX": 48.225, "MAX_BBYMAX": 48.225, "MEAN_BBXC": 17.131335, "MEAN_BBYC": 48.159311, "COMPARE": 0, "GN_ASCII": "Bratislava", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 423737, "ELEVATION": 0, "GTOPO30": 132, "TIMEZONE": "Europe/Bratislava", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 17.116699, 48.151428 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ljubljana", "DIFFASCII": 0, "NAMEASCII": "Ljubljana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovenia", "SOV_A3": "SVN", "ADM0NAME": "Slovenia", "ADM0_A3": "SVN", "ADM1NAME": "Osrednjeslovenska", "ISO_A2": "SI", "LATITUDE": 46.055288, "LONGITUDE": 14.514969, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 314807, "POP_MIN": 255115, "POP_OTHER": 256316, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3196359, "LS_NAME": "Ljubljana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314807, "MAX_POP20": 314807, "MAX_POP50": 314807, "MAX_POP300": 314807, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 129, "MAX_PERMI": 129, "MIN_BBXMIN": 14.433333, "MAX_BBXMIN": 14.433333, "MIN_BBXMAX": 14.633333, "MAX_BBXMAX": 14.633333, "MIN_BBYMIN": 46, "MAX_BBYMIN": 46, "MIN_BBYMAX": 46.241667, "MAX_BBYMAX": 46.241667, "MEAN_BBXC": 14.541032, "MEAN_BBYC": 46.091958, "COMPARE": 0, "GN_ASCII": "Ljubljana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 61, "GN_POP": 255115, "ELEVATION": 0, "GTOPO30": 284, "TIMEZONE": "Europe/Ljubljana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 46.057985 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Budapest", "DIFFASCII": 0, "NAMEASCII": "Budapest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Hungary", "SOV_A3": "HUN", "ADM0NAME": "Hungary", "ADM0_A3": "HUN", "ADM1NAME": "Budapest", "ISO_A2": "HU", "LATITUDE": 47.500006, "LONGITUDE": 19.083321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1679000, "POP_MIN": 1679000, "POP_OTHER": 1718895, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3054643, "MEGANAME": "Budapest", "LS_NAME": "Budapest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1788020, "MAX_POP20": 1788020, "MAX_POP50": 1788020, "MAX_POP300": 1788020, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 556, "MAX_AREAKM": 556, "MIN_AREAMI": 215, "MAX_AREAMI": 215, "MIN_PERKM": 460, "MAX_PERKM": 460, "MIN_PERMI": 286, "MAX_PERMI": 286, "MIN_BBXMIN": 18.85, "MAX_BBXMIN": 18.85, "MIN_BBXMAX": 19.416667, "MAX_BBXMAX": 19.416667, "MIN_BBYMIN": 47.35, "MAX_BBYMIN": 47.35, "MIN_BBYMAX": 47.658333, "MAX_BBYMAX": 47.658333, "MEAN_BBXC": 19.106763, "MEAN_BBYC": 47.478602, "COMPARE": 0, "GN_ASCII": "Budapest", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1696128, "ELEVATION": 0, "GTOPO30": 100, "TIMEZONE": "Europe/Budapest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 211, "UN_ADM0": "Hungary", "UN_LAT": 47.51, "UN_LONG": 19.09, "POP1950": 1618, "POP1955": 1714, "POP1960": 1811, "POP1965": 1878, "POP1970": 1946, "POP1975": 2005, "POP1980": 2057, "POP1985": 2036, "POP1990": 2005, "POP1995": 1893, "POP2000": 1787, "POP2005": 1693, "POP2010": 1679, "POP2015": 1664, "POP2020": 1655, "POP2025": 1655, "POP2050": 1655, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ 19.094238, 47.502359 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Sarajevo", "DIFFASCII": 0, "NAMEASCII": "Sarajevo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bosnia and Herzegovina", "SOV_A3": "BIH", "ADM0NAME": "Bosnia and Herzegovina", "ADM0_A3": "BIH", "ADM1NAME": "Sarajevo", "ISO_A2": "BA", "LATITUDE": 43.850022, "LONGITUDE": 18.383002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 696731, "POP_MIN": 628902, "POP_OTHER": 627065, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3191281, "LS_NAME": "Sarajevo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 628902, "MAX_POP20": 628902, "MAX_POP50": 628902, "MAX_POP300": 628902, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 112, "MAX_PERKM": 112, "MIN_PERMI": 70, "MAX_PERMI": 70, "MIN_BBXMIN": 18.216667, "MAX_BBXMIN": 18.216667, "MIN_BBXMAX": 18.466667, "MAX_BBXMAX": 18.466667, "MIN_BBYMIN": 43.783333, "MAX_BBYMIN": 43.783333, "MIN_BBYMAX": 43.9, "MAX_BBYMAX": 43.9, "MEAN_BBXC": 18.351272, "MEAN_BBYC": 43.846183, "COMPARE": 0, "GN_ASCII": "Sarajevo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 696731, "ELEVATION": 0, "GTOPO30": 545, "TIMEZONE": "Europe/Sarajevo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ 18.391113, 43.850374 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Podgorica", "DIFFASCII": 0, "NAMEASCII": "Podgorica", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Montenegro", "SOV_A3": "MNE", "ADM0NAME": "Montenegro", "ADM0_A3": "MNE", "ADM1NAME": "Podgorica", "ISO_A2": "ME", "LATITUDE": 42.465973, "LONGITUDE": 19.266307, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 145850, "POP_MIN": 136473, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3193044, "LS_NAME": "Podgorica", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 145850, "MAX_POP20": 145850, "MAX_POP50": 145850, "MAX_POP300": 145850, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 19.208333, "MAX_BBXMIN": 19.208333, "MIN_BBXMAX": 19.316667, "MAX_BBXMAX": 19.316667, "MIN_BBYMIN": 42.408333, "MAX_BBYMIN": 42.408333, "MIN_BBYMAX": 42.475, "MAX_BBYMAX": 42.475, "MEAN_BBXC": 19.263397, "MEAN_BBYC": 42.442115, "COMPARE": 0, "GN_ASCII": "Podgorica", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 136473, "ELEVATION": 0, "GTOPO30": 58, "TIMEZONE": "Europe/Podgorica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.455888 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.809122 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Rome", "DIFFASCII": 0, "NAMEASCII": "Rome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Italy", "SOV_A3": "ITA", "ADM0NAME": "Italy", "ADM0_A3": "ITA", "ADM1NAME": "Lazio", "ISO_A2": "IT", "LATITUDE": 41.895956, "LONGITUDE": 12.483258, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3339000, "POP_MIN": 35452, "POP_OTHER": 2050212, "RANK_MAX": 12, "RANK_MIN": 7, "GEONAMEID": 4219762, "MEGANAME": "Rome", "LS_NAME": "Rome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2143900, "MAX_POP20": 2143900, "MAX_POP50": 2666328, "MAX_POP300": 2666328, "MAX_POP310": 2666328, "MAX_NATSCA": 300, "MIN_AREAKM": 505, "MAX_AREAKM": 683, "MIN_AREAMI": 195, "MAX_AREAMI": 264, "MIN_PERKM": 382, "MAX_PERKM": 500, "MIN_PERMI": 238, "MAX_PERMI": 311, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.450494, "MIN_BBXMAX": 12.766667, "MAX_BBXMAX": 12.766667, "MIN_BBYMIN": 41.666667, "MAX_BBYMIN": 41.666667, "MIN_BBYMAX": 42.033333, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.561474, "MEAN_BBYC": 41.864442, "COMPARE": 0, "GN_ASCII": "Rome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 35452, "ELEVATION": 187, "GTOPO30": 183, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 308, "UN_ADM0": "Italy", "UN_LAT": 41.87, "UN_LONG": 12.51, "POP1950": 1884, "POP1955": 2143, "POP1960": 2456, "POP1965": 2780, "POP1970": 3135, "POP1975": 3300, "POP1980": 3390, "POP1985": 3429, "POP1990": 3450, "POP1995": 3425, "POP2000": 3385, "POP2005": 3348, "POP2010": 3339, "POP2015": 3333, "POP2020": 3330, "POP2025": 3330, "POP2050": 3330, "CITYALT": "Rome", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 650, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 10, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 48.150018, "numnum:min:LATITUDE": 41.895956, "numnum:sum:LATITUDE": 90.045974, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 17.116981, "numnum:min:LONGITUDE": 12.483258, "numnum:sum:LONGITUDE": 29.600239, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3339000, "numnum:min:POP_MAX": 423737, "numnum:sum:POP_MAX": 3762737, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 373687, "numnum:min:POP_MIN": 35452, "numnum:sum:POP_MIN": 409139, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2050212, "numnum:min:POP_OTHER": 361489, "numnum:sum:POP_OTHER": 2411701, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 17, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 4219762, "numnum:min:GEONAMEID": 3060972, "numnum:sum:GEONAMEID": 7280734, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2143900, "numnum:min:MAX_POP10": 373687, "numnum:sum:MAX_POP10": 2517587, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2143900, "numnum:min:MAX_POP20": 373687, "numnum:sum:MAX_POP20": 2517587, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 2666328, "numnum:min:MAX_POP50": 373687, "numnum:sum:MAX_POP50": 3040015, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 2666328, "numnum:min:MAX_POP300": 373687, "numnum:sum:MAX_POP300": 3040015, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 2666328, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 2666328, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 505, "numnum:min:MIN_AREAKM": 113, "numnum:sum:MIN_AREAKM": 618, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 683, "numnum:min:MAX_AREAKM": 113, "numnum:sum:MAX_AREAKM": 796, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 195, "numnum:min:MIN_AREAMI": 43, "numnum:sum:MIN_AREAMI": 238, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 264, "numnum:min:MAX_AREAMI": 43, "numnum:sum:MAX_AREAMI": 307, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 382, "numnum:min:MIN_PERKM": 121, "numnum:sum:MIN_PERKM": 503, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 500, "numnum:min:MAX_PERKM": 121, "numnum:sum:MAX_PERKM": 621, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 238, "numnum:min:MIN_PERMI": 75, "numnum:sum:MIN_PERMI": 313, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 311, "numnum:min:MAX_PERMI": 75, "numnum:sum:MAX_PERMI": 386, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 17.016667, "numnum:min:MIN_BBXMIN": 12.333333, "numnum:sum:MIN_BBXMIN": 29.35, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 17.016667, "numnum:min:MAX_BBXMIN": 12.450494, "numnum:sum:MAX_BBXMIN": 29.467161000000006, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 17.233333, "numnum:min:MIN_BBXMAX": 12.766667, "numnum:sum:MIN_BBXMAX": 30, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 17.233333, "numnum:min:MAX_BBXMAX": 12.766667, "numnum:sum:MAX_BBXMAX": 30, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 48.091667, "numnum:min:MIN_BBYMIN": 41.666667, "numnum:sum:MIN_BBYMIN": 89.75833399999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 48.091667, "numnum:min:MAX_BBYMIN": 41.666667, "numnum:sum:MAX_BBYMIN": 89.75833399999999, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 48.225, "numnum:min:MIN_BBYMAX": 42.033333, "numnum:sum:MIN_BBYMAX": 90.258333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 48.225, "numnum:min:MAX_BBYMAX": 42.05, "numnum:sum:MAX_BBYMAX": 90.275, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 17.131335, "numnum:min:MEAN_BBXC": 12.561474, "numnum:sum:MEAN_BBXC": 29.692809, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 48.159311, "numnum:min:MEAN_BBYC": 41.864442, "numnum:sum:MEAN_BBYC": 90.023753, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 423737, "numnum:min:GN_POP": 35452, "numnum:sum:GN_POP": 459189, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 187, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 187, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 183, "numnum:min:GTOPO30": 132, "numnum:sum:GTOPO30": 315, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 308, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 308, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 41.87, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 41.87, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 12.51, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 12.51, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1884, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1884, "numnum:count:POP1955": 2, "numnum:max:POP1955": 2143, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2143, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2456, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2456, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2780, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2780, "numnum:count:POP1970": 2, "numnum:max:POP1970": 3135, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3135, "numnum:count:POP1975": 2, "numnum:max:POP1975": 3300, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3300, "numnum:count:POP1980": 2, "numnum:max:POP1980": 3390, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3390, "numnum:count:POP1985": 2, "numnum:max:POP1985": 3429, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3429, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3450, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3450, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3425, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3425, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3385, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3385, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3348, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3348, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3339, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3339, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3333, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3333, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3330, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3330, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3330, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3330, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3330, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3330, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.885921 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tirana", "DIFFASCII": 0, "NAMEASCII": "Tirana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Albania", "SOV_A3": "ALB", "ADM0NAME": "Albania", "ADM0_A3": "ALB", "ADM1NAME": "Durrës", "ISO_A2": "AL", "LATITUDE": 41.327541, "LONGITUDE": 19.818883, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895350, "POP_MIN": 421286, "POP_OTHER": 517792, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 3183875, "LS_NAME": "Tirana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530241, "MAX_POP20": 530241, "MAX_POP50": 530241, "MAX_POP300": 530241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 74, "MAX_AREAKM": 74, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 80, "MAX_PERKM": 80, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": 19.733333, "MAX_BBXMIN": 19.733333, "MIN_BBXMAX": 19.875, "MAX_BBXMAX": 19.875, "MIN_BBYMIN": 41.275, "MAX_BBYMIN": 41.275, "MIN_BBYMAX": 41.4, "MAX_BBYMAX": 41.4, "MEAN_BBXC": 19.805556, "MEAN_BBYC": 41.339474, "COMPARE": 0, "GN_ASCII": "Tirana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 50, "GN_POP": 374801, "ELEVATION": 0, "GTOPO30": 103, "TIMEZONE": "Europe/Tirane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Budapest", "DIFFASCII": 0, "NAMEASCII": "Budapest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Hungary", "SOV_A3": "HUN", "ADM0NAME": "Hungary", "ADM0_A3": "HUN", "ADM1NAME": "Budapest", "ISO_A2": "HU", "LATITUDE": 47.500006, "LONGITUDE": 19.083321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1679000, "POP_MIN": 1679000, "POP_OTHER": 1718895, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3054643, "MEGANAME": "Budapest", "LS_NAME": "Budapest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1788020, "MAX_POP20": 1788020, "MAX_POP50": 1788020, "MAX_POP300": 1788020, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 556, "MAX_AREAKM": 556, "MIN_AREAMI": 215, "MAX_AREAMI": 215, "MIN_PERKM": 460, "MAX_PERKM": 460, "MIN_PERMI": 286, "MAX_PERMI": 286, "MIN_BBXMIN": 18.85, "MAX_BBXMIN": 18.85, "MIN_BBXMAX": 19.416667, "MAX_BBXMAX": 19.416667, "MIN_BBYMIN": 47.35, "MAX_BBYMIN": 47.35, "MIN_BBYMAX": 47.658333, "MAX_BBYMAX": 47.658333, "MEAN_BBXC": 19.106763, "MEAN_BBYC": 47.478602, "COMPARE": 0, "GN_ASCII": "Budapest", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1696128, "ELEVATION": 0, "GTOPO30": 100, "TIMEZONE": "Europe/Budapest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 211, "UN_ADM0": "Hungary", "UN_LAT": 47.51, "UN_LONG": 19.09, "POP1950": 1618, "POP1955": 1714, "POP1960": 1811, "POP1965": 1878, "POP1970": 1946, "POP1975": 2005, "POP1980": 2057, "POP1985": 2036, "POP1990": 2005, "POP1995": 1893, "POP2000": 1787, "POP2005": 1693, "POP2010": 1679, "POP2015": 1664, "POP2020": 1655, "POP2025": 1655, "POP2050": 1655, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ 19.094238, 47.502359 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.666281 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Sarajevo", "DIFFASCII": 0, "NAMEASCII": "Sarajevo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bosnia and Herzegovina", "SOV_A3": "BIH", "ADM0NAME": "Bosnia and Herzegovina", "ADM0_A3": "BIH", "ADM1NAME": "Sarajevo", "ISO_A2": "BA", "LATITUDE": 43.850022, "LONGITUDE": 18.383002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 696731, "POP_MIN": 628902, "POP_OTHER": 627065, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3191281, "LS_NAME": "Sarajevo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 628902, "MAX_POP20": 628902, "MAX_POP50": 628902, "MAX_POP300": 628902, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 112, "MAX_PERKM": 112, "MIN_PERMI": 70, "MAX_PERMI": 70, "MIN_BBXMIN": 18.216667, "MAX_BBXMIN": 18.216667, "MIN_BBXMAX": 18.466667, "MAX_BBXMAX": 18.466667, "MIN_BBYMIN": 43.783333, "MAX_BBYMIN": 43.783333, "MIN_BBYMAX": 43.9, "MAX_BBYMAX": 43.9, "MEAN_BBXC": 18.351272, "MEAN_BBYC": 43.846183, "COMPARE": 0, "GN_ASCII": "Sarajevo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 696731, "ELEVATION": 0, "GTOPO30": 545, "TIMEZONE": "Europe/Sarajevo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ 18.391113, 43.850374 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Skopje", "DIFFASCII": 0, "NAMEASCII": "Skopje", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Macedonia", "SOV_A3": "MKD", "ADM0NAME": "Macedonia", "ADM0_A3": "MKD", "ADM1NAME": "Centar", "ISO_A2": "MK", "LATITUDE": 42.000006, "LONGITUDE": 21.433461, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 494087, "POP_MIN": 474889, "POP_OTHER": 491890, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 785842, "LS_NAME": "Skopje", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 494087, "MAX_POP20": 494087, "MAX_POP50": 494087, "MAX_POP300": 494087, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 114, "MAX_AREAKM": 114, "MIN_AREAMI": 44, "MAX_AREAMI": 44, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 21.3, "MAX_BBXMIN": 21.3, "MIN_BBXMAX": 21.533333, "MAX_BBXMAX": 21.533333, "MIN_BBYMIN": 41.95, "MAX_BBYMIN": 41.95, "MIN_BBYMAX": 42.066667, "MAX_BBYMAX": 42.066667, "MEAN_BBXC": 21.430243, "MEAN_BBYC": 42.007257, "COMPARE": 0, "GN_ASCII": "Skopje", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 474889, "ELEVATION": 0, "GTOPO30": 246, "TIMEZONE": "Europe/Skopje", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 42.000325 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Podgorica", "DIFFASCII": 0, "NAMEASCII": "Podgorica", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Montenegro", "SOV_A3": "MNE", "ADM0NAME": "Montenegro", "ADM0_A3": "MNE", "ADM1NAME": "Podgorica", "ISO_A2": "ME", "LATITUDE": 42.465973, "LONGITUDE": 19.266307, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 145850, "POP_MIN": 136473, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3193044, "LS_NAME": "Podgorica", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 145850, "MAX_POP20": 145850, "MAX_POP50": 145850, "MAX_POP300": 145850, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 19.208333, "MAX_BBXMIN": 19.208333, "MIN_BBXMAX": 19.316667, "MAX_BBXMAX": 19.316667, "MIN_BBYMIN": 42.408333, "MAX_BBYMIN": 42.408333, "MIN_BBYMAX": 42.475, "MAX_BBYMAX": 42.475, "MEAN_BBXC": 19.263397, "MEAN_BBYC": 42.442115, "COMPARE": 0, "GN_ASCII": "Podgorica", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 136473, "ELEVATION": 0, "GTOPO30": 58, "TIMEZONE": "Europe/Podgorica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.455888 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.809122 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tallinn", "DIFFASCII": 0, "NAMEASCII": "Tallinn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Estonia", "SOV_A3": "EST", "ADM0NAME": "Estonia", "ADM0_A3": "EST", "ADM1NAME": "Harju", "ISO_A2": "EE", "LATITUDE": 59.433877, "LONGITUDE": 24.728041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 394024, "POP_MIN": 340027, "POP_OTHER": 317949, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 588409, "LS_NAME": "Tallinn", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 340027, "MAX_POP20": 340027, "MAX_POP50": 340027, "MAX_POP300": 340027, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 130, "MAX_AREAKM": 130, "MIN_AREAMI": 50, "MAX_AREAMI": 50, "MIN_PERKM": 164, "MAX_PERKM": 164, "MIN_PERMI": 102, "MAX_PERMI": 102, "MIN_BBXMIN": 24.591667, "MAX_BBXMIN": 24.591667, "MIN_BBXMAX": 24.916667, "MAX_BBXMAX": 24.916667, "MIN_BBYMIN": 59.333333, "MAX_BBYMIN": 59.333333, "MIN_BBYMAX": 59.525, "MAX_BBYMAX": 59.525, "MEAN_BBXC": 24.746591, "MEAN_BBYC": 59.42709, "COMPARE": 0, "GN_ASCII": "Tallinn", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 394024, "ELEVATION": 0, "GTOPO30": 22, "TIMEZONE": "Europe/Tallinn", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ 24.741211, 59.433903 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tirana", "DIFFASCII": 0, "NAMEASCII": "Tirana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Albania", "SOV_A3": "ALB", "ADM0NAME": "Albania", "ADM0_A3": "ALB", "ADM1NAME": "Durrës", "ISO_A2": "AL", "LATITUDE": 41.327541, "LONGITUDE": 19.818883, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895350, "POP_MIN": 421286, "POP_OTHER": 517792, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 3183875, "LS_NAME": "Tirana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530241, "MAX_POP20": 530241, "MAX_POP50": 530241, "MAX_POP300": 530241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 74, "MAX_AREAKM": 74, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 80, "MAX_PERKM": 80, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": 19.733333, "MAX_BBXMIN": 19.733333, "MIN_BBXMAX": 19.875, "MAX_BBXMAX": 19.875, "MIN_BBYMIN": 41.275, "MAX_BBYMIN": 41.275, "MIN_BBYMAX": 41.4, "MAX_BBYMAX": 41.4, "MEAN_BBXC": 19.805556, "MEAN_BBYC": 41.339474, "COMPARE": 0, "GN_ASCII": "Tirana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 50, "GN_POP": 374801, "ELEVATION": 0, "GTOPO30": 103, "TIMEZONE": "Europe/Tirane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.666281 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Skopje", "DIFFASCII": 0, "NAMEASCII": "Skopje", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Macedonia", "SOV_A3": "MKD", "ADM0NAME": "Macedonia", "ADM0_A3": "MKD", "ADM1NAME": "Centar", "ISO_A2": "MK", "LATITUDE": 42.000006, "LONGITUDE": 21.433461, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 494087, "POP_MIN": 474889, "POP_OTHER": 491890, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 785842, "LS_NAME": "Skopje", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 494087, "MAX_POP20": 494087, "MAX_POP50": 494087, "MAX_POP300": 494087, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 114, "MAX_AREAKM": 114, "MIN_AREAMI": 44, "MAX_AREAMI": 44, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 21.3, "MAX_BBXMIN": 21.3, "MIN_BBXMAX": 21.533333, "MAX_BBXMAX": 21.533333, "MIN_BBYMIN": 41.95, "MAX_BBYMIN": 41.95, "MIN_BBYMAX": 42.066667, "MAX_BBYMAX": 42.066667, "MEAN_BBXC": 21.430243, "MEAN_BBYC": 42.007257, "COMPARE": 0, "GN_ASCII": "Skopje", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 474889, "ELEVATION": 0, "GTOPO30": 246, "TIMEZONE": "Europe/Skopje", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 42.000325 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Minsk", "DIFFASCII": 0, "NAMEASCII": "Minsk", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Belarus", "SOV_A3": "BLR", "ADM0NAME": "Belarus", "ADM0_A3": "BLR", "ADM1NAME": "Minsk", "ISO_A2": "BY", "LATITUDE": 53.899977, "LONGITUDE": 27.566627, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1577138, "POP_OTHER": 1557919, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 625144, "MEGANAME": "Minsk", "LS_NAME": "Minsk", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1577138, "MAX_POP20": 1577138, "MAX_POP50": 1577138, "MAX_POP300": 1577138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 82, "MAX_AREAMI": 82, "MIN_PERKM": 196, "MAX_PERKM": 196, "MIN_PERMI": 122, "MAX_PERMI": 122, "MIN_BBXMIN": 27.408333, "MAX_BBXMIN": 27.408333, "MIN_BBXMAX": 27.716667, "MAX_BBXMAX": 27.716667, "MIN_BBYMIN": 53.8, "MAX_BBYMIN": 53.8, "MIN_BBYMAX": 53.983333, "MAX_BBYMAX": 53.983333, "MEAN_BBXC": 27.562159, "MEAN_BBYC": 53.893169, "COMPARE": 0, "GN_ASCII": "Minsk", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1742124, "ELEVATION": 0, "GTOPO30": 199, "TIMEZONE": "Europe/Minsk", "GEONAMESNO": "GeoNames match general.", "UN_FID": 4, "UN_ADM0": "Belarus", "UN_LAT": 53.89, "UN_LONG": 27.57, "POP1950": 284, "POP1955": 414, "POP1960": 551, "POP1965": 719, "POP1970": 932, "POP1975": 1120, "POP1980": 1318, "POP1985": 1474, "POP1990": 1607, "POP1995": 1649, "POP2000": 1700, "POP2005": 1775, "POP2010": 1805, "POP2015": 1846, "POP2020": 1879, "POP2025": 1883, "POP2050": 1883, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ 27.575684, 53.904338 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tallinn", "DIFFASCII": 0, "NAMEASCII": "Tallinn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Estonia", "SOV_A3": "EST", "ADM0NAME": "Estonia", "ADM0_A3": "EST", "ADM1NAME": "Harju", "ISO_A2": "EE", "LATITUDE": 59.433877, "LONGITUDE": 24.728041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 394024, "POP_MIN": 340027, "POP_OTHER": 317949, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 588409, "LS_NAME": "Tallinn", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 340027, "MAX_POP20": 340027, "MAX_POP50": 340027, "MAX_POP300": 340027, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 130, "MAX_AREAKM": 130, "MIN_AREAMI": 50, "MAX_AREAMI": 50, "MIN_PERKM": 164, "MAX_PERKM": 164, "MIN_PERMI": 102, "MAX_PERMI": 102, "MIN_BBXMIN": 24.591667, "MAX_BBXMIN": 24.591667, "MIN_BBXMAX": 24.916667, "MAX_BBXMAX": 24.916667, "MIN_BBYMIN": 59.333333, "MAX_BBYMIN": 59.333333, "MIN_BBYMAX": 59.525, "MAX_BBYMAX": 59.525, "MEAN_BBXC": 24.746591, "MEAN_BBYC": 59.42709, "COMPARE": 0, "GN_ASCII": "Tallinn", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 394024, "ELEVATION": 0, "GTOPO30": 22, "TIMEZONE": "Europe/Tallinn", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ 24.741211, 59.433903 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Sofia", "DIFFASCII": 0, "NAMEASCII": "Sofia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bulgaria", "SOV_A3": "BGR", "ADM0NAME": "Bulgaria", "ADM0_A3": "BGR", "ADM1NAME": "Grad Sofiya", "ISO_A2": "BG", "LATITUDE": 42.683349, "LONGITUDE": 23.316654, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1185000, "POP_MIN": 874827, "POP_OTHER": 871735, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 727011, "MEGANAME": "Sofia", "LS_NAME": "Sofia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 874827, "MAX_POP20": 874827, "MAX_POP50": 874827, "MAX_POP300": 874827, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 174, "MAX_PERKM": 174, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.208333, "MAX_BBXMIN": 23.208333, "MIN_BBXMAX": 23.45, "MAX_BBXMAX": 23.45, "MIN_BBYMIN": 42.575, "MAX_BBYMIN": 42.575, "MIN_BBYMAX": 42.8, "MAX_BBYMAX": 42.8, "MEAN_BBXC": 23.328319, "MEAN_BBYC": 42.68234, "COMPARE": 0, "GN_ASCII": "Sofia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 42, "GN_POP": 1152556, "ELEVATION": 0, "GTOPO30": 558, "TIMEZONE": "Europe/Sofia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": "Bulgaria", "UN_LAT": 42.7, "UN_LONG": 23.33, "POP1950": 522, "POP1955": 616, "POP1960": 708, "POP1965": 806, "POP1970": 888, "POP1975": 977, "POP1980": 1074, "POP1985": 1181, "POP1990": 1191, "POP1995": 1168, "POP2000": 1128, "POP2005": 1166, "POP2010": 1185, "POP2015": 1212, "POP2020": 1233, "POP2025": 1236, "POP2050": 1236, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ 23.312988, 42.682435 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bucharest", "NAMEPAR": "Bucuresti", "DIFFASCII": 0, "NAMEASCII": "Bucharest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Romania", "SOV_A3": "ROU", "ADM0NAME": "Romania", "ADM0_A3": "ROU", "ADM1NAME": "Bucharest", "ISO_A2": "RO", "LATITUDE": 44.433372, "LONGITUDE": 26.099947, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1942000, "POP_MIN": 1742194, "POP_OTHER": 1636574, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 683506, "MEGANAME": "Bucuresti", "LS_NAME": "Bucharest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1742194, "MAX_POP20": 1742194, "MAX_POP50": 1742194, "MAX_POP300": 1742194, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 357, "MAX_PERKM": 357, "MIN_PERMI": 222, "MAX_PERMI": 222, "MIN_BBXMIN": 25.866667, "MAX_BBXMIN": 25.866667, "MIN_BBXMAX": 26.25, "MAX_BBXMAX": 26.25, "MIN_BBYMIN": 44.316667, "MAX_BBYMIN": 44.316667, "MIN_BBYMAX": 44.641667, "MAX_BBYMAX": 44.641667, "MEAN_BBXC": 26.082182, "MEAN_BBYC": 44.44411, "COMPARE": 0, "GN_ASCII": "Bucuresti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1877155, "ELEVATION": 0, "GTOPO30": 71, "TIMEZONE": "Europe/Bucharest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 422, "UN_ADM0": "Romania", "UN_LAT": 44.43, "UN_LONG": 26.12, "POP1950": 652, "POP1955": 856, "POP1960": 1002, "POP1965": 1154, "POP1970": 1396, "POP1975": 1702, "POP1980": 1865, "POP1985": 1950, "POP1990": 2040, "POP1995": 2018, "POP2000": 1949, "POP2005": 1936, "POP2010": 1942, "POP2015": 1947, "POP2020": 1949, "POP2025": 1949, "POP2050": 1949, "CITYALT": "Bucharest", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.433780 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 46.995241 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Minsk", "DIFFASCII": 0, "NAMEASCII": "Minsk", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Belarus", "SOV_A3": "BLR", "ADM0NAME": "Belarus", "ADM0_A3": "BLR", "ADM1NAME": "Minsk", "ISO_A2": "BY", "LATITUDE": 53.899977, "LONGITUDE": 27.566627, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1577138, "POP_OTHER": 1557919, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 625144, "MEGANAME": "Minsk", "LS_NAME": "Minsk", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1577138, "MAX_POP20": 1577138, "MAX_POP50": 1577138, "MAX_POP300": 1577138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 82, "MAX_AREAMI": 82, "MIN_PERKM": 196, "MAX_PERKM": 196, "MIN_PERMI": 122, "MAX_PERMI": 122, "MIN_BBXMIN": 27.408333, "MAX_BBXMIN": 27.408333, "MIN_BBXMAX": 27.716667, "MAX_BBXMAX": 27.716667, "MIN_BBYMIN": 53.8, "MAX_BBYMIN": 53.8, "MIN_BBYMAX": 53.983333, "MAX_BBYMAX": 53.983333, "MEAN_BBXC": 27.562159, "MEAN_BBYC": 53.893169, "COMPARE": 0, "GN_ASCII": "Minsk", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1742124, "ELEVATION": 0, "GTOPO30": 199, "TIMEZONE": "Europe/Minsk", "GEONAMESNO": "GeoNames match general.", "UN_FID": 4, "UN_ADM0": "Belarus", "UN_LAT": 53.89, "UN_LONG": 27.57, "POP1950": 284, "POP1955": 414, "POP1960": 551, "POP1965": 719, "POP1970": 932, "POP1975": 1120, "POP1980": 1318, "POP1985": 1474, "POP1990": 1607, "POP1995": 1649, "POP2000": 1700, "POP2005": 1775, "POP2010": 1805, "POP2015": 1846, "POP2020": 1879, "POP2025": 1883, "POP2050": 1883, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ 27.575684, 53.904338 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Istanbul", "DIFFASCII": 0, "NAMEASCII": "Istanbul", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Istanbul", "ISO_A2": "TR", "LATITUDE": 41.104996, "LONGITUDE": 29.010002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10061000, "POP_MIN": 9945610, "POP_OTHER": 9651488, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 745044, "MEGANAME": "Istanbul", "LS_NAME": "Istanbul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9945610, "MAX_POP20": 9945243, "MAX_POP50": 10140950, "MAX_POP300": 10140950, "MAX_POP310": 10140950, "MAX_NATSCA": 300, "MIN_AREAKM": 1249, "MAX_AREAKM": 1327, "MIN_AREAMI": 482, "MAX_AREAMI": 512, "MIN_PERKM": 852, "MAX_PERKM": 926, "MIN_PERMI": 529, "MAX_PERMI": 575, "MIN_BBXMIN": 28.2, "MAX_BBXMIN": 28.257268, "MIN_BBXMAX": 29.45, "MAX_BBXMAX": 29.558333, "MIN_BBYMIN": 40.75, "MAX_BBYMIN": 40.75, "MIN_BBYMAX": 41.258333, "MAX_BBYMAX": 41.258333, "MEAN_BBXC": 29.008987, "MEAN_BBYC": 41.004964, "COMPARE": 0, "GN_ASCII": "Istanbul", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 34, "GN_POP": 11174257, "ELEVATION": 0, "GTOPO30": 28, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 504, "UN_ADM0": "Turkey", "UN_LAT": 41.06, "UN_LONG": 29, "POP1950": 967, "POP1955": 1249, "POP1960": 1453, "POP1965": 2001, "POP1970": 2772, "POP1975": 3600, "POP1980": 4397, "POP1985": 5407, "POP1990": 6552, "POP1995": 7665, "POP2000": 8744, "POP2005": 9709, "POP2010": 10061, "POP2015": 10530, "POP2020": 11177, "POP2025": 11695, "POP2050": 12102, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.095912 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Sofia", "DIFFASCII": 0, "NAMEASCII": "Sofia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bulgaria", "SOV_A3": "BGR", "ADM0NAME": "Bulgaria", "ADM0_A3": "BGR", "ADM1NAME": "Grad Sofiya", "ISO_A2": "BG", "LATITUDE": 42.683349, "LONGITUDE": 23.316654, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1185000, "POP_MIN": 874827, "POP_OTHER": 871735, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 727011, "MEGANAME": "Sofia", "LS_NAME": "Sofia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 874827, "MAX_POP20": 874827, "MAX_POP50": 874827, "MAX_POP300": 874827, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 174, "MAX_PERKM": 174, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.208333, "MAX_BBXMIN": 23.208333, "MIN_BBXMAX": 23.45, "MAX_BBXMAX": 23.45, "MIN_BBYMIN": 42.575, "MAX_BBYMIN": 42.575, "MIN_BBYMAX": 42.8, "MAX_BBYMAX": 42.8, "MEAN_BBXC": 23.328319, "MEAN_BBYC": 42.68234, "COMPARE": 0, "GN_ASCII": "Sofia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 42, "GN_POP": 1152556, "ELEVATION": 0, "GTOPO30": 558, "TIMEZONE": "Europe/Sofia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": "Bulgaria", "UN_LAT": 42.7, "UN_LONG": 23.33, "POP1950": 522, "POP1955": 616, "POP1960": 708, "POP1965": 806, "POP1970": 888, "POP1975": 977, "POP1980": 1074, "POP1985": 1181, "POP1990": 1191, "POP1995": 1168, "POP2000": 1128, "POP2005": 1166, "POP2010": 1185, "POP2015": 1212, "POP2020": 1233, "POP2025": 1236, "POP2050": 1236, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ 23.312988, 42.682435 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ 44.802246, 41.722131 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bucharest", "NAMEPAR": "Bucuresti", "DIFFASCII": 0, "NAMEASCII": "Bucharest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Romania", "SOV_A3": "ROU", "ADM0NAME": "Romania", "ADM0_A3": "ROU", "ADM1NAME": "Bucharest", "ISO_A2": "RO", "LATITUDE": 44.433372, "LONGITUDE": 26.099947, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1942000, "POP_MIN": 1742194, "POP_OTHER": 1636574, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 683506, "MEGANAME": "Bucuresti", "LS_NAME": "Bucharest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1742194, "MAX_POP20": 1742194, "MAX_POP50": 1742194, "MAX_POP300": 1742194, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 357, "MAX_PERKM": 357, "MIN_PERMI": 222, "MAX_PERMI": 222, "MIN_BBXMIN": 25.866667, "MAX_BBXMIN": 25.866667, "MIN_BBXMAX": 26.25, "MAX_BBXMAX": 26.25, "MIN_BBYMIN": 44.316667, "MAX_BBYMIN": 44.316667, "MIN_BBYMAX": 44.641667, "MAX_BBYMAX": 44.641667, "MEAN_BBXC": 26.082182, "MEAN_BBYC": 44.44411, "COMPARE": 0, "GN_ASCII": "Bucuresti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1877155, "ELEVATION": 0, "GTOPO30": 71, "TIMEZONE": "Europe/Bucharest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 422, "UN_ADM0": "Romania", "UN_LAT": 44.43, "UN_LONG": 26.12, "POP1950": 652, "POP1955": 856, "POP1960": 1002, "POP1965": 1154, "POP1970": 1396, "POP1975": 1702, "POP1980": 1865, "POP1985": 1950, "POP1990": 2040, "POP1995": 2018, "POP2000": 1949, "POP2005": 1936, "POP2010": 1942, "POP2015": 1947, "POP2020": 1949, "POP2025": 1949, "POP2050": 1949, "CITYALT": "Bucharest", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.433780 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Algiers", "NAMEALT": "El Djazaïr", "DIFFASCII": 0, "NAMEASCII": "Algiers", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Algeria", "SOV_A3": "DZA", "ADM0NAME": "Algeria", "ADM0_A3": "DZA", "ADM1NAME": "Alger", "ISO_A2": "DZ", "LATITUDE": 36.763065, "LONGITUDE": 3.050553, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3354000, "POP_MIN": 1977663, "POP_OTHER": 3332619, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2507480, "MEGANAME": "El Djazaïr", "LS_NAME": "Algiers", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3368320, "MAX_POP20": 3698473, "MAX_POP50": 4203253, "MAX_POP300": 4203253, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 886, "MAX_AREAKM": 1275, "MIN_AREAMI": 342, "MAX_AREAMI": 492, "MIN_PERKM": 798, "MAX_PERKM": 1192, "MIN_PERMI": 496, "MAX_PERMI": 741, "MIN_BBXMIN": 2.641667, "MAX_BBXMIN": 2.808333, "MIN_BBXMAX": 3.548211, "MAX_BBXMAX": 3.741667, "MIN_BBYMIN": 36.45, "MAX_BBYMIN": 36.508333, "MIN_BBYMAX": 36.816667, "MAX_BBYMAX": 36.816667, "MEAN_BBXC": 3.101671, "MEAN_BBYC": 36.673641, "COMPARE": 0, "GN_ASCII": "Algiers", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1977663, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Algiers", "GEONAMESNO": "GeoNames match general.", "UN_FID": 6, "UN_ADM0": "Algeria", "UN_LAT": 36.78, "UN_LONG": 3.05, "POP1950": 516, "POP1955": 623, "POP1960": 872, "POP1965": 1049, "POP1970": 1254, "POP1975": 1499, "POP1980": 1621, "POP1985": 1672, "POP1990": 1908, "POP1995": 2295, "POP2000": 2754, "POP2005": 3199, "POP2010": 3354, "POP2015": 3574, "POP2020": 3922, "POP2025": 4235, "POP2050": 4499, "CITYALT": "Algiers", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ 3.054199, 36.756490 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 46.995241 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tunis", "DIFFASCII": 0, "NAMEASCII": "Tunis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tunisia", "SOV_A3": "TUN", "ADM0NAME": "Tunisia", "ADM0_A3": "TUN", "ADM1NAME": "Tunis", "ISO_A2": "TN", "LATITUDE": 36.802778, "LONGITUDE": 10.179678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2412500, "POP_MIN": 728453, "POP_OTHER": 1675117, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2464470, "LS_NAME": "Tunis", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1831176, "MAX_POP20": 1831176, "MAX_POP50": 1838972, "MAX_POP300": 1838972, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 480, "MAX_AREAKM": 502, "MIN_AREAMI": 185, "MAX_AREAMI": 194, "MIN_PERKM": 485, "MAX_PERKM": 524, "MIN_PERMI": 302, "MAX_PERMI": 326, "MIN_BBXMIN": 9.95, "MAX_BBXMIN": 9.95, "MIN_BBXMAX": 10.497585, "MAX_BBXMAX": 10.575, "MIN_BBYMIN": 36.633333, "MAX_BBYMIN": 36.633333, "MIN_BBYMAX": 36.966667, "MAX_BBYMAX": 36.966667, "MEAN_BBXC": 10.202041, "MEAN_BBYC": 36.802974, "COMPARE": 0, "GN_ASCII": "Tunis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 38, "GN_POP": 693210, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Africa/Tunis", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.791691 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Istanbul", "DIFFASCII": 0, "NAMEASCII": "Istanbul", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Istanbul", "ISO_A2": "TR", "LATITUDE": 41.104996, "LONGITUDE": 29.010002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10061000, "POP_MIN": 9945610, "POP_OTHER": 9651488, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 745044, "MEGANAME": "Istanbul", "LS_NAME": "Istanbul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9945610, "MAX_POP20": 9945243, "MAX_POP50": 10140950, "MAX_POP300": 10140950, "MAX_POP310": 10140950, "MAX_NATSCA": 300, "MIN_AREAKM": 1249, "MAX_AREAKM": 1327, "MIN_AREAMI": 482, "MAX_AREAMI": 512, "MIN_PERKM": 852, "MAX_PERKM": 926, "MIN_PERMI": 529, "MAX_PERMI": 575, "MIN_BBXMIN": 28.2, "MAX_BBXMIN": 28.257268, "MIN_BBXMAX": 29.45, "MAX_BBXMAX": 29.558333, "MIN_BBYMIN": 40.75, "MAX_BBYMIN": 40.75, "MIN_BBYMAX": 41.258333, "MAX_BBYMAX": 41.258333, "MEAN_BBXC": 29.008987, "MEAN_BBYC": 41.004964, "COMPARE": 0, "GN_ASCII": "Istanbul", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 34, "GN_POP": 11174257, "ELEVATION": 0, "GTOPO30": 28, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 504, "UN_ADM0": "Turkey", "UN_LAT": 41.06, "UN_LONG": 29, "POP1950": 967, "POP1955": 1249, "POP1960": 1453, "POP1965": 2001, "POP1970": 2772, "POP1975": 3600, "POP1980": 4397, "POP1985": 5407, "POP1990": 6552, "POP1995": 7665, "POP2000": 8744, "POP2005": 9709, "POP2010": 10061, "POP2015": 10530, "POP2020": 11177, "POP2025": 11695, "POP2050": 12102, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.095912 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.879587 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.889050 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ 44.802246, 41.722131 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.517838 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Algiers", "NAMEALT": "El Djazaïr", "DIFFASCII": 0, "NAMEASCII": "Algiers", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Algeria", "SOV_A3": "DZA", "ADM0NAME": "Algeria", "ADM0_A3": "DZA", "ADM1NAME": "Alger", "ISO_A2": "DZ", "LATITUDE": 36.763065, "LONGITUDE": 3.050553, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3354000, "POP_MIN": 1977663, "POP_OTHER": 3332619, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2507480, "MEGANAME": "El Djazaïr", "LS_NAME": "Algiers", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3368320, "MAX_POP20": 3698473, "MAX_POP50": 4203253, "MAX_POP300": 4203253, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 886, "MAX_AREAKM": 1275, "MIN_AREAMI": 342, "MAX_AREAMI": 492, "MIN_PERKM": 798, "MAX_PERKM": 1192, "MIN_PERMI": 496, "MAX_PERMI": 741, "MIN_BBXMIN": 2.641667, "MAX_BBXMIN": 2.808333, "MIN_BBXMAX": 3.548211, "MAX_BBXMAX": 3.741667, "MIN_BBYMIN": 36.45, "MAX_BBYMIN": 36.508333, "MIN_BBYMAX": 36.816667, "MAX_BBYMAX": 36.816667, "MEAN_BBXC": 3.101671, "MEAN_BBYC": 36.673641, "COMPARE": 0, "GN_ASCII": "Algiers", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1977663, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Algiers", "GEONAMESNO": "GeoNames match general.", "UN_FID": 6, "UN_ADM0": "Algeria", "UN_LAT": 36.78, "UN_LONG": 3.05, "POP1950": 516, "POP1955": 623, "POP1960": 872, "POP1965": 1049, "POP1970": 1254, "POP1975": 1499, "POP1980": 1621, "POP1985": 1672, "POP1990": 1908, "POP1995": 2295, "POP2000": 2754, "POP2005": 3199, "POP2010": 3354, "POP2015": 3574, "POP2020": 3922, "POP2025": 4235, "POP2050": 4499, "CITYALT": "Algiers", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ 3.054199, 36.756490 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lome", "NAMEALT": "Lomé", "DIFFASCII": 0, "NAMEASCII": "Lome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Togo", "SOV_A3": "TGO", "ADM0NAME": "Togo", "ADM0_A3": "TGO", "ADM1NAME": "Maritime", "ISO_A2": "TG", "LATITUDE": 6.131937, "LONGITUDE": 1.222757, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1452000, "POP_MIN": 749700, "POP_OTHER": 1256715, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2365267, "MEGANAME": "Lomé", "LS_NAME": "Lome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 954448, "MAX_POP20": 953569, "MAX_POP50": 954013, "MAX_POP300": 953569, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 343, "MAX_AREAKM": 364, "MIN_AREAMI": 133, "MAX_AREAMI": 140, "MIN_PERKM": 353, "MAX_PERKM": 360, "MIN_PERMI": 219, "MAX_PERMI": 224, "MIN_BBXMIN": 0.95, "MAX_BBXMIN": 0.95, "MIN_BBXMAX": 1.483333, "MAX_BBXMAX": 1.483333, "MIN_BBYMIN": 6.025, "MAX_BBYMIN": 6.025, "MIN_BBYMAX": 6.283333, "MAX_BBYMAX": 6.283333, "MEAN_BBXC": 1.190359, "MEAN_BBYC": 6.153924, "COMPARE": 0, "GN_ASCII": "Lome", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 24, "GN_POP": 749700, "ELEVATION": 0, "GTOPO30": 64, "TIMEZONE": "Africa/Lome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 497, "UN_ADM0": "Togo", "UN_LAT": 6.1, "UN_LONG": 1.2, "POP1950": 33, "POP1955": 56, "POP1960": 95, "POP1965": 138, "POP1970": 192, "POP1975": 257, "POP1980": 344, "POP1985": 466, "POP1990": 619, "POP1995": 796, "POP2000": 1023, "POP2005": 1315, "POP2010": 1452, "POP2015": 1669, "POP2020": 2038, "POP2025": 2410, "POP2050": 2791, "CITYALT": "Lome", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.118708 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tunis", "DIFFASCII": 0, "NAMEASCII": "Tunis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tunisia", "SOV_A3": "TUN", "ADM0NAME": "Tunisia", "ADM0_A3": "TUN", "ADM1NAME": "Tunis", "ISO_A2": "TN", "LATITUDE": 36.802778, "LONGITUDE": 10.179678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2412500, "POP_MIN": 728453, "POP_OTHER": 1675117, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2464470, "LS_NAME": "Tunis", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1831176, "MAX_POP20": 1831176, "MAX_POP50": 1838972, "MAX_POP300": 1838972, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 480, "MAX_AREAKM": 502, "MIN_AREAMI": 185, "MAX_AREAMI": 194, "MIN_PERKM": 485, "MAX_PERKM": 524, "MIN_PERMI": 302, "MAX_PERMI": 326, "MIN_BBXMIN": 9.95, "MAX_BBXMIN": 9.95, "MIN_BBXMAX": 10.497585, "MAX_BBXMAX": 10.575, "MIN_BBYMIN": 36.633333, "MAX_BBYMIN": 36.633333, "MIN_BBYMAX": 36.966667, "MAX_BBYMAX": 36.966667, "MEAN_BBXC": 10.202041, "MEAN_BBYC": 36.802974, "COMPARE": 0, "GN_ASCII": "Tunis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 38, "GN_POP": 693210, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Africa/Tunis", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.791691 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouémé", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ 2.526855, 6.402648 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.879587 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Porto-Novo", "DIFFASCII": 0, "NAMEASCII": "Porto-Novo", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouémé", "ISO_A2": "BJ", "LATITUDE": 6.483311, "LONGITUDE": 2.616626, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 300000, "POP_MIN": 234168, "POP_OTHER": 806945, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2392087, "LS_NAME": "Porto-Novo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 517453, "MAX_POP20": 457770, "MAX_POP50": 457770, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 278, "MAX_AREAKM": 319, "MIN_AREAMI": 107, "MAX_AREAMI": 123, "MIN_PERKM": 251, "MAX_PERKM": 312, "MIN_PERMI": 156, "MAX_PERMI": 194, "MIN_BBXMIN": 2.558333, "MAX_BBXMIN": 2.558333, "MIN_BBXMAX": 2.883333, "MAX_BBXMAX": 2.883333, "MIN_BBYMIN": 6.45, "MAX_BBYMIN": 6.45, "MIN_BBYMAX": 6.65, "MAX_BBYMAX": 6.733333, "MEAN_BBXC": 2.708025, "MEAN_BBYC": 6.520662, "COMPARE": 0, "GN_ASCII": "Porto-Novo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 234168, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 2.614746, 6.468151 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.889050 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lagos", "DIFFASCII": 0, "NAMEASCII": "Lagos", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Former capital", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Lagos", "ISO_A2": "NG", "LATITUDE": 6.443262, "LONGITUDE": 3.391531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 9466000, "POP_MIN": 1536, "POP_OTHER": 6567892, "RANK_MAX": 13, "RANK_MIN": 3, "GEONAMEID": 735497, "MEGANAME": "Lagos", "LS_NAME": "Lagos", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7147910, "MAX_POP20": 7105663, "MAX_POP50": 7411389, "MAX_POP300": 7453740, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1035, "MAX_AREAKM": 1332, "MIN_AREAMI": 400, "MAX_AREAMI": 514, "MIN_PERKM": 638, "MAX_PERKM": 882, "MIN_PERMI": 397, "MAX_PERMI": 548, "MIN_BBXMIN": 2.925412, "MAX_BBXMIN": 2.996332, "MIN_BBXMAX": 3.475, "MAX_BBXMAX": 3.475, "MIN_BBYMIN": 6.4, "MAX_BBYMIN": 6.4, "MIN_BBYMAX": 6.80087, "MAX_BBYMAX": 6.966667, "MEAN_BBXC": 3.231132, "MEAN_BBYC": 6.585848, "COMPARE": 0, "GN_ASCII": "Lagos", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1536, "ELEVATION": 0, "GTOPO30": 89, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 392, "UN_ADM0": "Nigeria", "UN_LAT": 6.45, "UN_LONG": 3.3, "POP1950": 305, "POP1955": 468, "POP1960": 762, "POP1965": 1135, "POP1970": 1414, "POP1975": 1890, "POP1980": 2572, "POP1985": 3500, "POP1990": 4764, "POP1995": 5966, "POP2000": 7233, "POP2005": 8767, "POP2010": 9466, "POP2015": 10572, "POP2020": 12403, "POP2025": 14134, "POP2050": 15796, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ 3.405762, 6.446318 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 13.516706, "numnum:min:LATITUDE": 6.131937, "numnum:sum:LATITUDE": 19.648643, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 2.116656, "numnum:min:LONGITUDE": 1.222757, "numnum:sum:LONGITUDE": 3.339413, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1452000, "numnum:min:POP_MAX": 915000, "numnum:sum:POP_MAX": 2367000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 749700, "numnum:min:POP_MIN": 742791, "numnum:sum:POP_MIN": 1492491, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1256715, "numnum:min:POP_OTHER": 715325, "numnum:sum:POP_OTHER": 1972040, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2440485, "numnum:min:GEONAMEID": 2365267, "numnum:sum:GEONAMEID": 4805752, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 954448, "numnum:min:MAX_POP10": 742791, "numnum:sum:MAX_POP10": 1697239, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 953569, "numnum:min:MAX_POP20": 742791, "numnum:sum:MAX_POP20": 1696360, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 954013, "numnum:min:MAX_POP50": 742791, "numnum:sum:MAX_POP50": 1696804, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 953569, "numnum:min:MAX_POP300": 742791, "numnum:sum:MAX_POP300": 1696360, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 343, "numnum:min:MIN_AREAKM": 122, "numnum:sum:MIN_AREAKM": 465, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 364, "numnum:min:MAX_AREAKM": 122, "numnum:sum:MAX_AREAKM": 486, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 133, "numnum:min:MIN_AREAMI": 47, "numnum:sum:MIN_AREAMI": 180, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 140, "numnum:min:MAX_AREAMI": 47, "numnum:sum:MAX_AREAMI": 187, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 353, "numnum:min:MIN_PERKM": 102, "numnum:sum:MIN_PERKM": 455, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 360, "numnum:min:MAX_PERKM": 102, "numnum:sum:MAX_PERKM": 462, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 219, "numnum:min:MIN_PERMI": 64, "numnum:sum:MIN_PERMI": 283, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 224, "numnum:min:MAX_PERMI": 64, "numnum:sum:MAX_PERMI": 288, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 2.033333, "numnum:min:MIN_BBXMIN": 0.95, "numnum:sum:MIN_BBXMIN": 2.983333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 2.033333, "numnum:min:MAX_BBXMIN": 0.95, "numnum:sum:MAX_BBXMIN": 2.983333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 2.216667, "numnum:min:MIN_BBXMAX": 1.483333, "numnum:sum:MIN_BBXMAX": 3.7, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 2.216667, "numnum:min:MAX_BBXMAX": 1.483333, "numnum:sum:MAX_BBXMAX": 3.7, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 13.466667, "numnum:min:MIN_BBYMIN": 6.025, "numnum:sum:MIN_BBYMIN": 19.491667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 13.466667, "numnum:min:MAX_BBYMIN": 6.025, "numnum:sum:MAX_BBYMIN": 19.491667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 13.6, "numnum:min:MIN_BBYMAX": 6.283333, "numnum:sum:MIN_BBYMAX": 19.883333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 13.6, "numnum:min:MAX_BBYMAX": 6.283333, "numnum:sum:MAX_BBYMAX": 19.883333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 2.125595, "numnum:min:MEAN_BBXC": 1.190359, "numnum:sum:MEAN_BBXC": 3.315954, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 13.522591, "numnum:min:MEAN_BBYC": 6.153924, "numnum:sum:MEAN_BBYC": 19.676515000000003, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 24, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 32, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 774235, "numnum:min:GN_POP": 749700, "numnum:sum:GN_POP": 1523935, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 203, "numnum:min:GTOPO30": 64, "numnum:sum:GTOPO30": 267, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 497, "numnum:min:UN_FID": 385, "numnum:sum:UN_FID": 882, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 13.51, "numnum:min:UN_LAT": 6.1, "numnum:sum:UN_LAT": 19.61, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 2.12, "numnum:min:UN_LONG": 1.2, "numnum:sum:UN_LONG": 3.3200000000000005, "numnum:count:POP1950": 2, "numnum:max:POP1950": 33, "numnum:min:POP1950": 24, "numnum:sum:POP1950": 57, "numnum:count:POP1955": 2, "numnum:max:POP1955": 56, "numnum:min:POP1955": 37, "numnum:sum:POP1955": 93, "numnum:count:POP1960": 2, "numnum:max:POP1960": 95, "numnum:min:POP1960": 58, "numnum:sum:POP1960": 153, "numnum:count:POP1965": 2, "numnum:max:POP1965": 138, "numnum:min:POP1965": 85, "numnum:sum:POP1965": 223, "numnum:count:POP1970": 2, "numnum:max:POP1970": 192, "numnum:min:POP1970": 129, "numnum:sum:POP1970": 321, "numnum:count:POP1975": 2, "numnum:max:POP1975": 257, "numnum:min:POP1975": 198, "numnum:sum:POP1975": 455, "numnum:count:POP1980": 2, "numnum:max:POP1980": 344, "numnum:min:POP1980": 274, "numnum:sum:POP1980": 618, "numnum:count:POP1985": 2, "numnum:max:POP1985": 466, "numnum:min:POP1985": 344, "numnum:sum:POP1985": 810, "numnum:count:POP1990": 2, "numnum:max:POP1990": 619, "numnum:min:POP1990": 432, "numnum:sum:POP1990": 1051, "numnum:count:POP1995": 2, "numnum:max:POP1995": 796, "numnum:min:POP1995": 542, "numnum:sum:POP1995": 1338, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1023, "numnum:min:POP2000": 680, "numnum:sum:POP2000": 1703, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1315, "numnum:min:POP2005": 846, "numnum:sum:POP2005": 2161, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1452, "numnum:min:POP2010": 915, "numnum:sum:POP2010": 2367, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1669, "numnum:min:POP2015": 1027, "numnum:sum:POP2015": 2696, "numnum:count:POP2020": 2, "numnum:max:POP2020": 2038, "numnum:min:POP2020": 1258, "numnum:sum:POP2020": 3296, "numnum:count:POP2025": 2, "numnum:max:POP2025": 2410, "numnum:min:POP2025": 1580, "numnum:sum:POP2025": 3990, "numnum:count:POP2050": 2, "numnum:max:POP2050": 2791, "numnum:min:POP2050": 2028, "numnum:sum:POP2050": 4819, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.517838 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouémé", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ 2.526855, 6.402648 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Porto-Novo", "DIFFASCII": 0, "NAMEASCII": "Porto-Novo", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouémé", "ISO_A2": "BJ", "LATITUDE": 6.483311, "LONGITUDE": 2.616626, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 300000, "POP_MIN": 234168, "POP_OTHER": 806945, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2392087, "LS_NAME": "Porto-Novo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 517453, "MAX_POP20": 457770, "MAX_POP50": 457770, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 278, "MAX_AREAKM": 319, "MIN_AREAMI": 107, "MAX_AREAMI": 123, "MIN_PERKM": 251, "MAX_PERKM": 312, "MIN_PERMI": 156, "MAX_PERMI": 194, "MIN_BBXMIN": 2.558333, "MAX_BBXMIN": 2.558333, "MIN_BBXMAX": 2.883333, "MAX_BBXMAX": 2.883333, "MIN_BBYMIN": 6.45, "MAX_BBYMIN": 6.45, "MIN_BBYMAX": 6.65, "MAX_BBYMAX": 6.733333, "MEAN_BBXC": 2.708025, "MEAN_BBYC": 6.520662, "COMPARE": 0, "GN_ASCII": "Porto-Novo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 234168, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 2.614746, 6.468151 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lagos", "DIFFASCII": 0, "NAMEASCII": "Lagos", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Former capital", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Lagos", "ISO_A2": "NG", "LATITUDE": 6.443262, "LONGITUDE": 3.391531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 9466000, "POP_MIN": 1536, "POP_OTHER": 6567892, "RANK_MAX": 13, "RANK_MIN": 3, "GEONAMEID": 735497, "MEGANAME": "Lagos", "LS_NAME": "Lagos", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7147910, "MAX_POP20": 7105663, "MAX_POP50": 7411389, "MAX_POP300": 7453740, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1035, "MAX_AREAKM": 1332, "MIN_AREAMI": 400, "MAX_AREAMI": 514, "MIN_PERKM": 638, "MAX_PERKM": 882, "MIN_PERMI": 397, "MAX_PERMI": 548, "MIN_BBXMIN": 2.925412, "MAX_BBXMIN": 2.996332, "MIN_BBXMAX": 3.475, "MAX_BBXMAX": 3.475, "MIN_BBYMIN": 6.4, "MAX_BBYMIN": 6.4, "MIN_BBYMAX": 6.80087, "MAX_BBYMAX": 6.966667, "MEAN_BBXC": 3.231132, "MEAN_BBYC": 6.585848, "COMPARE": 0, "GN_ASCII": "Lagos", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1536, "ELEVATION": 0, "GTOPO30": 89, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 392, "UN_ADM0": "Nigeria", "UN_LAT": 6.45, "UN_LONG": 3.3, "POP1950": 305, "POP1955": 468, "POP1960": 762, "POP1965": 1135, "POP1970": 1414, "POP1975": 1890, "POP1980": 2572, "POP1985": 3500, "POP1990": 4764, "POP1995": 5966, "POP2000": 7233, "POP2005": 8767, "POP2010": 9466, "POP2015": 10572, "POP2020": 12403, "POP2025": 14134, "POP2050": 15796, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ 3.405762, 6.446318 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Libreville", "DIFFASCII": 0, "NAMEASCII": "Libreville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gabon", "SOV_A3": "GAB", "ADM0NAME": "Gabon", "ADM0_A3": "GAB", "ADM1NAME": "Estuaire", "ISO_A2": "GA", "LATITUDE": 0.385389, "LONGITUDE": 9.457965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 578156, "POP_MIN": 483355, "POP_OTHER": 483522, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 2399697, "LS_NAME": "Libreville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 483355, "MAX_POP20": 483355, "MAX_POP50": 483355, "MAX_POP300": 483355, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 108, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 9.4, "MAX_BBXMIN": 9.4, "MIN_BBXMAX": 9.525, "MAX_BBXMAX": 9.525, "MIN_BBYMIN": 0.283333, "MAX_BBYMIN": 0.283333, "MIN_BBYMAX": 0.483333, "MAX_BBYMAX": 0.483333, "MEAN_BBXC": 9.47328, "MEAN_BBYC": 0.395238, "COMPARE": 0, "GN_ASCII": "Libreville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 578156, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Libreville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ 9.470215, 0.373533 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ndjamena", "NAMEALT": "N'Djaména", "DIFFASCII": 0, "NAMEASCII": "Ndjamena", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chad", "SOV_A3": "TCD", "ADM0NAME": "Chad", "ADM0_A3": "TCD", "ADM1NAME": "Hadjer-Lamis", "ISO_A2": "TD", "LATITUDE": 12.113097, "LONGITUDE": 15.049148, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 989000, "POP_MIN": 681387, "POP_OTHER": 686347, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2427123, "MEGANAME": "N'Djaména", "LS_NAME": "Ndjamena", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 681387, "MAX_POP20": 681387, "MAX_POP50": 681387, "MAX_POP300": 681387, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 79, "MAX_AREAKM": 79, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": 15.025, "MAX_BBXMIN": 15.025, "MIN_BBXMAX": 15.133333, "MAX_BBXMAX": 15.133333, "MIN_BBYMIN": 12.066667, "MAX_BBYMIN": 12.066667, "MIN_BBYMAX": 12.183333, "MAX_BBYMAX": 12.183333, "MEAN_BBXC": 15.079167, "MEAN_BBYC": 12.120479, "COMPARE": 0, "GN_ASCII": "N'Djamena", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 721081, "ELEVATION": 0, "GTOPO30": 290, "TIMEZONE": "Africa/Ndjamena", "GEONAMESNO": "GeoNames match general.", "UN_FID": 16, "UN_ADM0": "Chad", "UN_LAT": 12.1, "UN_LONG": 15.24, "POP1950": 22, "POP1955": 40, "POP1960": 71, "POP1965": 109, "POP1970": 155, "POP1975": 231, "POP1980": 324, "POP1985": 393, "POP1990": 477, "POP1995": 579, "POP2000": 711, "POP2005": 902, "POP2010": 989, "POP2015": 1127, "POP2020": 1405, "POP2025": 1753, "POP2050": 2172, "CITYALT": "Ndjamena", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.103781 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Yaounde", "NAMEALT": "Yaoundé", "DIFFASCII": 0, "NAMEASCII": "Yaounde", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cameroon", "SOV_A3": "CMR", "ADM0NAME": "Cameroon", "ADM0_A3": "CMR", "ADM1NAME": "Centre", "ISO_A2": "CM", "LATITUDE": 3.866701, "LONGITUDE": 11.516651, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1611000, "POP_MIN": 1060587, "POP_OTHER": 1060747, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2220957, "MEGANAME": "Yaoundé", "LS_NAME": "Yaounde", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1060587, "MAX_POP20": 1060587, "MAX_POP50": 1060587, "MAX_POP300": 1060587, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 197, "MAX_AREAKM": 197, "MIN_AREAMI": 76, "MAX_AREAMI": 76, "MIN_PERKM": 116, "MAX_PERKM": 116, "MIN_PERMI": 72, "MAX_PERMI": 72, "MIN_BBXMIN": 11.433333, "MAX_BBXMIN": 11.433333, "MIN_BBXMAX": 11.6, "MAX_BBXMAX": 11.6, "MIN_BBYMIN": 3.775, "MAX_BBYMIN": 3.775, "MIN_BBYMAX": 3.983333, "MAX_BBYMAX": 3.983333, "MEAN_BBXC": 11.518344, "MEAN_BBYC": 3.865639, "COMPARE": 0, "GN_ASCII": "Yaounde", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1299369, "ELEVATION": 0, "GTOPO30": 733, "TIMEZONE": "Africa/Douala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 9, "UN_ADM0": "Cameroon", "UN_LAT": 3.86, "UN_LONG": 11.51, "POP1950": 32, "POP1955": 49, "POP1960": 75, "POP1965": 112, "POP1970": 183, "POP1975": 292, "POP1980": 415, "POP1985": 578, "POP1990": 754, "POP1995": 948, "POP2000": 1192, "POP2005": 1489, "POP2010": 1611, "POP2015": 1787, "POP2020": 2058, "POP2025": 2312, "POP2050": 2549, "CITYALT": "Yaounde", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Libreville", "DIFFASCII": 0, "NAMEASCII": "Libreville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gabon", "SOV_A3": "GAB", "ADM0NAME": "Gabon", "ADM0_A3": "GAB", "ADM1NAME": "Estuaire", "ISO_A2": "GA", "LATITUDE": 0.385389, "LONGITUDE": 9.457965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 578156, "POP_MIN": 483355, "POP_OTHER": 483522, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 2399697, "LS_NAME": "Libreville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 483355, "MAX_POP20": 483355, "MAX_POP50": 483355, "MAX_POP300": 483355, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 108, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 9.4, "MAX_BBXMIN": 9.4, "MIN_BBXMAX": 9.525, "MAX_BBXMAX": 9.525, "MIN_BBYMIN": 0.283333, "MAX_BBYMIN": 0.283333, "MIN_BBYMAX": 0.483333, "MAX_BBYMAX": 0.483333, "MEAN_BBXC": 9.47328, "MEAN_BBYC": 0.395238, "COMPARE": 0, "GN_ASCII": "Libreville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 578156, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Libreville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ 9.470215, 0.373533 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athínai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athínai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ndjamena", "NAMEALT": "N'Djaména", "DIFFASCII": 0, "NAMEASCII": "Ndjamena", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chad", "SOV_A3": "TCD", "ADM0NAME": "Chad", "ADM0_A3": "TCD", "ADM1NAME": "Hadjer-Lamis", "ISO_A2": "TD", "LATITUDE": 12.113097, "LONGITUDE": 15.049148, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 989000, "POP_MIN": 681387, "POP_OTHER": 686347, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2427123, "MEGANAME": "N'Djaména", "LS_NAME": "Ndjamena", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 681387, "MAX_POP20": 681387, "MAX_POP50": 681387, "MAX_POP300": 681387, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 79, "MAX_AREAKM": 79, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": 15.025, "MAX_BBXMIN": 15.025, "MIN_BBXMAX": 15.133333, "MAX_BBXMAX": 15.133333, "MIN_BBYMIN": 12.066667, "MAX_BBYMIN": 12.066667, "MIN_BBYMAX": 12.183333, "MAX_BBYMAX": 12.183333, "MEAN_BBXC": 15.079167, "MEAN_BBYC": 12.120479, "COMPARE": 0, "GN_ASCII": "N'Djamena", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 721081, "ELEVATION": 0, "GTOPO30": 290, "TIMEZONE": "Africa/Ndjamena", "GEONAMESNO": "GeoNames match general.", "UN_FID": 16, "UN_ADM0": "Chad", "UN_LAT": 12.1, "UN_LONG": 15.24, "POP1950": 22, "POP1955": 40, "POP1960": 71, "POP1965": 109, "POP1970": 155, "POP1975": 231, "POP1980": 324, "POP1985": 393, "POP1990": 477, "POP1995": 579, "POP2000": 711, "POP2005": 902, "POP2010": 989, "POP2015": 1127, "POP2020": 1405, "POP2025": 1753, "POP2050": 2172, "CITYALT": "Ndjamena", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.103781 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Ankara", "DIFFASCII": 0, "NAMEASCII": "Ankara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Ankara", "ISO_A2": "TR", "LATITUDE": 39.927239, "LONGITUDE": 32.864392, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716000, "POP_MIN": 3307379, "POP_OTHER": 3267576, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 323786, "MEGANAME": "Ankara", "LS_NAME": "Ankara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3307379, "MAX_POP20": 3306823, "MAX_POP50": 3306823, "MAX_POP300": 3306823, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 531, "MAX_AREAKM": 534, "MIN_AREAMI": 205, "MAX_AREAMI": 206, "MIN_PERKM": 355, "MAX_PERKM": 365, "MIN_PERMI": 221, "MAX_PERMI": 227, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.425, "MIN_BBXMAX": 33.008333, "MAX_BBXMAX": 33.008333, "MIN_BBYMIN": 39.841667, "MAX_BBYMIN": 39.841667, "MIN_BBYMAX": 40.116667, "MAX_BBYMAX": 40.116667, "MEAN_BBXC": 32.753878, "MEAN_BBYC": 39.957843, "COMPARE": 0, "GN_ASCII": "Ankara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 68, "GN_POP": 3517182, "ELEVATION": 850, "GTOPO30": 889, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 500, "UN_ADM0": "Turkey", "UN_LAT": 39.92, "UN_LONG": 32.85, "POP1950": 281, "POP1955": 439, "POP1960": 635, "POP1965": 954, "POP1970": 1341, "POP1975": 1709, "POP1980": 1891, "POP1985": 2213, "POP1990": 2561, "POP1995": 2842, "POP2000": 3179, "POP2005": 3572, "POP2010": 3716, "POP2015": 3908, "POP2020": 4178, "POP2025": 4403, "POP2050": 4589, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ 32.871094, 39.926588 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Yaounde", "NAMEALT": "Yaoundé", "DIFFASCII": 0, "NAMEASCII": "Yaounde", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cameroon", "SOV_A3": "CMR", "ADM0NAME": "Cameroon", "ADM0_A3": "CMR", "ADM1NAME": "Centre", "ISO_A2": "CM", "LATITUDE": 3.866701, "LONGITUDE": 11.516651, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1611000, "POP_MIN": 1060587, "POP_OTHER": 1060747, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2220957, "MEGANAME": "Yaoundé", "LS_NAME": "Yaounde", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1060587, "MAX_POP20": 1060587, "MAX_POP50": 1060587, "MAX_POP300": 1060587, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 197, "MAX_AREAKM": 197, "MIN_AREAMI": 76, "MAX_AREAMI": 76, "MIN_PERKM": 116, "MAX_PERKM": 116, "MIN_PERMI": 72, "MAX_PERMI": 72, "MIN_BBXMIN": 11.433333, "MAX_BBXMIN": 11.433333, "MIN_BBXMAX": 11.6, "MAX_BBXMAX": 11.6, "MIN_BBYMIN": 3.775, "MAX_BBYMIN": 3.775, "MIN_BBYMAX": 3.983333, "MAX_BBYMAX": 3.983333, "MEAN_BBXC": 11.518344, "MEAN_BBYC": 3.865639, "COMPARE": 0, "GN_ASCII": "Yaounde", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1299369, "ELEVATION": 0, "GTOPO30": 733, "TIMEZONE": "Africa/Douala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 9, "UN_ADM0": "Cameroon", "UN_LAT": 3.86, "UN_LONG": 11.51, "POP1950": 32, "POP1955": 49, "POP1960": 75, "POP1965": 112, "POP1970": 183, "POP1975": 292, "POP1980": 415, "POP1985": 578, "POP1990": 754, "POP1995": 948, "POP2000": 1192, "POP2005": 1489, "POP2010": 1611, "POP2015": 1787, "POP2020": 2058, "POP2025": 2312, "POP2050": 2549, "CITYALT": "Yaounde", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nicosia", "DIFFASCII": 0, "NAMEASCII": "Nicosia", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Capital of both", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cyprus", "SOV_A3": "CYP", "ADM0NAME": "Cyprus", "ADM0_A3": "CYP", "ISO_A2": "CY", "LATITUDE": 35.166676, "LONGITUDE": 33.366635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224300, "POP_MIN": 200452, "POP_OTHER": 222985, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 146268, "LS_NAME": "Nicosia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 224300, "MAX_POP20": 224300, "MAX_POP50": 224300, "MAX_POP300": 224300, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 128, "MAX_AREAKM": 128, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 68, "MAX_PERMI": 68, "MIN_BBXMIN": 33.275, "MAX_BBXMIN": 33.275, "MIN_BBXMAX": 33.425, "MAX_BBXMAX": 33.425, "MIN_BBYMIN": 35.041667, "MAX_BBYMIN": 35.041667, "MIN_BBYMAX": 35.225, "MAX_BBYMAX": 35.225, "MEAN_BBXC": 33.352244, "MEAN_BBYC": 35.15, "COMPARE": 0, "GN_ASCII": "Nicosia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 200452, "ELEVATION": 0, "GTOPO30": 128, "TIMEZONE": "Asia/Nicosia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ 33.376465, 35.155846 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123, "MAX_POP20": 15091561, "MAX_POP50": 29872827, "MAX_POP300": 30682197, "MAX_POP310": 30696820, "MAX_NATSCA": 300, "MIN_AREAKM": 1479, "MAX_AREAKM": 4900, "MIN_AREAMI": 571, "MAX_AREAMI": 1892, "MIN_PERKM": 1365, "MAX_PERKM": 5010, "MIN_PERMI": 848, "MAX_PERMI": 3113, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 7734614, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494, "POP1955": 3029, "POP1960": 3680, "POP1965": 4738, "POP1970": 5585, "POP1975": 6450, "POP1980": 7349, "POP1985": 8328, "POP1990": 9061, "POP1995": 9707, "POP2000": 10534, "POP2005": 11487, "POP2010": 11893, "POP2015": 12503, "POP2020": 13465, "POP2025": 14451, "POP2050": 15561, "CITYALT": "Cairo", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.050077 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athínai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athínai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Tel Aviv-Yafo", "NAMEALT": "Tel Aviv-Jaffa", "DIFFASCII": 0, "NAMEASCII": "Tel Aviv-Yafo", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "While Jerulsale", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Tel Aviv", "ISO_A2": "IL", "LATITUDE": 32.079991, "LONGITUDE": 34.770012, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3112000, "POP_MIN": 378358, "POP_OTHER": 2306851, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 293394, "MEGANAME": "Tel Aviv-Yafo", "LS_NAME": "Tel Aviv-Yafo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2324568, "MAX_POP20": 2324568, "MAX_POP50": 2324568, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 386, "MAX_PERKM": 386, "MIN_PERMI": 240, "MAX_PERMI": 240, "MIN_BBXMIN": 34.716667, "MAX_BBXMIN": 34.716667, "MIN_BBXMAX": 34.958333, "MAX_BBXMAX": 34.958333, "MIN_BBYMIN": 31.85, "MAX_BBYMIN": 31.85, "MIN_BBYMAX": 32.208333, "MAX_BBYMAX": 32.208333, "MEAN_BBXC": 34.836735, "MEAN_BBYC": 32.030266, "COMPARE": 0, "GN_ASCII": "Tel Aviv-Yafo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 5, "GN_POP": 378358, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 304, "UN_ADM0": "Israel", "UN_LAT": 32.04, "UN_LONG": 34.76, "POP1950": 418, "POP1955": 556, "POP1960": 738, "POP1965": 882, "POP1970": 1029, "POP1975": 1206, "POP1980": 1416, "POP1985": 1681, "POP1990": 2026, "POP1995": 2442, "POP2000": 2752, "POP2005": 3012, "POP2010": 3112, "POP2015": 3256, "POP2020": 3453, "POP2025": 3600, "POP2050": 3726, "CITYALT": "Tel Aviv-Jaffa", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ 34.782715, 32.082575 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Ankara", "DIFFASCII": 0, "NAMEASCII": "Ankara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Ankara", "ISO_A2": "TR", "LATITUDE": 39.927239, "LONGITUDE": 32.864392, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716000, "POP_MIN": 3307379, "POP_OTHER": 3267576, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 323786, "MEGANAME": "Ankara", "LS_NAME": "Ankara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3307379, "MAX_POP20": 3306823, "MAX_POP50": 3306823, "MAX_POP300": 3306823, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 531, "MAX_AREAKM": 534, "MIN_AREAMI": 205, "MAX_AREAMI": 206, "MIN_PERKM": 355, "MAX_PERKM": 365, "MIN_PERMI": 221, "MAX_PERMI": 227, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.425, "MIN_BBXMAX": 33.008333, "MAX_BBXMAX": 33.008333, "MIN_BBYMIN": 39.841667, "MAX_BBYMIN": 39.841667, "MIN_BBYMAX": 40.116667, "MAX_BBYMAX": 40.116667, "MEAN_BBXC": 32.753878, "MEAN_BBYC": 39.957843, "COMPARE": 0, "GN_ASCII": "Ankara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 68, "GN_POP": 3517182, "ELEVATION": 850, "GTOPO30": 889, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 500, "UN_ADM0": "Turkey", "UN_LAT": 39.92, "UN_LONG": 32.85, "POP1950": 281, "POP1955": 439, "POP1960": 635, "POP1965": 954, "POP1970": 1341, "POP1975": 1709, "POP1980": 1891, "POP1985": 2213, "POP1990": 2561, "POP1995": 2842, "POP2000": 3179, "POP2005": 3572, "POP2010": 3716, "POP2015": 3908, "POP2020": 4178, "POP2025": 4403, "POP2050": 4589, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 310, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 5, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 39.927239, "numnum:min:LATITUDE": 35.166676, "numnum:sum:LATITUDE": 75.09391500000001, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 33.366635, "numnum:min:LONGITUDE": 32.864392, "numnum:sum:LONGITUDE": 66.23102700000001, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3716000, "numnum:min:POP_MAX": 224300, "numnum:sum:POP_MAX": 3940300, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3307379, "numnum:min:POP_MIN": 200452, "numnum:sum:POP_MIN": 3507831, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3267576, "numnum:min:POP_OTHER": 222985, "numnum:sum:POP_OTHER": 3490561, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 323786, "numnum:min:GEONAMEID": 146268, "numnum:sum:GEONAMEID": 470054, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3307379, "numnum:min:MAX_POP10": 224300, "numnum:sum:MAX_POP10": 3531679, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3306823, "numnum:min:MAX_POP20": 224300, "numnum:sum:MAX_POP20": 3531123, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3306823, "numnum:min:MAX_POP50": 224300, "numnum:sum:MAX_POP50": 3531123, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3306823, "numnum:min:MAX_POP300": 224300, "numnum:sum:MAX_POP300": 3531123, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 531, "numnum:min:MIN_AREAKM": 128, "numnum:sum:MIN_AREAKM": 659, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 534, "numnum:min:MAX_AREAKM": 128, "numnum:sum:MAX_AREAKM": 662, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 205, "numnum:min:MIN_AREAMI": 49, "numnum:sum:MIN_AREAMI": 254, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 206, "numnum:min:MAX_AREAMI": 49, "numnum:sum:MAX_AREAMI": 255, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 355, "numnum:min:MIN_PERKM": 109, "numnum:sum:MIN_PERKM": 464, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 365, "numnum:min:MAX_PERKM": 109, "numnum:sum:MAX_PERKM": 474, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 221, "numnum:min:MIN_PERMI": 68, "numnum:sum:MIN_PERMI": 289, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 227, "numnum:min:MAX_PERMI": 68, "numnum:sum:MAX_PERMI": 295, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 33.275, "numnum:min:MIN_BBXMIN": 32.425, "numnum:sum:MIN_BBXMIN": 65.69999999999999, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 33.275, "numnum:min:MAX_BBXMIN": 32.425, "numnum:sum:MAX_BBXMIN": 65.69999999999999, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 33.425, "numnum:min:MIN_BBXMAX": 33.008333, "numnum:sum:MIN_BBXMAX": 66.433333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 33.425, "numnum:min:MAX_BBXMAX": 33.008333, "numnum:sum:MAX_BBXMAX": 66.433333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 39.841667, "numnum:min:MIN_BBYMIN": 35.041667, "numnum:sum:MIN_BBYMIN": 74.88333399999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 39.841667, "numnum:min:MAX_BBYMIN": 35.041667, "numnum:sum:MAX_BBYMIN": 74.88333399999999, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 40.116667, "numnum:min:MIN_BBYMAX": 35.225, "numnum:sum:MIN_BBYMAX": 75.341667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 40.116667, "numnum:min:MAX_BBYMAX": 35.225, "numnum:sum:MAX_BBYMAX": 75.341667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 33.352244, "numnum:min:MEAN_BBXC": 32.753878, "numnum:sum:MEAN_BBXC": 66.106122, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 39.957843, "numnum:min:MEAN_BBYC": 35.15, "numnum:sum:MEAN_BBYC": 75.107843, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 68, "numnum:min:ADMIN1_COD": 4, "numnum:sum:ADMIN1_COD": 72, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 3517182, "numnum:min:GN_POP": 200452, "numnum:sum:GN_POP": 3717634, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 850, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 850, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 889, "numnum:min:GTOPO30": 128, "numnum:sum:GTOPO30": 1017, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 500, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 500, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 39.92, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 39.92, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 32.85, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 32.85, "numnum:count:POP1950": 2, "numnum:max:POP1950": 281, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 281, "numnum:count:POP1955": 2, "numnum:max:POP1955": 439, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 439, "numnum:count:POP1960": 2, "numnum:max:POP1960": 635, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 635, "numnum:count:POP1965": 2, "numnum:max:POP1965": 954, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 954, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1341, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1341, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1709, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1709, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1891, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1891, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2213, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2213, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2561, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2561, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2842, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2842, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3179, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3179, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3572, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3572, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3716, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3716, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3908, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3908, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4178, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4178, "numnum:count:POP2025": 2, "numnum:max:POP2025": 4403, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 4403, "numnum:count:POP2050": 2, "numnum:max:POP2050": 4589, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4589, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ 32.871094, 39.926588 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123, "MAX_POP20": 15091561, "MAX_POP50": 29872827, "MAX_POP300": 30682197, "MAX_POP310": 30696820, "MAX_NATSCA": 300, "MIN_AREAKM": 1479, "MAX_AREAKM": 4900, "MIN_AREAMI": 571, "MAX_AREAMI": 1892, "MIN_PERKM": 1365, "MAX_PERKM": 5010, "MIN_PERMI": 848, "MAX_PERMI": 3113, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 7734614, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494, "POP1955": 3029, "POP1960": 3680, "POP1965": 4738, "POP1970": 5585, "POP1975": 6450, "POP1980": 7349, "POP1985": 8328, "POP1990": 9061, "POP1995": 9707, "POP2000": 10534, "POP2005": 11487, "POP2010": 11893, "POP2015": 12503, "POP2020": 13465, "POP2025": 14451, "POP2050": 15561, "CITYALT": "Cairo", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.050077 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Damascus", "NAMEALT": "Dimashq", "DIFFASCII": 0, "NAMEASCII": "Damascus", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Syria", "SOV_A3": "SYR", "ADM0NAME": "Syria", "ADM0_A3": "SYR", "ADM1NAME": "Damascus", "ISO_A2": "SY", "LATITUDE": 33.500034, "LONGITUDE": 36.299996, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2466000, "POP_MIN": 2466000, "POP_OTHER": 3344577, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 170654, "MEGANAME": "Dimashq", "LS_NAME": "Damascus", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3398649, "MAX_POP20": 3865606, "MAX_POP50": 3865606, "MAX_POP300": 3865606, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 532, "MAX_AREAKM": 705, "MIN_AREAMI": 205, "MAX_AREAMI": 272, "MIN_PERKM": 608, "MAX_PERKM": 768, "MIN_PERMI": 378, "MAX_PERMI": 477, "MIN_BBXMIN": 36.05, "MAX_BBXMIN": 36.05, "MIN_BBXMAX": 36.474923, "MAX_BBXMAX": 36.55, "MIN_BBYMIN": 33.283333, "MAX_BBYMIN": 33.283333, "MIN_BBYMAX": 33.611711, "MAX_BBYMAX": 33.625, "MEAN_BBXC": 36.275119, "MEAN_BBYC": 33.474283, "COMPARE": 0, "GN_ASCII": "Damascus", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 493, "UN_ADM0": "Syrian Arab Republic", "UN_LAT": 33.49, "UN_LONG": 36.29, "POP1950": 367, "POP1955": 461, "POP1960": 579, "POP1965": 727, "POP1970": 914, "POP1975": 1122, "POP1980": 1376, "POP1985": 1546, "POP1990": 1691, "POP1995": 1849, "POP2000": 2044, "POP2005": 2330, "POP2010": 2466, "POP2015": 2675, "POP2020": 2981, "POP2025": 3293, "POP2050": 3605, "CITYALT": "Damascus", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ 36.298828, 33.504759 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Tel Aviv-Yafo", "NAMEALT": "Tel Aviv-Jaffa", "DIFFASCII": 0, "NAMEASCII": "Tel Aviv-Yafo", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "While Jerulsale", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Tel Aviv", "ISO_A2": "IL", "LATITUDE": 32.079991, "LONGITUDE": 34.770012, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3112000, "POP_MIN": 378358, "POP_OTHER": 2306851, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 293394, "MEGANAME": "Tel Aviv-Yafo", "LS_NAME": "Tel Aviv-Yafo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2324568, "MAX_POP20": 2324568, "MAX_POP50": 2324568, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 386, "MAX_PERKM": 386, "MIN_PERMI": 240, "MAX_PERMI": 240, "MIN_BBXMIN": 34.716667, "MAX_BBXMIN": 34.716667, "MIN_BBXMAX": 34.958333, "MAX_BBXMAX": 34.958333, "MIN_BBYMIN": 31.85, "MAX_BBYMIN": 31.85, "MIN_BBYMAX": 32.208333, "MAX_BBYMAX": 32.208333, "MEAN_BBXC": 34.836735, "MEAN_BBYC": 32.030266, "COMPARE": 0, "GN_ASCII": "Tel Aviv-Yafo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 5, "GN_POP": 378358, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 304, "UN_ADM0": "Israel", "UN_LAT": 32.04, "UN_LONG": 34.76, "POP1950": 418, "POP1955": 556, "POP1960": 738, "POP1965": 882, "POP1970": 1029, "POP1975": 1206, "POP1980": 1416, "POP1985": 1681, "POP1990": 2026, "POP1995": 2442, "POP2000": 2752, "POP2005": 3012, "POP2010": 3112, "POP2015": 3256, "POP2020": 3453, "POP2025": 3600, "POP2050": 3726, "CITYALT": "Tel Aviv-Jaffa", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ 34.782715, 32.082575 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yerevan", "DIFFASCII": 0, "NAMEASCII": "Yerevan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Armenia", "SOV_A3": "ARM", "ADM0NAME": "Armenia", "ADM0_A3": "ARM", "ADM1NAME": "Erevan", "ISO_A2": "AM", "LATITUDE": 40.181151, "LONGITUDE": 44.513551, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1102000, "POP_MIN": 1093485, "POP_OTHER": 1154748, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 616052, "MEGANAME": "Yerevan", "LS_NAME": "Yerevan", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1200842, "MAX_POP20": 1200842, "MAX_POP50": 1200842, "MAX_POP300": 1200842, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 191, "MAX_AREAKM": 191, "MIN_AREAMI": 74, "MAX_AREAMI": 74, "MIN_PERKM": 166, "MAX_PERKM": 166, "MIN_PERMI": 103, "MAX_PERMI": 103, "MIN_BBXMIN": 44.391667, "MAX_BBXMIN": 44.391667, "MIN_BBXMAX": 44.6, "MAX_BBXMAX": 44.6, "MIN_BBYMIN": 39.925, "MAX_BBYMIN": 39.925, "MIN_BBYMAX": 40.241667, "MAX_BBYMAX": 40.241667, "MEAN_BBXC": 44.506293, "MEAN_BBYC": 40.127356, "COMPARE": 0, "GN_ASCII": "Yerevan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1093485, "ELEVATION": 0, "GTOPO30": 1002, "TIMEZONE": "Asia/Yerevan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 377, "UN_ADM0": "Armenia", "UN_LAT": 40.2, "UN_LONG": 44.53, "POP1950": 341, "POP1955": 431, "POP1960": 538, "POP1965": 648, "POP1970": 778, "POP1975": 911, "POP1980": 1042, "POP1985": 1123, "POP1990": 1175, "POP1995": 1142, "POP2000": 1111, "POP2005": 1103, "POP2010": 1102, "POP2015": 1102, "POP2020": 1102, "POP2025": 1102, "POP2050": 1102, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ 44.406738, 33.339707 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Damascus", "NAMEALT": "Dimashq", "DIFFASCII": 0, "NAMEASCII": "Damascus", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Syria", "SOV_A3": "SYR", "ADM0NAME": "Syria", "ADM0_A3": "SYR", "ADM1NAME": "Damascus", "ISO_A2": "SY", "LATITUDE": 33.500034, "LONGITUDE": 36.299996, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2466000, "POP_MIN": 2466000, "POP_OTHER": 3344577, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 170654, "MEGANAME": "Dimashq", "LS_NAME": "Damascus", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3398649, "MAX_POP20": 3865606, "MAX_POP50": 3865606, "MAX_POP300": 3865606, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 532, "MAX_AREAKM": 705, "MIN_AREAMI": 205, "MAX_AREAMI": 272, "MIN_PERKM": 608, "MAX_PERKM": 768, "MIN_PERMI": 378, "MAX_PERMI": 477, "MIN_BBXMIN": 36.05, "MAX_BBXMIN": 36.05, "MIN_BBXMAX": 36.474923, "MAX_BBXMAX": 36.55, "MIN_BBYMIN": 33.283333, "MAX_BBYMIN": 33.283333, "MIN_BBYMAX": 33.611711, "MAX_BBYMAX": 33.625, "MEAN_BBXC": 36.275119, "MEAN_BBYC": 33.474283, "COMPARE": 0, "GN_ASCII": "Damascus", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 493, "UN_ADM0": "Syrian Arab Republic", "UN_LAT": 33.49, "UN_LONG": 36.29, "POP1950": 367, "POP1955": 461, "POP1960": 579, "POP1965": 727, "POP1970": 914, "POP1975": 1122, "POP1980": 1376, "POP1985": 1546, "POP1990": 1691, "POP1995": 1849, "POP2000": 2044, "POP2005": 2330, "POP2010": 2466, "POP2015": 2675, "POP2020": 2981, "POP2025": 3293, "POP2050": 3605, "CITYALT": "Damascus", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ 36.298828, 33.504759 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Jerusalem", "DIFFASCII": 0, "NAMEASCII": "Jerusalem", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Jerusalem", "ISO_A2": "IL", "LATITUDE": 31.778408, "LONGITUDE": 35.206626, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1029300, "POP_MIN": 801000, "POP_OTHER": 1072567, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 281184, "LS_NAME": "Jerusalem", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1073782, "MAX_POP20": 1073782, "MAX_POP50": 1073782, "MAX_POP300": 1073782, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 246, "MIN_AREAMI": 95, "MAX_AREAMI": 95, "MIN_PERKM": 239, "MAX_PERKM": 239, "MIN_PERMI": 149, "MAX_PERMI": 149, "MIN_BBXMIN": 35.1, "MAX_BBXMIN": 35.1, "MIN_BBXMAX": 35.316667, "MAX_BBXMAX": 35.316667, "MIN_BBYMIN": 31.683333, "MAX_BBYMIN": 31.683333, "MIN_BBYMAX": 31.991667, "MAX_BBYMAX": 31.991667, "MEAN_BBXC": 35.210651, "MEAN_BBYC": 31.809862, "COMPARE": 0, "GN_ASCII": "Jerusalem", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 6, "GN_POP": 714000, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ 35.222168, 31.765537 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yerevan", "DIFFASCII": 0, "NAMEASCII": "Yerevan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Armenia", "SOV_A3": "ARM", "ADM0NAME": "Armenia", "ADM0_A3": "ARM", "ADM1NAME": "Erevan", "ISO_A2": "AM", "LATITUDE": 40.181151, "LONGITUDE": 44.513551, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1102000, "POP_MIN": 1093485, "POP_OTHER": 1154748, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 616052, "MEGANAME": "Yerevan", "LS_NAME": "Yerevan", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1200842, "MAX_POP20": 1200842, "MAX_POP50": 1200842, "MAX_POP300": 1200842, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 191, "MAX_AREAKM": 191, "MIN_AREAMI": 74, "MAX_AREAMI": 74, "MIN_PERKM": 166, "MAX_PERKM": 166, "MIN_PERMI": 103, "MAX_PERMI": 103, "MIN_BBXMIN": 44.391667, "MAX_BBXMIN": 44.391667, "MIN_BBXMAX": 44.6, "MAX_BBXMAX": 44.6, "MIN_BBYMIN": 39.925, "MAX_BBYMIN": 39.925, "MIN_BBYMAX": 40.241667, "MAX_BBYMAX": 40.241667, "MEAN_BBXC": 44.506293, "MEAN_BBYC": 40.127356, "COMPARE": 0, "GN_ASCII": "Yerevan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1093485, "ELEVATION": 0, "GTOPO30": 1002, "TIMEZONE": "Asia/Yerevan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 377, "UN_ADM0": "Armenia", "UN_LAT": 40.2, "UN_LONG": 44.53, "POP1950": 341, "POP1955": 431, "POP1960": 538, "POP1965": 648, "POP1970": 778, "POP1975": 911, "POP1980": 1042, "POP1985": 1123, "POP1990": 1175, "POP1995": 1142, "POP2000": 1111, "POP2005": 1103, "POP2010": 1102, "POP2015": 1102, "POP2020": 1102, "POP2025": 1102, "POP2050": 1102, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amman", "DIFFASCII": 0, "NAMEASCII": "Amman", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Jordan", "SOV_A3": "JOR", "ADM0NAME": "Jordan", "ADM0_A3": "JOR", "ADM1NAME": "Amman", "ISO_A2": "JO", "LATITUDE": 31.950025, "LONGITUDE": 35.9333, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1060000, "POP_MIN": 1060000, "POP_OTHER": 2633729, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 250441, "MEGANAME": "Amman", "LS_NAME": "Amman", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2725138, "MAX_POP20": 3684787, "MAX_POP50": 3684787, "MAX_POP300": 3684787, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 403, "MAX_AREAKM": 545, "MIN_AREAMI": 156, "MAX_AREAMI": 210, "MIN_PERKM": 258, "MAX_PERKM": 361, "MIN_PERMI": 160, "MAX_PERMI": 224, "MIN_BBXMIN": 35.775, "MAX_BBXMIN": 35.775, "MIN_BBXMAX": 36.041667, "MAX_BBXMAX": 36.158333, "MIN_BBYMIN": 31.783333, "MAX_BBYMIN": 31.783333, "MIN_BBYMAX": 32.083333, "MAX_BBYMAX": 32.166667, "MEAN_BBXC": 35.928711, "MEAN_BBYC": 31.948606, "COMPARE": 0, "GN_ASCII": "Amman", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1275857, "ELEVATION": 0, "GTOPO30": 765, "TIMEZONE": "Asia/Amman", "GEONAMESNO": "GeoNames match general.", "UN_FID": 322, "UN_ADM0": "Jordan", "UN_LAT": 31.94, "UN_LONG": 35.93, "POP1950": 90, "POP1955": 140, "POP1960": 218, "POP1965": 299, "POP1970": 388, "POP1975": 500, "POP1980": 636, "POP1985": 736, "POP1990": 851, "POP1995": 973, "POP2000": 1007, "POP2005": 1042, "POP2010": 1060, "POP2015": 1106, "POP2020": 1185, "POP2025": 1268, "POP2050": 1359, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ 35.947266, 31.952162 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ 44.406738, 33.339707 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Khartoum", "NAMEALT": "Al-Khartum", "DIFFASCII": 0, "NAMEASCII": "Khartoum", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sudan", "SOV_A3": "SDN", "ADM0NAME": "Sudan", "ADM0_A3": "SDN", "ADM1NAME": "Khartoum", "ISO_A2": "SD", "LATITUDE": 15.588078, "LONGITUDE": 32.534179, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4754000, "POP_MIN": 1974647, "POP_OTHER": 2325931, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 379252, "MEGANAME": "Al-Khartum", "LS_NAME": "Khartoum", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2395309, "MAX_POP20": 2395309, "MAX_POP50": 2395309, "MAX_POP300": 4542697, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 348, "MAX_AREAKM": 630, "MIN_AREAMI": 134, "MAX_AREAMI": 243, "MIN_PERKM": 237, "MAX_PERKM": 424, "MIN_PERMI": 147, "MAX_PERMI": 263, "MIN_BBXMIN": 32.341667, "MAX_BBXMIN": 32.458333, "MIN_BBXMAX": 32.691667, "MAX_BBXMAX": 32.691667, "MIN_BBYMIN": 15.325, "MAX_BBYMIN": 15.325, "MIN_BBYMAX": 15.699422, "MAX_BBYMAX": 15.825, "MEAN_BBXC": 32.550462, "MEAN_BBYC": 15.559101, "COMPARE": 0, "GN_ASCII": "Khartoum", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 29, "GN_POP": 1974647, "ELEVATION": 0, "GTOPO30": 378, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 466, "UN_ADM0": "Sudan", "UN_LAT": 15.55, "UN_LONG": 32.52, "POP1950": 183, "POP1955": 252, "POP1960": 347, "POP1965": 477, "POP1970": 657, "POP1975": 886, "POP1980": 1164, "POP1985": 1611, "POP1990": 2360, "POP1995": 3242, "POP2000": 3949, "POP2005": 4518, "POP2010": 4754, "POP2015": 5185, "POP2020": 6077, "POP2025": 7017, "POP2050": 7937, "CITYALT": "Khartoum", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ 32.541504, 15.580711 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Jerusalem", "DIFFASCII": 0, "NAMEASCII": "Jerusalem", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Jerusalem", "ISO_A2": "IL", "LATITUDE": 31.778408, "LONGITUDE": 35.206626, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1029300, "POP_MIN": 801000, "POP_OTHER": 1072567, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 281184, "LS_NAME": "Jerusalem", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1073782, "MAX_POP20": 1073782, "MAX_POP50": 1073782, "MAX_POP300": 1073782, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 246, "MIN_AREAMI": 95, "MAX_AREAMI": 95, "MIN_PERKM": 239, "MAX_PERKM": 239, "MIN_PERMI": 149, "MAX_PERMI": 149, "MIN_BBXMIN": 35.1, "MAX_BBXMIN": 35.1, "MIN_BBXMAX": 35.316667, "MAX_BBXMAX": 35.316667, "MIN_BBYMIN": 31.683333, "MAX_BBYMIN": 31.683333, "MIN_BBYMAX": 31.991667, "MAX_BBYMAX": 31.991667, "MEAN_BBXC": 35.210651, "MEAN_BBYC": 31.809862, "COMPARE": 0, "GN_ASCII": "Jerusalem", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 6, "GN_POP": 714000, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ 35.222168, 31.765537 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amman", "DIFFASCII": 0, "NAMEASCII": "Amman", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Jordan", "SOV_A3": "JOR", "ADM0NAME": "Jordan", "ADM0_A3": "JOR", "ADM1NAME": "Amman", "ISO_A2": "JO", "LATITUDE": 31.950025, "LONGITUDE": 35.9333, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1060000, "POP_MIN": 1060000, "POP_OTHER": 2633729, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 250441, "MEGANAME": "Amman", "LS_NAME": "Amman", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2725138, "MAX_POP20": 3684787, "MAX_POP50": 3684787, "MAX_POP300": 3684787, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 403, "MAX_AREAKM": 545, "MIN_AREAMI": 156, "MAX_AREAMI": 210, "MIN_PERKM": 258, "MAX_PERKM": 361, "MIN_PERMI": 160, "MAX_PERMI": 224, "MIN_BBXMIN": 35.775, "MAX_BBXMIN": 35.775, "MIN_BBXMAX": 36.041667, "MAX_BBXMAX": 36.158333, "MIN_BBYMIN": 31.783333, "MAX_BBYMIN": 31.783333, "MIN_BBYMAX": 32.083333, "MAX_BBYMAX": 32.166667, "MEAN_BBXC": 35.928711, "MEAN_BBYC": 31.948606, "COMPARE": 0, "GN_ASCII": "Amman", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1275857, "ELEVATION": 0, "GTOPO30": 765, "TIMEZONE": "Asia/Amman", "GEONAMESNO": "GeoNames match general.", "UN_FID": 322, "UN_ADM0": "Jordan", "UN_LAT": 31.94, "UN_LONG": 35.93, "POP1950": 90, "POP1955": 140, "POP1960": 218, "POP1965": 299, "POP1970": 388, "POP1975": 500, "POP1980": 636, "POP1985": 736, "POP1990": 851, "POP1995": 973, "POP2000": 1007, "POP2005": 1042, "POP2010": 1060, "POP2015": 1106, "POP2020": 1185, "POP2025": 1268, "POP2050": 1359, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 35.947266, 31.952162 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.307616 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Khartoum", "NAMEALT": "Al-Khartum", "DIFFASCII": 0, "NAMEASCII": "Khartoum", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sudan", "SOV_A3": "SDN", "ADM0NAME": "Sudan", "ADM0_A3": "SDN", "ADM1NAME": "Khartoum", "ISO_A2": "SD", "LATITUDE": 15.588078, "LONGITUDE": 32.534179, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4754000, "POP_MIN": 1974647, "POP_OTHER": 2325931, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 379252, "MEGANAME": "Al-Khartum", "LS_NAME": "Khartoum", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2395309, "MAX_POP20": 2395309, "MAX_POP50": 2395309, "MAX_POP300": 4542697, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 348, "MAX_AREAKM": 630, "MIN_AREAMI": 134, "MAX_AREAMI": 243, "MIN_PERKM": 237, "MAX_PERKM": 424, "MIN_PERMI": 147, "MAX_PERMI": 263, "MIN_BBXMIN": 32.341667, "MAX_BBXMIN": 32.458333, "MIN_BBXMAX": 32.691667, "MAX_BBXMAX": 32.691667, "MIN_BBYMIN": 15.325, "MAX_BBYMIN": 15.325, "MIN_BBYMAX": 15.699422, "MAX_BBYMAX": 15.825, "MEAN_BBXC": 32.550462, "MEAN_BBYC": 15.559101, "COMPARE": 0, "GN_ASCII": "Khartoum", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 29, "GN_POP": 1974647, "ELEVATION": 0, "GTOPO30": 378, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 466, "UN_ADM0": "Sudan", "UN_LAT": 15.55, "UN_LONG": 32.52, "POP1950": 183, "POP1955": 252, "POP1960": 347, "POP1965": 477, "POP1970": 657, "POP1975": 886, "POP1980": 1164, "POP1985": 1611, "POP1990": 2360, "POP1995": 3242, "POP2000": 3949, "POP2005": 4518, "POP2010": 4754, "POP2015": 5185, "POP2020": 6077, "POP2025": 7017, "POP2050": 7937, "CITYALT": "Khartoum", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ 32.541504, 15.580711 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Asmara", "DIFFASCII": 0, "NAMEASCII": "Asmara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Eritrea", "SOV_A3": "ERI", "ADM0NAME": "Eritrea", "ADM0_A3": "ERI", "ADM1NAME": "Anseba", "ISO_A2": "ER", "LATITUDE": 15.333339, "LONGITUDE": 38.933324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 620802, "POP_MIN": 563930, "POP_OTHER": 587094, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 343300, "LS_NAME": "Asmara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 620802, "MAX_POP20": 620802, "MAX_POP50": 620802, "MAX_POP300": 620802, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 90, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 93, "MAX_PERKM": 93, "MIN_PERMI": 58, "MAX_PERMI": 58, "MIN_BBXMIN": 38.858333, "MAX_BBXMIN": 38.858333, "MIN_BBXMAX": 38.975, "MAX_BBXMAX": 38.975, "MIN_BBYMIN": 15.225, "MAX_BBYMIN": 15.225, "MIN_BBYMAX": 15.408333, "MAX_BBYMAX": 15.408333, "MEAN_BBXC": 38.926873, "MEAN_BBYC": 15.327408, "COMPARE": 0, "GN_ASCII": "Asmara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 563930, "ELEVATION": 0, "GTOPO30": 2360, "TIMEZONE": "Africa/Asmara", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.326572 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sanaa", "NAMEALT": "Sana'a'", "DIFFASCII": 0, "NAMEASCII": "Sanaa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Yemen", "SOV_A3": "YEM", "ADM0NAME": "Yemen", "ADM0_A3": "YEM", "ADM1NAME": "Amanat Al Asimah", "ISO_A2": "YE", "LATITUDE": 15.354733, "LONGITUDE": 44.206593, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2008000, "POP_MIN": 1835853, "POP_OTHER": 1742507, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 71137, "MEGANAME": "Sana'a'", "LS_NAME": "Sanaa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1835853, "MAX_POP20": 1835853, "MAX_POP50": 1835853, "MAX_POP300": 1835853, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 160, "MAX_AREAKM": 160, "MIN_AREAMI": 62, "MAX_AREAMI": 62, "MIN_PERKM": 132, "MAX_PERKM": 132, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": 44.15, "MAX_BBXMIN": 44.15, "MIN_BBXMAX": 44.258333, "MAX_BBXMAX": 44.258333, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.508333, "MAX_BBYMAX": 15.508333, "MEAN_BBXC": 44.206615, "MEAN_BBYC": 15.376031, "COMPARE": 0, "GN_ASCII": "Sanaa", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 587, "UN_ADM0": "Yemen", "UN_LAT": 15.36, "UN_LONG": 44.2, "POP1950": 46, "POP1955": 58, "POP1960": 72, "POP1965": 89, "POP1970": 111, "POP1975": 141, "POP1980": 238, "POP1985": 402, "POP1990": 653, "POP1995": 1034, "POP2000": 1365, "POP2005": 1801, "POP2010": 2008, "POP2015": 2345, "POP2020": 2955, "POP2025": 3636, "POP2050": 4382, "CITYALT": "Sanaa", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.347762 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.307616 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Djibouti", "DIFFASCII": 0, "NAMEASCII": "Djibouti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Djibouti", "SOV_A3": "DJI", "ADM0NAME": "Djibouti", "ADM0_A3": "DJI", "ADM1NAME": "Djibouti", "ISO_A2": "DJ", "LATITUDE": 11.595014, "LONGITUDE": 43.148002, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 923000, "POP_MIN": 604013, "POP_OTHER": 335001, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 223817, "LS_NAME": "Djibouti", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 335001, "MAX_POP20": 335001, "MAX_POP50": 335001, "MAX_POP300": 335001, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 42, "MAX_AREAKM": 42, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 43.066667, "MAX_BBXMIN": 43.066667, "MIN_BBXMAX": 43.166667, "MAX_BBXMAX": 43.166667, "MIN_BBYMIN": 11.533333, "MAX_BBYMIN": 11.533333, "MIN_BBYMAX": 11.625, "MAX_BBYMAX": 11.625, "MEAN_BBXC": 43.129167, "MEAN_BBYC": 11.5715, "COMPARE": 0, "GN_ASCII": "Djibouti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 623891, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Djibouti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 43.154297, 11.587669 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Asmara", "DIFFASCII": 0, "NAMEASCII": "Asmara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Eritrea", "SOV_A3": "ERI", "ADM0NAME": "Eritrea", "ADM0_A3": "ERI", "ADM1NAME": "Anseba", "ISO_A2": "ER", "LATITUDE": 15.333339, "LONGITUDE": 38.933324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 620802, "POP_MIN": 563930, "POP_OTHER": 587094, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 343300, "LS_NAME": "Asmara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 620802, "MAX_POP20": 620802, "MAX_POP50": 620802, "MAX_POP300": 620802, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 90, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 93, "MAX_PERKM": 93, "MIN_PERMI": 58, "MAX_PERMI": 58, "MIN_BBXMIN": 38.858333, "MAX_BBXMIN": 38.858333, "MIN_BBXMAX": 38.975, "MAX_BBXMAX": 38.975, "MIN_BBYMIN": 15.225, "MAX_BBYMIN": 15.225, "MIN_BBYMAX": 15.408333, "MAX_BBYMAX": 15.408333, "MEAN_BBXC": 38.926873, "MEAN_BBYC": 15.327408, "COMPARE": 0, "GN_ASCII": "Asmara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 563930, "ELEVATION": 0, "GTOPO30": 2360, "TIMEZONE": "Africa/Asmara", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.326572 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Addis Ababa", "DIFFASCII": 0, "NAMEASCII": "Addis Ababa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ethiopia", "SOV_A3": "ETH", "ADM0NAME": "Ethiopia", "ADM0_A3": "ETH", "ADM1NAME": "Addis Ababa", "ISO_A2": "ET", "LATITUDE": 9.03331, "LONGITUDE": 38.700004, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3100000, "POP_MIN": 2757729, "POP_OTHER": 3013653, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 344979, "MEGANAME": "Addis Ababa", "LS_NAME": "Addis Ababa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2984087, "MAX_POP20": 3176486, "MAX_POP50": 3491912, "MAX_POP300": 3450173, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 462, "MAX_AREAKM": 1182, "MIN_AREAMI": 178, "MAX_AREAMI": 457, "MIN_PERKM": 397, "MAX_PERKM": 1325, "MIN_PERMI": 247, "MAX_PERMI": 823, "MIN_BBXMIN": 38.575, "MAX_BBXMIN": 38.575, "MIN_BBXMAX": 38.966667, "MAX_BBXMAX": 39.483333, "MIN_BBYMIN": 8.033333, "MAX_BBYMIN": 8.67178, "MIN_BBYMAX": 9.125, "MAX_BBYMAX": 9.125, "MEAN_BBXC": 38.919464, "MEAN_BBYC": 8.825709, "COMPARE": 0, "GN_ASCII": "Addis Ababa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 2757729, "ELEVATION": 0, "GTOPO30": 2363, "TIMEZONE": "Africa/Addis_Ababa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 180, "UN_ADM0": "Ethiopia", "UN_LAT": 9.02, "UN_LONG": 38.7, "POP1950": 392, "POP1955": 451, "POP1960": 519, "POP1965": 597, "POP1970": 729, "POP1975": 926, "POP1980": 1175, "POP1985": 1476, "POP1990": 1791, "POP1995": 2157, "POP2000": 2493, "POP2005": 2902, "POP2010": 3100, "POP2015": 3453, "POP2020": 4184, "POP2025": 5083, "POP2050": 6156, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ 38.693848, 9.037003 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sanaa", "NAMEALT": "Sana'a'", "DIFFASCII": 0, "NAMEASCII": "Sanaa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Yemen", "SOV_A3": "YEM", "ADM0NAME": "Yemen", "ADM0_A3": "YEM", "ADM1NAME": "Amanat Al Asimah", "ISO_A2": "YE", "LATITUDE": 15.354733, "LONGITUDE": 44.206593, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2008000, "POP_MIN": 1835853, "POP_OTHER": 1742507, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 71137, "MEGANAME": "Sana'a'", "LS_NAME": "Sanaa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1835853, "MAX_POP20": 1835853, "MAX_POP50": 1835853, "MAX_POP300": 1835853, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 160, "MAX_AREAKM": 160, "MIN_AREAMI": 62, "MAX_AREAMI": 62, "MIN_PERKM": 132, "MAX_PERKM": 132, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": 44.15, "MAX_BBXMIN": 44.15, "MIN_BBXMAX": 44.258333, "MAX_BBXMAX": 44.258333, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.508333, "MAX_BBYMAX": 15.508333, "MEAN_BBXC": 44.206615, "MEAN_BBYC": 15.376031, "COMPARE": 0, "GN_ASCII": "Sanaa", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 587, "UN_ADM0": "Yemen", "UN_LAT": 15.36, "UN_LONG": 44.2, "POP1950": 46, "POP1955": 58, "POP1960": 72, "POP1965": 89, "POP1970": 111, "POP1975": 141, "POP1980": 238, "POP1985": 402, "POP1990": 653, "POP1995": 1034, "POP2000": 1365, "POP2005": 1801, "POP2010": 2008, "POP2015": 2345, "POP2020": 2955, "POP2025": 3636, "POP2050": 4382, "CITYALT": "Sanaa", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.347762 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.557417 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Djibouti", "DIFFASCII": 0, "NAMEASCII": "Djibouti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Djibouti", "SOV_A3": "DJI", "ADM0NAME": "Djibouti", "ADM0_A3": "DJI", "ADM1NAME": "Djibouti", "ISO_A2": "DJ", "LATITUDE": 11.595014, "LONGITUDE": 43.148002, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 923000, "POP_MIN": 604013, "POP_OTHER": 335001, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 223817, "LS_NAME": "Djibouti", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 335001, "MAX_POP20": 335001, "MAX_POP50": 335001, "MAX_POP300": 335001, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 42, "MAX_AREAKM": 42, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 43.066667, "MAX_BBXMIN": 43.066667, "MIN_BBXMAX": 43.166667, "MAX_BBXMAX": 43.166667, "MIN_BBYMIN": 11.533333, "MAX_BBYMIN": 11.533333, "MIN_BBYMAX": 11.625, "MAX_BBYMAX": 11.625, "MEAN_BBXC": 43.129167, "MEAN_BBYC": 11.5715, "COMPARE": 0, "GN_ASCII": "Djibouti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 623891, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Djibouti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 43.154297, 11.587669 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Astana", "DIFFASCII": 0, "NAMEASCII": "Astana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kazakhstan", "SOV_A3": "KAZ", "ADM0NAME": "Kazakhstan", "ADM0_A3": "KAZ", "ADM1NAME": "Aqmola", "ISO_A2": "KZ", "LATITUDE": 51.181125, "LONGITUDE": 71.427774, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 345604, "POP_MIN": 325021, "POP_OTHER": 317445, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1526273, "LS_NAME": "Astana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 325021, "MAX_POP20": 325021, "MAX_POP50": 325021, "MAX_POP300": 325021, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 101, "MAX_PERKM": 101, "MIN_PERMI": 63, "MAX_PERMI": 63, "MIN_BBXMIN": 71.325, "MAX_BBXMIN": 71.325, "MIN_BBXMAX": 71.533333, "MAX_BBXMAX": 71.533333, "MIN_BBYMIN": 51.1, "MAX_BBYMIN": 51.1, "MIN_BBYMAX": 51.225, "MAX_BBYMAX": 51.225, "MEAN_BBXC": 71.43275, "MEAN_BBYC": 51.164443, "COMPARE": 0, "GN_ASCII": "Astana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 345604, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Asia/Qyzylorda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ 71.433105, 51.179343 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Addis Ababa", "DIFFASCII": 0, "NAMEASCII": "Addis Ababa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ethiopia", "SOV_A3": "ETH", "ADM0NAME": "Ethiopia", "ADM0_A3": "ETH", "ADM1NAME": "Addis Ababa", "ISO_A2": "ET", "LATITUDE": 9.03331, "LONGITUDE": 38.700004, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3100000, "POP_MIN": 2757729, "POP_OTHER": 3013653, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 344979, "MEGANAME": "Addis Ababa", "LS_NAME": "Addis Ababa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2984087, "MAX_POP20": 3176486, "MAX_POP50": 3491912, "MAX_POP300": 3450173, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 462, "MAX_AREAKM": 1182, "MIN_AREAMI": 178, "MAX_AREAMI": 457, "MIN_PERKM": 397, "MAX_PERKM": 1325, "MIN_PERMI": 247, "MAX_PERMI": 823, "MIN_BBXMIN": 38.575, "MAX_BBXMIN": 38.575, "MIN_BBXMAX": 38.966667, "MAX_BBXMAX": 39.483333, "MIN_BBYMIN": 8.033333, "MAX_BBYMIN": 8.67178, "MIN_BBYMAX": 9.125, "MAX_BBYMAX": 9.125, "MEAN_BBXC": 38.919464, "MEAN_BBYC": 8.825709, "COMPARE": 0, "GN_ASCII": "Addis Ababa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 2757729, "ELEVATION": 0, "GTOPO30": 2363, "TIMEZONE": "Africa/Addis_Ababa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 180, "UN_ADM0": "Ethiopia", "UN_LAT": 9.02, "UN_LONG": 38.7, "POP1950": 392, "POP1955": 451, "POP1960": 519, "POP1965": 597, "POP1970": 729, "POP1975": 926, "POP1980": 1175, "POP1985": 1476, "POP1990": 1791, "POP1995": 2157, "POP2000": 2493, "POP2005": 2902, "POP2010": 3100, "POP2015": 3453, "POP2020": 4184, "POP2025": 5083, "POP2050": 6156, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ 38.693848, 9.037003 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.557417 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bishkek", "DIFFASCII": 0, "NAMEASCII": "Bishkek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kyrgyzstan", "SOV_A3": "KGZ", "ADM0NAME": "Kyrgyzstan", "ADM0_A3": "KGZ", "ADM1NAME": "Bishkek", "ISO_A2": "KG", "LATITUDE": 42.873079, "LONGITUDE": 74.585204, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 837000, "POP_MIN": 804212, "POP_OTHER": 781714, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1528675, "MEGANAME": "Bishkek", "LS_NAME": "Bishkek", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 804212, "MAX_POP20": 804212, "MAX_POP50": 804212, "MAX_POP300": 804212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 245, "MAX_AREAKM": 245, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 190, "MAX_PERKM": 190, "MIN_PERMI": 118, "MAX_PERMI": 118, "MIN_BBXMIN": 74.425, "MAX_BBXMIN": 74.425, "MIN_BBXMAX": 74.8, "MAX_BBXMAX": 74.8, "MIN_BBYMIN": 42.766667, "MAX_BBYMIN": 42.766667, "MIN_BBYMAX": 43, "MAX_BBYMAX": 43, "MEAN_BBXC": 74.603823, "MEAN_BBYC": 42.872917, "COMPARE": 0, "GN_ASCII": "Bishkek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 900000, "ELEVATION": 0, "GTOPO30": 772, "TIMEZONE": "Asia/Bishkek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 340, "UN_ADM0": "Kyrgyzstan", "UN_LAT": 42.87, "UN_LONG": 74.77, "POP1950": 150, "POP1955": 186, "POP1960": 236, "POP1965": 322, "POP1970": 433, "POP1975": 485, "POP1980": 538, "POP1985": 583, "POP1990": 635, "POP1995": 703, "POP2000": 770, "POP2005": 817, "POP2010": 837, "POP2015": 869, "POP2020": 934, "POP2025": 1011, "POP2050": 1096, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 74.597168, 42.875964 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Astana", "DIFFASCII": 0, "NAMEASCII": "Astana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kazakhstan", "SOV_A3": "KAZ", "ADM0NAME": "Kazakhstan", "ADM0_A3": "KAZ", "ADM1NAME": "Aqmola", "ISO_A2": "KZ", "LATITUDE": 51.181125, "LONGITUDE": 71.427774, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 345604, "POP_MIN": 325021, "POP_OTHER": 317445, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1526273, "LS_NAME": "Astana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 325021, "MAX_POP20": 325021, "MAX_POP50": 325021, "MAX_POP300": 325021, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 101, "MAX_PERKM": 101, "MIN_PERMI": 63, "MAX_PERMI": 63, "MIN_BBXMIN": 71.325, "MAX_BBXMIN": 71.325, "MIN_BBXMAX": 71.533333, "MAX_BBXMAX": 71.533333, "MIN_BBYMIN": 51.1, "MAX_BBYMIN": 51.1, "MIN_BBYMAX": 51.225, "MAX_BBYMAX": 51.225, "MEAN_BBXC": 71.43275, "MEAN_BBYC": 51.164443, "COMPARE": 0, "GN_ASCII": "Astana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 345604, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Asia/Qyzylorda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ 71.433105, 51.179343 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEALT": "Ürümqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102, "MEGANAME": "Ürümqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046, "MAX_POP20": 2066046, "MAX_POP50": 2066046, "MAX_POP300": 2066046, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 361, "MAX_AREAKM": 361, "MIN_AREAMI": 139, "MAX_AREAMI": 139, "MIN_PERKM": 318, "MAX_PERKM": 318, "MIN_PERMI": 198, "MAX_PERMI": 198, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13, "GN_POP": 1508225, "ELEVATION": 0, "GTOPO30": 915, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253, "POP1955": 312, "POP1960": 384, "POP1965": 472, "POP1970": 581, "POP1975": 715, "POP1980": 881, "POP1985": 1029, "POP1990": 1161, "POP1995": 1417, "POP2000": 1730, "POP2005": 2025, "POP2010": 2151, "POP2015": 2340, "POP2020": 2620, "POP2025": 2851, "POP2050": 3038, "CITYALT": "Urumqi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ 87.583008, 43.802819 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Baku", "DIFFASCII": 0, "NAMEASCII": "Baku", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Azerbaijan", "SOV_A3": "AZE", "ADM0NAME": "Azerbaijan", "ADM0_A3": "AZE", "ADM1NAME": "Baki", "ISO_A2": "AZ", "LATITUDE": 40.395272, "LONGITUDE": 49.862217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2122300, "POP_MIN": 1892000, "POP_OTHER": 1518801, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 587084, "MEGANAME": "Baku", "LS_NAME": "Baku", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1581087, "MAX_POP20": 1581475, "MAX_POP50": 1581475, "MAX_POP300": 1581475, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 249, "MIN_AREAMI": 95, "MAX_AREAMI": 96, "MIN_PERKM": 174, "MAX_PERKM": 179, "MIN_PERMI": 108, "MAX_PERMI": 111, "MIN_BBXMIN": 49.7, "MAX_BBXMIN": 49.716667, "MIN_BBXMAX": 50.016667, "MAX_BBXMAX": 50.016667, "MIN_BBYMIN": 40.316667, "MAX_BBYMIN": 40.316667, "MIN_BBYMAX": 40.5, "MAX_BBYMAX": 40.5, "MEAN_BBXC": 49.881373, "MEAN_BBYC": 40.41632, "COMPARE": 0, "GN_ASCII": "Baku", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1116513, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Baku", "GEONAMESNO": "GeoNames match general.", "UN_FID": 200, "UN_ADM0": "Azerbaijan", "UN_LAT": 40.32, "UN_LONG": 49.81, "POP1950": 897, "POP1955": 940, "POP1960": 1005, "POP1965": 1132, "POP1970": 1274, "POP1975": 1429, "POP1980": 1574, "POP1985": 1660, "POP1990": 1733, "POP1995": 1766, "POP2000": 1806, "POP2005": 1867, "POP2010": 1892, "POP2015": 1931, "POP2020": 2006, "POP2025": 2097, "POP2050": 2187, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.396764 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bishkek", "DIFFASCII": 0, "NAMEASCII": "Bishkek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kyrgyzstan", "SOV_A3": "KGZ", "ADM0NAME": "Kyrgyzstan", "ADM0_A3": "KGZ", "ADM1NAME": "Bishkek", "ISO_A2": "KG", "LATITUDE": 42.873079, "LONGITUDE": 74.585204, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 837000, "POP_MIN": 804212, "POP_OTHER": 781714, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1528675, "MEGANAME": "Bishkek", "LS_NAME": "Bishkek", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 804212, "MAX_POP20": 804212, "MAX_POP50": 804212, "MAX_POP300": 804212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 245, "MAX_AREAKM": 245, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 190, "MAX_PERKM": 190, "MIN_PERMI": 118, "MAX_PERMI": 118, "MIN_BBXMIN": 74.425, "MAX_BBXMIN": 74.425, "MIN_BBXMAX": 74.8, "MAX_BBXMAX": 74.8, "MIN_BBYMIN": 42.766667, "MAX_BBYMIN": 42.766667, "MIN_BBYMAX": 43, "MAX_BBYMAX": 43, "MEAN_BBXC": 74.603823, "MEAN_BBYC": 42.872917, "COMPARE": 0, "GN_ASCII": "Bishkek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 900000, "ELEVATION": 0, "GTOPO30": 772, "TIMEZONE": "Asia/Bishkek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 340, "UN_ADM0": "Kyrgyzstan", "UN_LAT": 42.87, "UN_LONG": 74.77, "POP1950": 150, "POP1955": 186, "POP1960": 236, "POP1965": 322, "POP1970": 433, "POP1975": 485, "POP1980": 538, "POP1985": 583, "POP1990": 635, "POP1995": 703, "POP2000": 770, "POP2005": 817, "POP2010": 837, "POP2015": 869, "POP2020": 934, "POP2025": 1011, "POP2050": 1096, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 74.597168, 42.875964 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ 51.437988, 35.675147 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEALT": "Ürümqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102, "MEGANAME": "Ürümqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046, "MAX_POP20": 2066046, "MAX_POP50": 2066046, "MAX_POP300": 2066046, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 361, "MAX_AREAKM": 361, "MIN_AREAMI": 139, "MAX_AREAMI": 139, "MIN_PERKM": 318, "MAX_PERKM": 318, "MIN_PERMI": 198, "MAX_PERMI": 198, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13, "GN_POP": 1508225, "ELEVATION": 0, "GTOPO30": 915, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253, "POP1955": 312, "POP1960": 384, "POP1965": 472, "POP1970": 581, "POP1975": 715, "POP1980": 881, "POP1985": 1029, "POP1990": 1161, "POP1995": 1417, "POP2000": 1730, "POP2005": 2025, "POP2010": 2151, "POP2015": 2340, "POP2020": 2620, "POP2025": 2851, "POP2050": 3038, "CITYALT": "Urumqi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ 87.583008, 43.802819 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Baku", "DIFFASCII": 0, "NAMEASCII": "Baku", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Azerbaijan", "SOV_A3": "AZE", "ADM0NAME": "Azerbaijan", "ADM0_A3": "AZE", "ADM1NAME": "Baki", "ISO_A2": "AZ", "LATITUDE": 40.395272, "LONGITUDE": 49.862217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2122300, "POP_MIN": 1892000, "POP_OTHER": 1518801, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 587084, "MEGANAME": "Baku", "LS_NAME": "Baku", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1581087, "MAX_POP20": 1581475, "MAX_POP50": 1581475, "MAX_POP300": 1581475, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 249, "MIN_AREAMI": 95, "MAX_AREAMI": 96, "MIN_PERKM": 174, "MAX_PERKM": 179, "MIN_PERMI": 108, "MAX_PERMI": 111, "MIN_BBXMIN": 49.7, "MAX_BBXMIN": 49.716667, "MIN_BBXMAX": 50.016667, "MAX_BBXMAX": 50.016667, "MIN_BBYMIN": 40.316667, "MAX_BBYMIN": 40.316667, "MIN_BBYMAX": 40.5, "MAX_BBYMAX": 40.5, "MEAN_BBXC": 49.881373, "MEAN_BBYC": 40.41632, "COMPARE": 0, "GN_ASCII": "Baku", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1116513, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Baku", "GEONAMESNO": "GeoNames match general.", "UN_FID": 200, "UN_ADM0": "Azerbaijan", "UN_LAT": 40.32, "UN_LONG": 49.81, "POP1950": 897, "POP1955": 940, "POP1960": 1005, "POP1965": 1132, "POP1970": 1274, "POP1975": 1429, "POP1980": 1574, "POP1985": 1660, "POP1990": 1733, "POP1995": 1766, "POP2000": 1806, "POP2005": 1867, "POP2010": 1892, "POP2015": 1931, "POP2020": 2006, "POP2025": 2097, "POP2050": 2187, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.396764 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Riyadh", "NAMEALT": "Ar-Riyadh", "DIFFASCII": 0, "NAMEASCII": "Riyadh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Saudi Arabia", "SOV_A3": "SAU", "ADM0NAME": "Saudi Arabia", "ADM0_A3": "SAU", "ADM1NAME": "Ar Riyad", "ISO_A2": "SA", "LATITUDE": 24.640833, "LONGITUDE": 46.772742, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4465000, "POP_MIN": 4205961, "POP_OTHER": 5148778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 108410, "MEGANAME": "Ar-Riyadh", "LS_NAME": "Riyadh", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5322753, "MAX_POP20": 5322753, "MAX_POP50": 5322753, "MAX_POP300": 5322753, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 854, "MAX_AREAKM": 854, "MIN_AREAMI": 330, "MAX_AREAMI": 330, "MIN_PERKM": 459, "MAX_PERKM": 459, "MIN_PERMI": 285, "MAX_PERMI": 285, "MIN_BBXMIN": 46.516667, "MAX_BBXMIN": 46.516667, "MIN_BBXMAX": 46.933333, "MAX_BBXMAX": 46.933333, "MIN_BBYMIN": 24.516667, "MAX_BBYMIN": 24.516667, "MIN_BBYMAX": 24.833333, "MAX_BBYMAX": 24.833333, "MEAN_BBXC": 46.740447, "MEAN_BBYC": 24.678984, "COMPARE": 0, "GN_ASCII": "Riyadh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 4205961, "ELEVATION": 0, "GTOPO30": 618, "TIMEZONE": "Asia/Riyadh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 444, "UN_ADM0": "Saudi Arabia", "UN_LAT": 24.65, "UN_LONG": 46.77, "POP1950": 111, "POP1955": 131, "POP1960": 156, "POP1965": 227, "POP1970": 408, "POP1975": 710, "POP1980": 1055, "POP1985": 1566, "POP1990": 2325, "POP1995": 3035, "POP2000": 3567, "POP2005": 4193, "POP2010": 4465, "POP2015": 4856, "POP2020": 5405, "POP2025": 5866, "POP2050": 6275, "CITYALT": "Riyadh", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ 46.779785, 24.647017 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ 51.437988, 35.675147 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Manama", "DIFFASCII": 0, "NAMEASCII": "Manama", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahrain", "SOV_A3": "BHR", "ADM0NAME": "Bahrain", "ADM0_A3": "BHR", "ISO_A2": "BH", "LATITUDE": 26.236136, "LONGITUDE": 50.583052, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 563920, "POP_MIN": 157474, "POP_OTHER": 563666, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 290340, "LS_NAME": "Manama", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 563920, "MAX_POP20": 563920, "MAX_POP50": 563920, "MAX_POP300": 563920, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 178, "MAX_AREAKM": 178, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 115, "MAX_PERMI": 115, "MIN_BBXMIN": 50.441667, "MAX_BBXMIN": 50.441667, "MIN_BBXMAX": 50.633333, "MAX_BBXMAX": 50.633333, "MIN_BBYMIN": 26.05, "MAX_BBYMIN": 26.05, "MIN_BBYMAX": 26.25, "MAX_BBYMAX": 26.25, "MEAN_BBXC": 50.542529, "MEAN_BBYC": 26.164763, "COMPARE": 0, "GN_ASCII": "Manama", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 147074, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Bahrain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Doha", "DIFFASCII": 0, "NAMEASCII": "Doha", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Qatar", "SOV_A3": "QAT", "ADM0NAME": "Qatar", "ADM0_A3": "QAT", "ADM1NAME": "Ad Dawhah", "ISO_A2": "QA", "LATITUDE": 25.286556, "LONGITUDE": 51.532968, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 1450000, "POP_MIN": 731310, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 290030, "LS_NAME": "Doha", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 731310, "MAX_POP20": 731310, "MAX_POP50": 731310, "MAX_POP300": 731310, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 270, "MAX_AREAKM": 270, "MIN_AREAMI": 104, "MAX_AREAMI": 104, "MIN_PERKM": 205, "MAX_PERKM": 205, "MIN_PERMI": 127, "MAX_PERMI": 127, "MIN_BBXMIN": 51.358333, "MAX_BBXMIN": 51.358333, "MIN_BBXMAX": 51.583333, "MAX_BBXMAX": 51.583333, "MIN_BBYMIN": 25.158333, "MAX_BBYMIN": 25.158333, "MIN_BBYMAX": 25.408333, "MAX_BBYMAX": 25.408333, "MEAN_BBXC": 51.468439, "MEAN_BBYC": 25.281154, "COMPARE": 0, "GN_ASCII": "Doha", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 344939, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Asia/Qatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 51.547852, 25.284438 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Riyadh", "NAMEALT": "Ar-Riyadh", "DIFFASCII": 0, "NAMEASCII": "Riyadh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Saudi Arabia", "SOV_A3": "SAU", "ADM0NAME": "Saudi Arabia", "ADM0_A3": "SAU", "ADM1NAME": "Ar Riyad", "ISO_A2": "SA", "LATITUDE": 24.640833, "LONGITUDE": 46.772742, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4465000, "POP_MIN": 4205961, "POP_OTHER": 5148778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 108410, "MEGANAME": "Ar-Riyadh", "LS_NAME": "Riyadh", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5322753, "MAX_POP20": 5322753, "MAX_POP50": 5322753, "MAX_POP300": 5322753, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 854, "MAX_AREAKM": 854, "MIN_AREAMI": 330, "MAX_AREAMI": 330, "MIN_PERKM": 459, "MAX_PERKM": 459, "MIN_PERMI": 285, "MAX_PERMI": 285, "MIN_BBXMIN": 46.516667, "MAX_BBXMIN": 46.516667, "MIN_BBXMAX": 46.933333, "MAX_BBXMAX": 46.933333, "MIN_BBYMIN": 24.516667, "MAX_BBYMIN": 24.516667, "MIN_BBYMAX": 24.833333, "MAX_BBYMAX": 24.833333, "MEAN_BBXC": 46.740447, "MEAN_BBYC": 24.678984, "COMPARE": 0, "GN_ASCII": "Riyadh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 4205961, "ELEVATION": 0, "GTOPO30": 618, "TIMEZONE": "Asia/Riyadh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 444, "UN_ADM0": "Saudi Arabia", "UN_LAT": 24.65, "UN_LONG": 46.77, "POP1950": 111, "POP1955": 131, "POP1960": 156, "POP1965": 227, "POP1970": 408, "POP1975": 710, "POP1980": 1055, "POP1985": 1566, "POP1990": 2325, "POP1995": 3035, "POP2000": 3567, "POP2005": 4193, "POP2010": 4465, "POP2015": 4856, "POP2020": 5405, "POP2025": 5866, "POP2050": 6275, "CITYALT": "Riyadh", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 650, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 5, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 26.236136, "numnum:min:LATITUDE": 24.640833, "numnum:sum:LATITUDE": 50.876969, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 50.583052, "numnum:min:LONGITUDE": 46.772742, "numnum:sum:LONGITUDE": 97.355794, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 4465000, "numnum:min:POP_MAX": 563920, "numnum:sum:POP_MAX": 5028920, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 4205961, "numnum:min:POP_MIN": 157474, "numnum:sum:POP_MIN": 4363435, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 5148778, "numnum:min:POP_OTHER": 563666, "numnum:sum:POP_OTHER": 5712444, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 290340, "numnum:min:GEONAMEID": 108410, "numnum:sum:GEONAMEID": 398750, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 5322753, "numnum:min:MAX_POP10": 563920, "numnum:sum:MAX_POP10": 5886673, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 5322753, "numnum:min:MAX_POP20": 563920, "numnum:sum:MAX_POP20": 5886673, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 5322753, "numnum:min:MAX_POP50": 563920, "numnum:sum:MAX_POP50": 5886673, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 5322753, "numnum:min:MAX_POP300": 563920, "numnum:sum:MAX_POP300": 5886673, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 854, "numnum:min:MIN_AREAKM": 178, "numnum:sum:MIN_AREAKM": 1032, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 854, "numnum:min:MAX_AREAKM": 178, "numnum:sum:MAX_AREAKM": 1032, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 330, "numnum:min:MIN_AREAMI": 69, "numnum:sum:MIN_AREAMI": 399, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 330, "numnum:min:MAX_AREAMI": 69, "numnum:sum:MAX_AREAMI": 399, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 459, "numnum:min:MIN_PERKM": 184, "numnum:sum:MIN_PERKM": 643, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 459, "numnum:min:MAX_PERKM": 184, "numnum:sum:MAX_PERKM": 643, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 285, "numnum:min:MIN_PERMI": 115, "numnum:sum:MIN_PERMI": 400, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 285, "numnum:min:MAX_PERMI": 115, "numnum:sum:MAX_PERMI": 400, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 50.441667, "numnum:min:MIN_BBXMIN": 46.516667, "numnum:sum:MIN_BBXMIN": 96.95833400000001, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 50.441667, "numnum:min:MAX_BBXMIN": 46.516667, "numnum:sum:MAX_BBXMIN": 96.95833400000001, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 50.633333, "numnum:min:MIN_BBXMAX": 46.933333, "numnum:sum:MIN_BBXMAX": 97.566666, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 50.633333, "numnum:min:MAX_BBXMAX": 46.933333, "numnum:sum:MAX_BBXMAX": 97.566666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 26.05, "numnum:min:MIN_BBYMIN": 24.516667, "numnum:sum:MIN_BBYMIN": 50.566667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 26.05, "numnum:min:MAX_BBYMIN": 24.516667, "numnum:sum:MAX_BBYMIN": 50.566667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 26.25, "numnum:min:MIN_BBYMAX": 24.833333, "numnum:sum:MIN_BBYMAX": 51.083332999999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 26.25, "numnum:min:MAX_BBYMAX": 24.833333, "numnum:sum:MAX_BBYMAX": 51.083332999999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 50.542529, "numnum:min:MEAN_BBXC": 46.740447, "numnum:sum:MEAN_BBXC": 97.282976, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 26.164763, "numnum:min:MEAN_BBYC": 24.678984, "numnum:sum:MEAN_BBYC": 50.843747, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 10, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 12, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 4205961, "numnum:min:GN_POP": 147074, "numnum:sum:GN_POP": 4353035, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 618, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9381, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 444, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 444, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 24.65, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 24.65, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 46.77, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 46.77, "numnum:count:POP1950": 2, "numnum:max:POP1950": 111, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 111, "numnum:count:POP1955": 2, "numnum:max:POP1955": 131, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 131, "numnum:count:POP1960": 2, "numnum:max:POP1960": 156, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 156, "numnum:count:POP1965": 2, "numnum:max:POP1965": 227, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 227, "numnum:count:POP1970": 2, "numnum:max:POP1970": 408, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 408, "numnum:count:POP1975": 2, "numnum:max:POP1975": 710, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 710, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1055, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1055, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1566, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1566, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2325, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2325, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3035, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3035, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3567, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3567, "numnum:count:POP2005": 2, "numnum:max:POP2005": 4193, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4193, "numnum:count:POP2010": 2, "numnum:max:POP2010": 4465, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4465, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4856, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4856, "numnum:count:POP2020": 2, "numnum:max:POP2020": 5405, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5405, "numnum:count:POP2025": 2, "numnum:max:POP2025": 5866, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5866, "numnum:count:POP2050": 2, "numnum:max:POP2050": 6275, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 6275, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ 46.779785, 24.647017 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Dubai", "NAMEPAR": "Dubayy", "DIFFASCII": 0, "NAMEASCII": "Dubai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Dubay", "ISO_A2": "AE", "LATITUDE": 25.229996, "LONGITUDE": 55.279974, "CHANGED": 1, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 1379000, "POP_MIN": 1137347, "POP_OTHER": 1166878, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 292223, "MEGANAME": "Dubayy", "LS_NAME": "Dubayy", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1193251, "MAX_POP20": 2244726, "MAX_POP50": 2244726, "MAX_POP300": 2244726, "MAX_POP310": 2244726, "MAX_NATSCA": 300, "MIN_AREAKM": 187, "MAX_AREAKM": 407, "MIN_AREAMI": 72, "MAX_AREAMI": 157, "MIN_PERKM": 158, "MAX_PERKM": 278, "MIN_PERMI": 98, "MAX_PERMI": 173, "MIN_BBXMIN": 55.175, "MAX_BBXMIN": 55.175, "MIN_BBXMAX": 55.437142, "MAX_BBXMAX": 55.533333, "MIN_BBYMIN": 25.1, "MAX_BBYMIN": 25.1, "MIN_BBYMAX": 25.308333, "MAX_BBYMAX": 25.433333, "MEAN_BBXC": 55.361736, "MEAN_BBYC": 25.258666, "COMPARE": 1, "GN_ASCII": "Dubai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 1137347, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 498, "UN_ADM0": "United Arab Emirates", "UN_LAT": 25.27, "UN_LONG": 55.32, "POP1950": 20, "POP1955": 28, "POP1960": 40, "POP1965": 51, "POP1970": 80, "POP1975": 167, "POP1980": 254, "POP1985": 345, "POP1990": 473, "POP1995": 650, "POP2000": 938, "POP2005": 1272, "POP2010": 1379, "POP2015": 1516, "POP2020": 1709, "POP2025": 1894, "POP2050": 2077, "CITYALT": "Dubai", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.224820 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Doha", "DIFFASCII": 0, "NAMEASCII": "Doha", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Qatar", "SOV_A3": "QAT", "ADM0NAME": "Qatar", "ADM0_A3": "QAT", "ADM1NAME": "Ad Dawhah", "ISO_A2": "QA", "LATITUDE": 25.286556, "LONGITUDE": 51.532968, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 1450000, "POP_MIN": 731310, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 290030, "LS_NAME": "Doha", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 731310, "MAX_POP20": 731310, "MAX_POP50": 731310, "MAX_POP300": 731310, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 270, "MAX_AREAKM": 270, "MIN_AREAMI": 104, "MAX_AREAMI": 104, "MIN_PERKM": 205, "MAX_PERKM": 205, "MIN_PERMI": 127, "MAX_PERMI": 127, "MIN_BBXMIN": 51.358333, "MAX_BBXMIN": 51.358333, "MIN_BBXMAX": 51.583333, "MAX_BBXMAX": 51.583333, "MIN_BBYMIN": 25.158333, "MAX_BBYMIN": 25.158333, "MIN_BBYMAX": 25.408333, "MAX_BBYMAX": 25.408333, "MEAN_BBXC": 51.468439, "MEAN_BBYC": 25.281154, "COMPARE": 0, "GN_ASCII": "Doha", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 344939, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Asia/Qatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 51.547852, 25.284438 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 54.382324, 24.467151 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Dubai", "NAMEPAR": "Dubayy", "DIFFASCII": 0, "NAMEASCII": "Dubai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Dubay", "ISO_A2": "AE", "LATITUDE": 25.229996, "LONGITUDE": 55.279974, "CHANGED": 1, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 1379000, "POP_MIN": 1137347, "POP_OTHER": 1166878, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 292223, "MEGANAME": "Dubayy", "LS_NAME": "Dubayy", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1193251, "MAX_POP20": 2244726, "MAX_POP50": 2244726, "MAX_POP300": 2244726, "MAX_POP310": 2244726, "MAX_NATSCA": 300, "MIN_AREAKM": 187, "MAX_AREAKM": 407, "MIN_AREAMI": 72, "MAX_AREAMI": 157, "MIN_PERKM": 158, "MAX_PERKM": 278, "MIN_PERMI": 98, "MAX_PERMI": 173, "MIN_BBXMIN": 55.175, "MAX_BBXMIN": 55.175, "MIN_BBXMAX": 55.437142, "MAX_BBXMAX": 55.533333, "MIN_BBYMIN": 25.1, "MAX_BBYMIN": 25.1, "MIN_BBYMAX": 25.308333, "MAX_BBYMAX": 25.433333, "MEAN_BBXC": 55.361736, "MEAN_BBYC": 25.258666, "COMPARE": 1, "GN_ASCII": "Dubai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 1137347, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 498, "UN_ADM0": "United Arab Emirates", "UN_LAT": 25.27, "UN_LONG": 55.32, "POP1950": 20, "POP1955": 28, "POP1960": 40, "POP1965": 51, "POP1970": 80, "POP1975": 167, "POP1980": 254, "POP1985": 345, "POP1990": 473, "POP1995": 650, "POP2000": 938, "POP2005": 1272, "POP2010": 1379, "POP2015": 1516, "POP2020": 1709, "POP2025": 1894, "POP2050": 2077, "CITYALT": "Dubai", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.224820 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ashgabat", "DIFFASCII": 0, "NAMEASCII": "Ashgabat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Turkmenistan", "SOV_A3": "TKM", "ADM0NAME": "Turkmenistan", "ADM0_A3": "TKM", "ADM1NAME": "Ahal", "ISO_A2": "TM", "LATITUDE": 37.949995, "LONGITUDE": 58.383299, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 727700, "POP_MIN": 577982, "POP_OTHER": 556048, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 162183, "LS_NAME": "Ashgabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 577982, "MAX_POP20": 589324, "MAX_POP50": 589324, "MAX_POP300": 589324, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 128, "MIN_AREAMI": 42, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 144, "MIN_PERMI": 68, "MAX_PERMI": 90, "MIN_BBXMIN": 58.2, "MAX_BBXMIN": 58.28637, "MIN_BBXMAX": 58.483333, "MAX_BBXMAX": 58.483333, "MIN_BBYMIN": 37.866667, "MAX_BBYMIN": 37.866667, "MIN_BBYMAX": 38.016667, "MAX_BBYMAX": 38.016667, "MEAN_BBXC": 58.371343, "MEAN_BBYC": 37.94619, "COMPARE": 0, "GN_ASCII": "Ashgabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 727700, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Asia/Ashgabat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 58.381348, 37.944198 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 54.382324, 24.467151 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861, "MAX_POP20": 586861, "MAX_POP50": 586861, "MAX_POP300": 586861, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 797000, "ELEVATION": 0, "GTOPO30": 69, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.604262 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ashgabat", "DIFFASCII": 0, "NAMEASCII": "Ashgabat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Turkmenistan", "SOV_A3": "TKM", "ADM0NAME": "Turkmenistan", "ADM0_A3": "TKM", "ADM1NAME": "Ahal", "ISO_A2": "TM", "LATITUDE": 37.949995, "LONGITUDE": 58.383299, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 727700, "POP_MIN": 577982, "POP_OTHER": 556048, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 162183, "LS_NAME": "Ashgabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 577982, "MAX_POP20": 589324, "MAX_POP50": 589324, "MAX_POP300": 589324, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 128, "MIN_AREAMI": 42, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 144, "MIN_PERMI": 68, "MAX_PERMI": 90, "MIN_BBXMIN": 58.2, "MAX_BBXMIN": 58.28637, "MIN_BBXMAX": 58.483333, "MAX_BBXMAX": 58.483333, "MIN_BBYMIN": 37.866667, "MAX_BBYMIN": 37.866667, "MIN_BBYMAX": 38.016667, "MAX_BBYMAX": 38.016667, "MEAN_BBXC": 58.371343, "MEAN_BBYC": 37.94619, "COMPARE": 0, "GN_ASCII": "Ashgabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 727700, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Asia/Ashgabat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 58.381348, 37.944198 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 45.373535, 2.064982 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861, "MAX_POP20": 586861, "MAX_POP50": 586861, "MAX_POP300": 586861, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 797000, "ELEVATION": 0, "GTOPO30": 69, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.604262 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dushanbe", "DIFFASCII": 0, "NAMEASCII": "Dushanbe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tajikistan", "SOV_A3": "TJK", "ADM0NAME": "Tajikistan", "ADM0_A3": "TJK", "ADM1NAME": "Tadzhikistan Territories", "ISO_A2": "TJ", "LATITUDE": 38.560035, "LONGITUDE": 68.773879, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1086244, "POP_MIN": 679400, "POP_OTHER": 1081361, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 1221874, "LS_NAME": "Dushanbe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1086244, "MAX_POP20": 1086244, "MAX_POP50": 1086244, "MAX_POP300": 1086244, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 415, "MAX_AREAKM": 415, "MIN_AREAMI": 160, "MAX_AREAMI": 160, "MIN_PERKM": 411, "MAX_PERKM": 411, "MIN_PERMI": 255, "MAX_PERMI": 255, "MIN_BBXMIN": 68.641667, "MAX_BBXMIN": 68.641667, "MIN_BBXMAX": 69.15, "MAX_BBXMAX": 69.15, "MIN_BBYMIN": 38.416667, "MAX_BBYMIN": 38.416667, "MIN_BBYMAX": 38.675, "MAX_BBYMAX": 38.675, "MEAN_BBXC": 68.864837, "MEAN_BBYC": 38.542754, "COMPARE": 0, "GN_ASCII": "Dushanbe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 543107, "ELEVATION": 0, "GTOPO30": 808, "TIMEZONE": "Asia/Dushanbe", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 68.774414, 38.548165 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 45.373535, 2.064982 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kabul", "DIFFASCII": 0, "NAMEASCII": "Kabul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Afghanistan", "SOV_A3": "AFG", "ADM0NAME": "Afghanistan", "ADM0_A3": "AFG", "ADM1NAME": "Kabul", "ISO_A2": "AF", "LATITUDE": 34.51669, "LONGITUDE": 69.18326, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3277000, "POP_MIN": 3043532, "POP_OTHER": 3475519, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1138958, "MEGANAME": "Kabul", "LS_NAME": "Kabul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3720671, "MAX_POP20": 3720671, "MAX_POP50": 4803365, "MAX_POP300": 4793793, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 1471, "MIN_AREAMI": 229, "MAX_AREAMI": 568, "MIN_PERKM": 409, "MAX_PERKM": 1100, "MIN_PERMI": 254, "MAX_PERMI": 683, "MIN_BBXMIN": 68.866667, "MAX_BBXMIN": 68.866667, "MIN_BBXMAX": 69.308333, "MAX_BBXMAX": 69.783333, "MIN_BBYMIN": 34.433333, "MAX_BBYMIN": 34.433333, "MIN_BBYMAX": 34.768813, "MAX_BBYMAX": 35.166667, "MEAN_BBXC": 69.144173, "MEAN_BBYC": 34.688498, "COMPARE": 0, "GN_ASCII": "Kabul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 3043532, "ELEVATION": 0, "GTOPO30": 1808, "TIMEZONE": "Asia/Kabul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 320, "UN_ADM0": "Afghanistan", "UN_LAT": 34.53, "UN_LONG": 69.13, "POP1950": 129, "POP1955": 184, "POP1960": 263, "POP1965": 369, "POP1970": 472, "POP1975": 674, "POP1980": 978, "POP1985": 1160, "POP1990": 1306, "POP1995": 1616, "POP2000": 1963, "POP2005": 2994, "POP2010": 3277, "POP2015": 3768, "POP2020": 4730, "POP2025": 5836, "POP2050": 7175, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ 69.191895, 34.506557 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dushanbe", "DIFFASCII": 0, "NAMEASCII": "Dushanbe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tajikistan", "SOV_A3": "TJK", "ADM0NAME": "Tajikistan", "ADM0_A3": "TJK", "ADM1NAME": "Tadzhikistan Territories", "ISO_A2": "TJ", "LATITUDE": 38.560035, "LONGITUDE": 68.773879, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1086244, "POP_MIN": 679400, "POP_OTHER": 1081361, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 1221874, "LS_NAME": "Dushanbe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1086244, "MAX_POP20": 1086244, "MAX_POP50": 1086244, "MAX_POP300": 1086244, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 415, "MAX_AREAKM": 415, "MIN_AREAMI": 160, "MAX_AREAMI": 160, "MIN_PERKM": 411, "MAX_PERKM": 411, "MIN_PERMI": 255, "MAX_PERMI": 255, "MIN_BBXMIN": 68.641667, "MAX_BBXMIN": 68.641667, "MIN_BBXMAX": 69.15, "MAX_BBXMAX": 69.15, "MIN_BBYMIN": 38.416667, "MAX_BBYMIN": 38.416667, "MIN_BBYMAX": 38.675, "MAX_BBYMAX": 38.675, "MEAN_BBXC": 68.864837, "MEAN_BBYC": 38.542754, "COMPARE": 0, "GN_ASCII": "Dushanbe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 543107, "ELEVATION": 0, "GTOPO30": 808, "TIMEZONE": "Asia/Dushanbe", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 68.774414, 38.548165 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356, "MAX_POP20": 742356, "MAX_POP50": 7482035, "MAX_POP300": 7482969, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 772, "MAX_AREAKM": 5463, "MIN_AREAMI": 298, "MAX_AREAMI": 2109, "MIN_PERKM": 545, "MAX_PERKM": 4154, "MIN_PERMI": 339, "MAX_PERMI": 2581, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 601600, "ELEVATION": 0, "GTOPO30": 497, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36, "POP1955": 41, "POP1960": 45, "POP1965": 56, "POP1970": 70, "POP1975": 107, "POP1980": 189, "POP1985": 260, "POP1990": 343, "POP1995": 452, "POP2000": 594, "POP2005": 732, "POP2010": 780, "POP2015": 851, "POP2020": 988, "POP2025": 1148, "POP2050": 1320, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kabul", "DIFFASCII": 0, "NAMEASCII": "Kabul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Afghanistan", "SOV_A3": "AFG", "ADM0NAME": "Afghanistan", "ADM0_A3": "AFG", "ADM1NAME": "Kabul", "ISO_A2": "AF", "LATITUDE": 34.51669, "LONGITUDE": 69.18326, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3277000, "POP_MIN": 3043532, "POP_OTHER": 3475519, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1138958, "MEGANAME": "Kabul", "LS_NAME": "Kabul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3720671, "MAX_POP20": 3720671, "MAX_POP50": 4803365, "MAX_POP300": 4793793, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 1471, "MIN_AREAMI": 229, "MAX_AREAMI": 568, "MIN_PERKM": 409, "MAX_PERKM": 1100, "MIN_PERMI": 254, "MAX_PERMI": 683, "MIN_BBXMIN": 68.866667, "MAX_BBXMIN": 68.866667, "MIN_BBXMAX": 69.308333, "MAX_BBXMAX": 69.783333, "MIN_BBYMIN": 34.433333, "MAX_BBYMIN": 34.433333, "MIN_BBYMAX": 34.768813, "MAX_BBYMAX": 35.166667, "MEAN_BBXC": 69.144173, "MEAN_BBYC": 34.688498, "COMPARE": 0, "GN_ASCII": "Kabul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 3043532, "ELEVATION": 0, "GTOPO30": 1808, "TIMEZONE": "Asia/Kabul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 320, "UN_ADM0": "Afghanistan", "UN_LAT": 34.53, "UN_LONG": 69.13, "POP1950": 129, "POP1955": 184, "POP1960": 263, "POP1965": 369, "POP1970": 472, "POP1975": 674, "POP1980": 978, "POP1985": 1160, "POP1990": 1306, "POP1995": 1616, "POP2000": 1963, "POP2005": 2994, "POP2010": 3277, "POP2015": 3768, "POP2020": 4730, "POP2025": 5836, "POP2050": 7175, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ 69.191895, 34.506557 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.594169 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356, "MAX_POP20": 742356, "MAX_POP50": 7482035, "MAX_POP300": 7482969, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 772, "MAX_AREAKM": 5463, "MIN_AREAMI": 298, "MAX_AREAMI": 2109, "MIN_PERKM": 545, "MAX_PERKM": 4154, "MIN_PERMI": 339, "MAX_PERMI": 2581, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 601600, "ELEVATION": 0, "GTOPO30": 497, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36, "POP1955": 41, "POP1960": 45, "POP1965": 56, "POP1970": 70, "POP1975": 107, "POP1980": 189, "POP1985": 260, "POP1990": 343, "POP1995": 452, "POP2000": 594, "POP2005": 732, "POP2010": 780, "POP2015": 851, "POP2020": 988, "POP2025": 1148, "POP2050": 1320, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 85.319824, 27.722436 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.594169 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 85.319824, 27.722436 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Mumbai", "NAMEPAR": "Bombay", "DIFFASCII": 0, "NAMEASCII": "Mumbai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Maharashtra", "ISO_A2": "IN", "LATITUDE": 19.01699, "LONGITUDE": 72.856989, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 18978000, "POP_MIN": 12691836, "POP_OTHER": 12426085, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1275339, "MEGANAME": "Mumbai", "LS_NAME": "Mumbai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12814908, "MAX_POP20": 20149761, "MAX_POP50": 20149761, "MAX_POP300": 20149761, "MAX_POP310": 20149761, "MAX_NATSCA": 300, "MIN_AREAKM": 442, "MAX_AREAKM": 1479, "MIN_AREAMI": 171, "MAX_AREAMI": 571, "MIN_PERKM": 244, "MAX_PERKM": 1021, "MIN_PERMI": 152, "MAX_PERMI": 634, "MIN_BBXMIN": 72.758333, "MAX_BBXMIN": 72.775, "MIN_BBXMAX": 72.983154, "MAX_BBXMAX": 73.266667, "MIN_BBYMIN": 18.891667, "MAX_BBYMIN": 18.891667, "MIN_BBYMAX": 19.308333, "MAX_BBYMAX": 19.491667, "MEAN_BBXC": 72.959776, "MEAN_BBYC": 19.189154, "COMPARE": 0, "GN_ASCII": "Mumbai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 16, "GN_POP": 12691836, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 253, "UN_ADM0": "India", "UN_LAT": 19.07, "UN_LONG": 72.82, "POP1950": 2857, "POP1955": 3432, "POP1960": 4060, "POP1965": 4854, "POP1970": 5811, "POP1975": 7082, "POP1980": 8658, "POP1985": 10341, "POP1990": 12308, "POP1995": 14111, "POP2000": 16086, "POP2005": 18202, "POP2010": 18978, "POP2015": 20072, "POP2020": 21946, "POP2025": 24051, "POP2050": 26385, "CITYALT": "Bombay", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ 72.861328, 19.020577 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Bangalore", "NAMEALT": "Bengaluru", "DIFFASCII": 0, "NAMEASCII": "Bangalore", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Karnataka", "ISO_A2": "IN", "LATITUDE": 12.969995, "LONGITUDE": 77.56001, "CHANGED": 3, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 6787000, "POP_MIN": 5104047, "POP_OTHER": 8102712, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1277333, "MEGANAME": "Bangalore", "LS_NAME": "Bangalore", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8181096, "MAX_POP20": 8181096, "MAX_POP50": 8553953, "MAX_POP300": 8553953, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2443, "MAX_AREAKM": 2836, "MIN_AREAMI": 943, "MAX_AREAMI": 1095, "MIN_PERKM": 1908, "MAX_PERKM": 2412, "MIN_PERMI": 1186, "MAX_PERMI": 1499, "MIN_BBXMIN": 77.275, "MAX_BBXMIN": 77.275, "MIN_BBXMAX": 77.996673, "MAX_BBXMAX": 78.15, "MIN_BBYMIN": 12.325, "MAX_BBYMIN": 12.325, "MIN_BBYMAX": 13.333333, "MAX_BBYMAX": 13.333333, "MEAN_BBXC": 77.703019, "MEAN_BBYC": 12.841733, "COMPARE": 1, "GN_ASCII": "Bengaluru", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 5104047, "ELEVATION": 920, "GTOPO30": 914, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 219, "UN_ADM0": "India", "UN_LAT": 12.97, "UN_LONG": 77.58, "POP1950": 746, "POP1955": 939, "POP1960": 1166, "POP1965": 1377, "POP1970": 1615, "POP1975": 2111, "POP1980": 2812, "POP1985": 3395, "POP1990": 4036, "POP1995": 4744, "POP2000": 5567, "POP2005": 6465, "POP2010": 6787, "POP2015": 7229, "POP2020": 7967, "POP2025": 8795, "POP2050": 9719, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.961736 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Mumbai", "NAMEPAR": "Bombay", "DIFFASCII": 0, "NAMEASCII": "Mumbai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Maharashtra", "ISO_A2": "IN", "LATITUDE": 19.01699, "LONGITUDE": 72.856989, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 18978000, "POP_MIN": 12691836, "POP_OTHER": 12426085, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1275339, "MEGANAME": "Mumbai", "LS_NAME": "Mumbai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12814908, "MAX_POP20": 20149761, "MAX_POP50": 20149761, "MAX_POP300": 20149761, "MAX_POP310": 20149761, "MAX_NATSCA": 300, "MIN_AREAKM": 442, "MAX_AREAKM": 1479, "MIN_AREAMI": 171, "MAX_AREAMI": 571, "MIN_PERKM": 244, "MAX_PERKM": 1021, "MIN_PERMI": 152, "MAX_PERMI": 634, "MIN_BBXMIN": 72.758333, "MAX_BBXMIN": 72.775, "MIN_BBXMAX": 72.983154, "MAX_BBXMAX": 73.266667, "MIN_BBYMIN": 18.891667, "MAX_BBYMIN": 18.891667, "MIN_BBYMAX": 19.308333, "MAX_BBYMAX": 19.491667, "MEAN_BBXC": 72.959776, "MEAN_BBYC": 19.189154, "COMPARE": 0, "GN_ASCII": "Mumbai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 16, "GN_POP": 12691836, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 253, "UN_ADM0": "India", "UN_LAT": 19.07, "UN_LONG": 72.82, "POP1950": 2857, "POP1955": 3432, "POP1960": 4060, "POP1965": 4854, "POP1970": 5811, "POP1975": 7082, "POP1980": 8658, "POP1985": 10341, "POP1990": 12308, "POP1995": 14111, "POP2000": 16086, "POP2005": 18202, "POP2010": 18978, "POP2015": 20072, "POP2020": 21946, "POP2025": 24051, "POP2050": 26385, "CITYALT": "Bombay", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 1, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 900, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 1, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 2, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 19.01699, "numnum:min:LATITUDE": 12.969995, "numnum:sum:LATITUDE": 31.986985, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 77.56001, "numnum:min:LONGITUDE": 72.856989, "numnum:sum:LONGITUDE": 150.416999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 3, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 3, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 18978000, "numnum:min:POP_MAX": 6787000, "numnum:sum:POP_MAX": 25765000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 12691836, "numnum:min:POP_MIN": 5104047, "numnum:sum:POP_MIN": 17795883, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 12426085, "numnum:min:POP_OTHER": 8102712, "numnum:sum:POP_OTHER": 20528797, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 13, "numnum:sum:RANK_MAX": 27, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 13, "numnum:sum:RANK_MIN": 27, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1277333, "numnum:min:GEONAMEID": 1275339, "numnum:sum:GEONAMEID": 2552672, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 12814908, "numnum:min:MAX_POP10": 8181096, "numnum:sum:MAX_POP10": 20996004, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 20149761, "numnum:min:MAX_POP20": 8181096, "numnum:sum:MAX_POP20": 28330857, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 20149761, "numnum:min:MAX_POP50": 8553953, "numnum:sum:MAX_POP50": 28703714, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 20149761, "numnum:min:MAX_POP300": 8553953, "numnum:sum:MAX_POP300": 28703714, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 20149761, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 20149761, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 2443, "numnum:min:MIN_AREAKM": 442, "numnum:sum:MIN_AREAKM": 2885, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2836, "numnum:min:MAX_AREAKM": 1479, "numnum:sum:MAX_AREAKM": 4315, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 943, "numnum:min:MIN_AREAMI": 171, "numnum:sum:MIN_AREAMI": 1114, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1095, "numnum:min:MAX_AREAMI": 571, "numnum:sum:MAX_AREAMI": 1666, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 1908, "numnum:min:MIN_PERKM": 244, "numnum:sum:MIN_PERKM": 2152, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 2412, "numnum:min:MAX_PERKM": 1021, "numnum:sum:MAX_PERKM": 3433, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 1186, "numnum:min:MIN_PERMI": 152, "numnum:sum:MIN_PERMI": 1338, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1499, "numnum:min:MAX_PERMI": 634, "numnum:sum:MAX_PERMI": 2133, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 77.275, "numnum:min:MIN_BBXMIN": 72.758333, "numnum:sum:MIN_BBXMIN": 150.033333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 77.275, "numnum:min:MAX_BBXMIN": 72.775, "numnum:sum:MAX_BBXMIN": 150.05, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 77.996673, "numnum:min:MIN_BBXMAX": 72.983154, "numnum:sum:MIN_BBXMAX": 150.979827, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 78.15, "numnum:min:MAX_BBXMAX": 73.266667, "numnum:sum:MAX_BBXMAX": 151.41666700000003, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 18.891667, "numnum:min:MIN_BBYMIN": 12.325, "numnum:sum:MIN_BBYMIN": 31.216667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 18.891667, "numnum:min:MAX_BBYMIN": 12.325, "numnum:sum:MAX_BBYMIN": 31.216667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 19.308333, "numnum:min:MIN_BBYMAX": 13.333333, "numnum:sum:MIN_BBYMAX": 32.641666, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 19.491667, "numnum:min:MAX_BBYMAX": 13.333333, "numnum:sum:MAX_BBYMAX": 32.825, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 77.703019, "numnum:min:MEAN_BBXC": 72.959776, "numnum:sum:MEAN_BBXC": 150.66279500000003, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 19.189154, "numnum:min:MEAN_BBYC": 12.841733, "numnum:sum:MEAN_BBYC": 32.030887, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 19, "numnum:min:ADMIN1_COD": 16, "numnum:sum:ADMIN1_COD": 35, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 12691836, "numnum:min:GN_POP": 5104047, "numnum:sum:GN_POP": 17795883, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 920, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 920, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 914, "numnum:min:GTOPO30": 12, "numnum:sum:GTOPO30": 926, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 253, "numnum:min:UN_FID": 219, "numnum:sum:UN_FID": 472, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 19.07, "numnum:min:UN_LAT": 12.97, "numnum:sum:UN_LAT": 32.04, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 77.58, "numnum:min:UN_LONG": 72.82, "numnum:sum:UN_LONG": 150.39999999999999, "numnum:count:POP1950": 2, "numnum:max:POP1950": 2857, "numnum:min:POP1950": 746, "numnum:sum:POP1950": 3603, "numnum:count:POP1955": 2, "numnum:max:POP1955": 3432, "numnum:min:POP1955": 939, "numnum:sum:POP1955": 4371, "numnum:count:POP1960": 2, "numnum:max:POP1960": 4060, "numnum:min:POP1960": 1166, "numnum:sum:POP1960": 5226, "numnum:count:POP1965": 2, "numnum:max:POP1965": 4854, "numnum:min:POP1965": 1377, "numnum:sum:POP1965": 6231, "numnum:count:POP1970": 2, "numnum:max:POP1970": 5811, "numnum:min:POP1970": 1615, "numnum:sum:POP1970": 7426, "numnum:count:POP1975": 2, "numnum:max:POP1975": 7082, "numnum:min:POP1975": 2111, "numnum:sum:POP1975": 9193, "numnum:count:POP1980": 2, "numnum:max:POP1980": 8658, "numnum:min:POP1980": 2812, "numnum:sum:POP1980": 11470, "numnum:count:POP1985": 2, "numnum:max:POP1985": 10341, "numnum:min:POP1985": 3395, "numnum:sum:POP1985": 13736, "numnum:count:POP1990": 2, "numnum:max:POP1990": 12308, "numnum:min:POP1990": 4036, "numnum:sum:POP1990": 16344, "numnum:count:POP1995": 2, "numnum:max:POP1995": 14111, "numnum:min:POP1995": 4744, "numnum:sum:POP1995": 18855, "numnum:count:POP2000": 2, "numnum:max:POP2000": 16086, "numnum:min:POP2000": 5567, "numnum:sum:POP2000": 21653, "numnum:count:POP2005": 2, "numnum:max:POP2005": 18202, "numnum:min:POP2005": 6465, "numnum:sum:POP2005": 24667, "numnum:count:POP2010": 2, "numnum:max:POP2010": 18978, "numnum:min:POP2010": 6787, "numnum:sum:POP2010": 25765, "numnum:count:POP2015": 2, "numnum:max:POP2015": 20072, "numnum:min:POP2015": 7229, "numnum:sum:POP2015": 27301, "numnum:count:POP2020": 2, "numnum:max:POP2020": 21946, "numnum:min:POP2020": 7967, "numnum:sum:POP2020": 29913, "numnum:count:POP2025": 2, "numnum:max:POP2025": 24051, "numnum:min:POP2025": 8795, "numnum:sum:POP2025": 32846, "numnum:count:POP2050": 2, "numnum:max:POP2050": 26385, "numnum:min:POP2050": 9719, "numnum:sum:POP2050": 36104, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ 72.861328, 19.020577 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Male", "DIFFASCII": 0, "NAMEASCII": "Male", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Maldives", "SOV_A3": "MDV", "ADM0NAME": "Maldives", "ADM0_A3": "MDV", "ISO_A2": "MV", "LATITUDE": 4.166708, "LONGITUDE": 73.499947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 112927, "POP_MIN": 103693, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3174186, "LS_NAME": "Male", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 112927, "MAX_POP20": 112927, "MAX_POP50": 112927, "MAX_POP300": 112927, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 73.5, "MAX_BBXMIN": 73.5, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.516667, "MIN_BBYMIN": 4.166667, "MAX_BBYMIN": 4.166667, "MIN_BBYMAX": 4.183333, "MAX_BBYMAX": 4.183333, "MEAN_BBXC": 73.508333, "MEAN_BBYC": 4.175, "COMPARE": 0, "GN_ASCII": "Male", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 17, "GN_POP": 2138, "ELEVATION": 0, "GTOPO30": 672, "TIMEZONE": "Europe/Rome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.171115 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Male", "DIFFASCII": 0, "NAMEASCII": "Male", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Maldives", "SOV_A3": "MDV", "ADM0NAME": "Maldives", "ADM0_A3": "MDV", "ISO_A2": "MV", "LATITUDE": 4.166708, "LONGITUDE": 73.499947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 112927, "POP_MIN": 103693, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3174186, "LS_NAME": "Male", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 112927, "MAX_POP20": 112927, "MAX_POP50": 112927, "MAX_POP300": 112927, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 73.5, "MAX_BBXMIN": 73.5, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.516667, "MIN_BBYMIN": 4.166667, "MAX_BBYMIN": 4.166667, "MIN_BBYMAX": 4.183333, "MAX_BBYMAX": 4.183333, "MEAN_BBXC": 73.508333, "MEAN_BBYC": 4.175, "COMPARE": 0, "GN_ASCII": "Male", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 17, "GN_POP": 2138, "ELEVATION": 0, "GTOPO30": 672, "TIMEZONE": "Europe/Rome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.171115 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Colombo", "DIFFASCII": 0, "NAMEASCII": "Colombo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.931966, "LONGITUDE": 79.857751, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 217000, "POP_MIN": 217000, "POP_OTHER": 2490974, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3465927, "LS_NAME": "Colombo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2664418, "MAX_POP20": 2742979, "MAX_POP50": 2742979, "MAX_POP300": 9759831, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1054, "MAX_AREAKM": 6238, "MIN_AREAMI": 407, "MAX_AREAMI": 2408, "MIN_PERKM": 847, "MAX_PERKM": 5343, "MIN_PERMI": 526, "MAX_PERMI": 3320, "MIN_BBXMIN": 79.8, "MAX_BBXMIN": 79.8, "MIN_BBXMAX": 80.097553, "MAX_BBXMAX": 80.833333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.854447, "MIN_BBYMAX": 7.633333, "MAX_BBYMAX": 7.8, "MEAN_BBXC": 79.996849, "MEAN_BBYC": 7.222799, "COMPARE": 0, "GN_ASCII": "Colombo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 18, "GN_POP": 217000, "ELEVATION": 0, "GTOPO30": 927, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ 79.870605, 6.926427 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Colombo", "DIFFASCII": 0, "NAMEASCII": "Colombo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.931966, "LONGITUDE": 79.857751, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 217000, "POP_MIN": 217000, "POP_OTHER": 2490974, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3465927, "LS_NAME": "Colombo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2664418, "MAX_POP20": 2742979, "MAX_POP50": 2742979, "MAX_POP300": 9759831, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1054, "MAX_AREAKM": 6238, "MIN_AREAMI": 407, "MAX_AREAMI": 2408, "MIN_PERKM": 847, "MAX_PERKM": 5343, "MIN_PERMI": 526, "MAX_PERMI": 3320, "MIN_BBXMIN": 79.8, "MAX_BBXMIN": 79.8, "MIN_BBXMAX": 80.097553, "MAX_BBXMAX": 80.833333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.854447, "MIN_BBYMAX": 7.633333, "MAX_BBYMAX": 7.8, "MEAN_BBXC": 79.996849, "MEAN_BBYC": 7.222799, "COMPARE": 0, "GN_ASCII": "Colombo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 18, "GN_POP": 217000, "ELEVATION": 0, "GTOPO30": 927, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 79.870605, 6.926427 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } ] } ] } , @@ -770,7 +738,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.559294 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.559294 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Moresby", "DIFFASCII": 0, "NAMEASCII": "Port Moresby", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Papua New Guinea", "SOV_A3": "PNG", "ADM0NAME": "Papua New Guinea", "ADM0_A3": "PNG", "ADM1NAME": "Central", "ISO_A2": "PG", "LATITUDE": -9.464708, "LONGITUDE": 147.192504, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 283733, "POP_MIN": 251136, "POP_OTHER": 251304, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2088122, "LS_NAME": "Port Moresby", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 251136, "MAX_POP20": 251136, "MAX_POP50": 251136, "MAX_POP300": 251136, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": 147.141667, "MAX_BBXMIN": 147.141667, "MIN_BBXMAX": 147.241667, "MAX_BBXMAX": 147.241667, "MIN_BBYMIN": -9.508333, "MAX_BBYMIN": -9.508333, "MIN_BBYMAX": -9.358333, "MAX_BBYMAX": -9.358333, "MEAN_BBXC": 147.185377, "MEAN_BBYC": -9.433491, "COMPARE": 0, "GN_ASCII": "Port Moresby", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 283733, "ELEVATION": 0, "GTOPO30": 50, "TIMEZONE": "Pacific/Port_Moresby", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.470736 ] } } , @@ -784,9 +752,9 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Vila", "DIFFASCII": 0, "NAMEASCII": "Port-Vila", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Vanuatu", "SOV_A3": "VUT", "ADM0NAME": "Vanuatu", "ADM0_A3": "VUT", "ADM1NAME": "Shefa", "ISO_A2": "VU", "LATITUDE": -17.73335, "LONGITUDE": 168.316641, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 44040, "POP_MIN": 35901, "POP_OTHER": 7702, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2135171, "LS_NAME": "Port-Vila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7702, "MAX_POP20": 7702, "MAX_POP50": 7702, "MAX_POP300": 7702, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": 168.3, "MAX_BBXMIN": 168.3, "MIN_BBXMAX": 168.325, "MAX_BBXMAX": 168.325, "MIN_BBYMIN": -17.758333, "MAX_BBYMIN": -17.758333, "MIN_BBYMAX": -17.708333, "MAX_BBYMAX": -17.708333, "MEAN_BBXC": 168.3125, "MEAN_BBYC": -17.728125, "COMPARE": 0, "GN_ASCII": "Port-Vila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 35901, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Pacific/Efate", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 168.332520, -17.748687 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 179.230957, -8.515836 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 179.230957, -8.515836 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.145852 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.145852 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Auckland", "DIFFASCII": 0, "NAMEASCII": "Auckland", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Auckland", "ISO_A2": "NZ", "LATITUDE": -36.850013, "LONGITUDE": 174.764981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1245000, "POP_MIN": 274020, "POP_OTHER": 243794, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 2193733, "MEGANAME": "Auckland", "LS_NAME": "Auckland", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274020, "MAX_POP20": 354233, "MAX_POP50": 350364, "MAX_POP300": 638000, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 169, "MAX_AREAKM": 399, "MIN_AREAMI": 65, "MAX_AREAMI": 154, "MIN_PERKM": 105, "MAX_PERKM": 266, "MIN_PERMI": 65, "MAX_PERMI": 166, "MIN_BBXMIN": 174.583333, "MAX_BBXMIN": 174.657483, "MIN_BBXMAX": 174.883333, "MAX_BBXMAX": 174.983333, "MIN_BBYMIN": -37.091667, "MAX_BBYMIN": -36.964958, "MIN_BBYMAX": -36.825, "MAX_BBYMAX": -36.8, "MEAN_BBXC": 174.755045, "MEAN_BBYC": -36.896818, "COMPARE": 0, "GN_ASCII": "Auckland", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 417910, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Pacific/Auckland", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 381, "UN_ADM0": "New Zealand", "UN_LAT": -36.9, "UN_LONG": 174.76, "POP1950": 319, "POP1955": 387, "POP1960": 440, "POP1965": 532, "POP1970": 635, "POP1975": 729, "POP1980": 774, "POP1985": 812, "POP1990": 870, "POP1995": 976, "POP2000": 1063, "POP2005": 1189, "POP2010": 1245, "POP2015": 1321, "POP2020": 1398, "POP2025": 1441, "POP2050": 1475, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -36.844461 ] } } , @@ -796,59 +764,55 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.916342 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.916342 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Chengdu", "DIFFASCII": 0, "NAMEASCII": "Chengdu", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Sichuan", "ISO_A2": "CN", "LATITUDE": 30.67, "LONGITUDE": 104.070019, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4123000, "POP_MIN": 3950437, "POP_OTHER": 11622929, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1815286, "MEGANAME": "Chengdu", "LS_NAME": "Chengdu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9954810, "MAX_POP20": 11359674, "MAX_POP50": 24374217, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 5912, "MAX_AREAKM": 24244, "MIN_AREAMI": 2283, "MAX_AREAMI": 9361, "MIN_PERKM": 2296, "MAX_PERKM": 11900, "MIN_PERMI": 1427, "MAX_PERMI": 7394, "MIN_BBXMIN": 103.125, "MAX_BBXMIN": 103.383333, "MIN_BBXMAX": 104.433333, "MAX_BBXMAX": 105.375, "MIN_BBYMIN": 28.738768, "MAX_BBYMIN": 30.065456, "MIN_BBYMAX": 31.083333, "MAX_BBYMAX": 31.341667, "MEAN_BBXC": 104.039242, "MEAN_BBYC": 30.486458, "COMPARE": 0, "GN_ASCII": "Chengdu", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 3950437, "ELEVATION": 0, "GTOPO30": 529, "TIMEZONE": "Asia/Chongqing", "GEONAMESNO": "GeoNames match general.", "UN_FID": 31, "UN_ADM0": "China", "UN_LAT": 30.67, "UN_LONG": 104.07, "POP1950": 768, "POP1955": 922, "POP1960": 1106, "POP1965": 1327, "POP1970": 1592, "POP1975": 1911, "POP1980": 2293, "POP1985": 2639, "POP1990": 2955, "POP1995": 3403, "POP2000": 3919, "POP2005": 4065, "POP2010": 4123, "POP2015": 4266, "POP2020": 4634, "POP2025": 5014, "POP2050": 5320, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 104.084473, 30.675715 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 96.130371, 19.766704 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Chengdu", "DIFFASCII": 0, "NAMEASCII": "Chengdu", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Sichuan", "ISO_A2": "CN", "LATITUDE": 30.67, "LONGITUDE": 104.070019, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4123000, "POP_MIN": 3950437, "POP_OTHER": 11622929, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1815286, "MEGANAME": "Chengdu", "LS_NAME": "Chengdu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9954810, "MAX_POP20": 11359674, "MAX_POP50": 24374217, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 5912, "MAX_AREAKM": 24244, "MIN_AREAMI": 2283, "MAX_AREAMI": 9361, "MIN_PERKM": 2296, "MAX_PERKM": 11900, "MIN_PERMI": 1427, "MAX_PERMI": 7394, "MIN_BBXMIN": 103.125, "MAX_BBXMIN": 103.383333, "MIN_BBXMAX": 104.433333, "MAX_BBXMAX": 105.375, "MIN_BBYMIN": 28.738768, "MAX_BBYMIN": 30.065456, "MIN_BBYMAX": 31.083333, "MAX_BBYMAX": 31.341667, "MEAN_BBXC": 104.039242, "MEAN_BBYC": 30.486458, "COMPARE": 0, "GN_ASCII": "Chengdu", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 3950437, "ELEVATION": 0, "GTOPO30": 529, "TIMEZONE": "Asia/Chongqing", "GEONAMESNO": "GeoNames match general.", "UN_FID": 31, "UN_ADM0": "China", "UN_LAT": 30.67, "UN_LONG": 104.07, "POP1950": 768, "POP1955": 922, "POP1960": 1106, "POP1965": 1327, "POP1970": 1592, "POP1975": 1911, "POP1980": 2293, "POP1985": 2639, "POP1990": 2955, "POP1995": 3403, "POP2000": 3919, "POP2005": 4065, "POP2010": 4123, "POP2015": 4266, "POP2020": 4634, "POP2025": 5014, "POP2050": 5320, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 104.084473, 30.675715 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "Former capital", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820, "MAX_POP20": 3301820, "MAX_POP50": 3301820, "MAX_POP300": 3301820, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 199, "MAX_PERKM": 199, "MIN_PERMI": 123, "MAX_PERMI": 123, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 4477638, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302, "POP1955": 1440, "POP1960": 1592, "POP1965": 1760, "POP1970": 1946, "POP1975": 2151, "POP1980": 2378, "POP1985": 2629, "POP1990": 2907, "POP1995": 3213, "POP2000": 3553, "POP2005": 3928, "POP2010": 4088, "POP2015": 4348, "POP2020": 4841, "POP2025": 5361, "POP2050": 5869, "CITYALT": "Rangoon", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 96.130371, 19.766704 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bangkok", "NAMEALT": "Krung Thep", "DIFFASCII": 0, "NAMEASCII": "Bangkok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Thailand", "SOV_A3": "THA", "ADM0NAME": "Thailand", "ADM0_A3": "THA", "ADM1NAME": "Bangkok Metropolis", "ISO_A2": "TH", "LATITUDE": 13.749999, "LONGITUDE": 100.516645, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 6704000, "POP_MIN": 5104476, "POP_OTHER": 5082758, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1609350, "MEGANAME": "Krung Thep", "LS_NAME": "Bangkok", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5323600, "MAX_POP20": 8823534, "MAX_POP50": 9210939, "MAX_POP300": 9206246, "MAX_POP310": 9206246, "MAX_NATSCA": 300, "MIN_AREAKM": 815, "MAX_AREAKM": 2350, "MIN_AREAMI": 315, "MAX_AREAMI": 908, "MIN_PERKM": 280, "MAX_PERKM": 1354, "MIN_PERMI": 174, "MAX_PERMI": 841, "MIN_BBXMIN": 99.991667, "MAX_BBXMIN": 100.216667, "MIN_BBXMAX": 100.844293, "MAX_BBXMAX": 101.016667, "MIN_BBYMIN": 13.5, "MAX_BBYMIN": 13.516667, "MIN_BBYMAX": 13.872295, "MAX_BBYMAX": 14.158333, "MEAN_BBXC": 100.545047, "MEAN_BBYC": 13.761017, "COMPARE": 0, "GN_ASCII": "Bangkok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 5104476, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Bangkok", "GEONAMESNO": "GeoNames match general.", "UN_FID": 496, "UN_ADM0": "Thailand", "UN_LAT": 13.75, "UN_LONG": 100.51, "POP1950": 1360, "POP1955": 1712, "POP1960": 2151, "POP1965": 2584, "POP1970": 3110, "POP1975": 3842, "POP1980": 4723, "POP1985": 5279, "POP1990": 5888, "POP1995": 6106, "POP2000": 6332, "POP2005": 6582, "POP2010": 6704, "POP2015": 6918, "POP2020": 7332, "POP2025": 7807, "POP2050": 8332, "CITYALT": "Bangkok", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 100.524902, 13.752725 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "Former capital", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820, "MAX_POP20": 3301820, "MAX_POP50": 3301820, "MAX_POP300": 3301820, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 199, "MAX_PERKM": 199, "MIN_PERMI": 123, "MAX_PERMI": 123, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 4477638, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302, "POP1955": 1440, "POP1960": 1592, "POP1965": 1760, "POP1970": 1946, "POP1975": 2151, "POP1980": 2378, "POP1985": 2629, "POP1990": 2907, "POP1995": 3213, "POP2000": 3553, "POP2005": 3928, "POP2010": 4088, "POP2015": 4348, "POP2020": 4841, "POP2025": 5361, "POP2050": 5869, "CITYALT": "Rangoon", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vientiane", "DIFFASCII": 0, "NAMEASCII": "Vientiane", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Laos", "SOV_A3": "LAO", "ADM0NAME": "Laos", "ADM0_A3": "LAO", "ADM1NAME": "Vientiane [prefecture]", "ISO_A2": "LA", "LATITUDE": 17.966693, "LONGITUDE": 102.59998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 754000, "POP_MIN": 570348, "POP_OTHER": 469811, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1651944, "LS_NAME": "Vientiane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 471927, "MAX_POP20": 471927, "MAX_POP50": 570348, "MAX_POP300": 570348, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 166, "MAX_AREAKM": 243, "MIN_AREAMI": 64, "MAX_AREAMI": 94, "MIN_PERKM": 170, "MAX_PERKM": 283, "MIN_PERMI": 106, "MAX_PERMI": 176, "MIN_BBXMIN": 102.491667, "MAX_BBXMIN": 102.491667, "MIN_BBXMAX": 102.725, "MAX_BBXMAX": 102.816667, "MIN_BBYMIN": 17.8, "MAX_BBYMIN": 17.875, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": 102.648054, "MEAN_BBYC": 17.967124, "COMPARE": 0, "GN_ASCII": "Vientiane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 27, "GN_POP": 196731, "ELEVATION": 0, "GTOPO30": 174, "TIMEZONE": "Asia/Vientiane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 102.612305, 17.957832 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bangkok", "NAMEALT": "Krung Thep", "DIFFASCII": 0, "NAMEASCII": "Bangkok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Thailand", "SOV_A3": "THA", "ADM0NAME": "Thailand", "ADM0_A3": "THA", "ADM1NAME": "Bangkok Metropolis", "ISO_A2": "TH", "LATITUDE": 13.749999, "LONGITUDE": 100.516645, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 6704000, "POP_MIN": 5104476, "POP_OTHER": 5082758, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1609350, "MEGANAME": "Krung Thep", "LS_NAME": "Bangkok", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5323600, "MAX_POP20": 8823534, "MAX_POP50": 9210939, "MAX_POP300": 9206246, "MAX_POP310": 9206246, "MAX_NATSCA": 300, "MIN_AREAKM": 815, "MAX_AREAKM": 2350, "MIN_AREAMI": 315, "MAX_AREAMI": 908, "MIN_PERKM": 280, "MAX_PERKM": 1354, "MIN_PERMI": 174, "MAX_PERMI": 841, "MIN_BBXMIN": 99.991667, "MAX_BBXMIN": 100.216667, "MIN_BBXMAX": 100.844293, "MAX_BBXMAX": 101.016667, "MIN_BBYMIN": 13.5, "MAX_BBYMIN": 13.516667, "MIN_BBYMAX": 13.872295, "MAX_BBYMAX": 14.158333, "MEAN_BBXC": 100.545047, "MEAN_BBYC": 13.761017, "COMPARE": 0, "GN_ASCII": "Bangkok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 5104476, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Bangkok", "GEONAMESNO": "GeoNames match general.", "UN_FID": 496, "UN_ADM0": "Thailand", "UN_LAT": 13.75, "UN_LONG": 100.51, "POP1950": 1360, "POP1955": 1712, "POP1960": 2151, "POP1965": 2584, "POP1970": 3110, "POP1975": 3842, "POP1980": 4723, "POP1985": 5279, "POP1990": 5888, "POP1995": 6106, "POP2000": 6332, "POP2005": 6582, "POP2010": 6704, "POP2015": 6918, "POP2020": 7332, "POP2025": 7807, "POP2050": 8332, "CITYALT": "Bangkok", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 17.966693, "numnum:min:LATITUDE": 13.749999, "numnum:sum:LATITUDE": 31.716692000000003, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 102.59998, "numnum:min:LONGITUDE": 100.516645, "numnum:sum:LONGITUDE": 203.116625, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 6704000, "numnum:min:POP_MAX": 754000, "numnum:sum:POP_MAX": 7458000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 5104476, "numnum:min:POP_MIN": 570348, "numnum:sum:POP_MIN": 5674824, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 5082758, "numnum:min:POP_OTHER": 469811, "numnum:sum:POP_OTHER": 5552569, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1651944, "numnum:min:GEONAMEID": 1609350, "numnum:sum:GEONAMEID": 3261294, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 5323600, "numnum:min:MAX_POP10": 471927, "numnum:sum:MAX_POP10": 5795527, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 8823534, "numnum:min:MAX_POP20": 471927, "numnum:sum:MAX_POP20": 9295461, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 9210939, "numnum:min:MAX_POP50": 570348, "numnum:sum:MAX_POP50": 9781287, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 9206246, "numnum:min:MAX_POP300": 570348, "numnum:sum:MAX_POP300": 9776594, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 9206246, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9206246, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 815, "numnum:min:MIN_AREAKM": 166, "numnum:sum:MIN_AREAKM": 981, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2350, "numnum:min:MAX_AREAKM": 243, "numnum:sum:MAX_AREAKM": 2593, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 315, "numnum:min:MIN_AREAMI": 64, "numnum:sum:MIN_AREAMI": 379, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 908, "numnum:min:MAX_AREAMI": 94, "numnum:sum:MAX_AREAMI": 1002, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 280, "numnum:min:MIN_PERKM": 170, "numnum:sum:MIN_PERKM": 450, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1354, "numnum:min:MAX_PERKM": 283, "numnum:sum:MAX_PERKM": 1637, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 174, "numnum:min:MIN_PERMI": 106, "numnum:sum:MIN_PERMI": 280, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 841, "numnum:min:MAX_PERMI": 176, "numnum:sum:MAX_PERMI": 1017, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 102.491667, "numnum:min:MIN_BBXMIN": 99.991667, "numnum:sum:MIN_BBXMIN": 202.483334, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 102.491667, "numnum:min:MAX_BBXMIN": 100.216667, "numnum:sum:MAX_BBXMIN": 202.708334, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 102.725, "numnum:min:MIN_BBXMAX": 100.844293, "numnum:sum:MIN_BBXMAX": 203.569293, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 102.816667, "numnum:min:MAX_BBXMAX": 101.016667, "numnum:sum:MAX_BBXMAX": 203.83333399999999, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 17.8, "numnum:min:MIN_BBYMIN": 13.5, "numnum:sum:MIN_BBYMIN": 31.3, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 17.875, "numnum:min:MAX_BBYMIN": 13.516667, "numnum:sum:MAX_BBYMIN": 31.391666999999999, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 18.083333, "numnum:min:MIN_BBYMAX": 13.872295, "numnum:sum:MIN_BBYMAX": 31.955627999999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 18.083333, "numnum:min:MAX_BBYMAX": 14.158333, "numnum:sum:MAX_BBYMAX": 32.241666, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 102.648054, "numnum:min:MEAN_BBXC": 100.545047, "numnum:sum:MEAN_BBXC": 203.193101, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 17.967124, "numnum:min:MEAN_BBYC": 13.761017, "numnum:sum:MEAN_BBYC": 31.728141, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 40, "numnum:min:ADMIN1_COD": 27, "numnum:sum:ADMIN1_COD": 67, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 5104476, "numnum:min:GN_POP": 196731, "numnum:sum:GN_POP": 5301207, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 174, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 176, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 496, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 496, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 13.75, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 13.75, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 100.51, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 100.51, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1360, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1360, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1712, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1712, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2151, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2151, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2584, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2584, "numnum:count:POP1970": 2, "numnum:max:POP1970": 3110, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3110, "numnum:count:POP1975": 2, "numnum:max:POP1975": 3842, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3842, "numnum:count:POP1980": 2, "numnum:max:POP1980": 4723, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4723, "numnum:count:POP1985": 2, "numnum:max:POP1985": 5279, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5279, "numnum:count:POP1990": 2, "numnum:max:POP1990": 5888, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5888, "numnum:count:POP1995": 2, "numnum:max:POP1995": 6106, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 6106, "numnum:count:POP2000": 2, "numnum:max:POP2000": 6332, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6332, "numnum:count:POP2005": 2, "numnum:max:POP2005": 6582, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6582, "numnum:count:POP2010": 2, "numnum:max:POP2010": 6704, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 6704, "numnum:count:POP2015": 2, "numnum:max:POP2015": 6918, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 6918, "numnum:count:POP2020": 2, "numnum:max:POP2020": 7332, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 7332, "numnum:count:POP2025": 2, "numnum:max:POP2025": 7807, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 7807, "numnum:count:POP2050": 2, "numnum:max:POP2050": 8332, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 8332, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 100.524902, 13.752725 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Hanoi", "NAMEALT": "Hà Noi", "DIFFASCII": 0, "NAMEASCII": "Hanoi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Vietnam", "SOV_A3": "VNM", "ADM0NAME": "Vietnam", "ADM0_A3": "VNM", "ADM1NAME": "Thái Nguyên", "ISO_A2": "VN", "LATITUDE": 21.033327, "LONGITUDE": 105.850014, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4378000, "POP_MIN": 1431270, "POP_OTHER": 5466347, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1581130, "MEGANAME": "Hà Noi", "LS_NAME": "Hanoi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5620806, "MAX_POP20": 7346227, "MAX_POP50": 16406759, "MAX_POP300": 23700631, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2512, "MAX_AREAKM": 14049, "MIN_AREAMI": 970, "MAX_AREAMI": 5424, "MIN_PERKM": 1175, "MAX_PERKM": 10267, "MIN_PERMI": 730, "MAX_PERMI": 6380, "MIN_BBXMIN": 104.975, "MAX_BBXMIN": 105.616287, "MIN_BBXMAX": 106.2294, "MAX_BBXMAX": 106.808333, "MIN_BBYMIN": 19.283333, "MAX_BBYMIN": 20.620237, "MIN_BBYMAX": 21.319209, "MAX_BBYMAX": 21.783333, "MEAN_BBXC": 105.892881, "MEAN_BBYC": 20.873406, "COMPARE": 0, "GN_ASCII": "Ha Noi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 1431270, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Asia/Ho_Chi_Minh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 451, "UN_ADM0": "Viet Nam", "UN_LAT": 21.03, "UN_LONG": 105.82, "POP1950": 280, "POP1955": 425, "POP1960": 644, "POP1965": 917, "POP1970": 1307, "POP1975": 1884, "POP1980": 2606, "POP1985": 2854, "POP1990": 3126, "POP1995": 3424, "POP2000": 3752, "POP2005": 4170, "POP2010": 4378, "POP2015": 4723, "POP2020": 5357, "POP2025": 6036, "POP2050": 6754, "CITYALT": "Hanoi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 105.864258, 21.022983 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Hanoi", "NAMEALT": "Hà Noi", "DIFFASCII": 0, "NAMEASCII": "Hanoi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Vietnam", "SOV_A3": "VNM", "ADM0NAME": "Vietnam", "ADM0_A3": "VNM", "ADM1NAME": "Thái Nguyên", "ISO_A2": "VN", "LATITUDE": 21.033327, "LONGITUDE": 105.850014, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4378000, "POP_MIN": 1431270, "POP_OTHER": 5466347, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1581130, "MEGANAME": "Hà Noi", "LS_NAME": "Hanoi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5620806, "MAX_POP20": 7346227, "MAX_POP50": 16406759, "MAX_POP300": 23700631, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2512, "MAX_AREAKM": 14049, "MIN_AREAMI": 970, "MAX_AREAMI": 5424, "MIN_PERKM": 1175, "MAX_PERKM": 10267, "MIN_PERMI": 730, "MAX_PERMI": 6380, "MIN_BBXMIN": 104.975, "MAX_BBXMIN": 105.616287, "MIN_BBXMAX": 106.2294, "MAX_BBXMAX": 106.808333, "MIN_BBYMIN": 19.283333, "MAX_BBYMIN": 20.620237, "MIN_BBYMAX": 21.319209, "MAX_BBYMAX": 21.783333, "MEAN_BBXC": 105.892881, "MEAN_BBYC": 20.873406, "COMPARE": 0, "GN_ASCII": "Ha Noi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 1431270, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Asia/Ho_Chi_Minh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 451, "UN_ADM0": "Viet Nam", "UN_LAT": 21.03, "UN_LONG": 105.82, "POP1950": 280, "POP1955": 425, "POP1960": 644, "POP1965": 917, "POP1970": 1307, "POP1975": 1884, "POP1980": 2606, "POP1985": 2854, "POP1990": 3126, "POP1995": 3424, "POP2000": 3752, "POP2005": 4170, "POP2010": 4378, "POP2015": 4723, "POP2020": 5357, "POP2025": 6036, "POP2050": 6754, "CITYALT": "Hanoi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 105.864258, 21.022983 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Phnom Penh", "NAMEALT": "Phnum Pénh", "DIFFASCII": 0, "NAMEASCII": "Phnom Penh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cambodia", "SOV_A3": "KHM", "ADM0NAME": "Cambodia", "ADM0_A3": "KHM", "ADM1NAME": "Phnom Penh", "ISO_A2": "KH", "LATITUDE": 11.55003, "LONGITUDE": 104.916634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1466000, "POP_MIN": 1466000, "POP_OTHER": 1604086, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1821306, "MEGANAME": "Phnum Pénh", "LS_NAME": "Phnom Penh", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1551977, "MAX_POP20": 1551977, "MAX_POP50": 1551977, "MAX_POP300": 1551977, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 464, "MAX_AREAKM": 464, "MIN_AREAMI": 179, "MAX_AREAMI": 179, "MIN_PERKM": 703, "MAX_PERKM": 703, "MIN_PERMI": 437, "MAX_PERMI": 437, "MIN_BBXMIN": 104.441667, "MAX_BBXMIN": 104.441667, "MIN_BBXMAX": 105, "MAX_BBXMAX": 105, "MIN_BBYMIN": 11.291667, "MAX_BBYMIN": 11.291667, "MIN_BBYMAX": 11.691667, "MAX_BBYMAX": 11.691667, "MEAN_BBXC": 104.78577, "MEAN_BBYC": 11.488418, "COMPARE": 0, "GN_ASCII": "Phnom Penh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1573544, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Phnom_Penh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 5, "UN_ADM0": "Cambodia", "UN_LAT": 11.56, "UN_LONG": 104.91, "POP1950": 364, "POP1955": 376, "POP1960": 389, "POP1965": 436, "POP1970": 900, "POP1975": 100, "POP1980": 238, "POP1985": 427, "POP1990": 615, "POP1995": 836, "POP2000": 1160, "POP2005": 1363, "POP2010": 1466, "POP2015": 1651, "POP2020": 2028, "POP2025": 2457, "POP2050": 2911, "CITYALT": "Phnom Penh", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 104.919434, 11.544616 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Phnom Penh", "NAMEALT": "Phnum Pénh", "DIFFASCII": 0, "NAMEASCII": "Phnom Penh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cambodia", "SOV_A3": "KHM", "ADM0NAME": "Cambodia", "ADM0_A3": "KHM", "ADM1NAME": "Phnom Penh", "ISO_A2": "KH", "LATITUDE": 11.55003, "LONGITUDE": 104.916634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1466000, "POP_MIN": 1466000, "POP_OTHER": 1604086, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1821306, "MEGANAME": "Phnum Pénh", "LS_NAME": "Phnom Penh", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1551977, "MAX_POP20": 1551977, "MAX_POP50": 1551977, "MAX_POP300": 1551977, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 464, "MAX_AREAKM": 464, "MIN_AREAMI": 179, "MAX_AREAMI": 179, "MIN_PERKM": 703, "MAX_PERKM": 703, "MIN_PERMI": 437, "MAX_PERMI": 437, "MIN_BBXMIN": 104.441667, "MAX_BBXMIN": 104.441667, "MIN_BBXMAX": 105, "MAX_BBXMAX": 105, "MIN_BBYMIN": 11.291667, "MAX_BBYMIN": 11.291667, "MIN_BBYMAX": 11.691667, "MAX_BBYMAX": 11.691667, "MEAN_BBXC": 104.78577, "MEAN_BBYC": 11.488418, "COMPARE": 0, "GN_ASCII": "Phnom Penh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1573544, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Phnom_Penh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 5, "UN_ADM0": "Cambodia", "UN_LAT": 11.56, "UN_LONG": 104.91, "POP1950": 364, "POP1955": 376, "POP1960": 389, "POP1965": 436, "POP1970": 900, "POP1975": 100, "POP1980": 238, "POP1985": 427, "POP1990": 615, "POP1995": 836, "POP2000": 1160, "POP2005": 1363, "POP2010": 1466, "POP2015": 1651, "POP2020": 2028, "POP2025": 2457, "POP2050": 2911, "CITYALT": "Phnom Penh", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 104.919434, 11.544616 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 3.162456 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Putrajaya", "DIFFASCII": 0, "NAMEASCII": "Putrajaya", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 2.91402, "LONGITUDE": 101.701947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 67964, "POP_MIN": 50000, "POP_OTHER": 956431, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 6697380, "LS_NAME": "Putrajaya", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 955607, "MAX_POP20": 964830, "MAX_POP50": 1651113, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 486, "MAX_AREAKM": 805, "MIN_AREAMI": 188, "MAX_AREAMI": 311, "MIN_PERKM": 467, "MAX_PERKM": 737, "MIN_PERMI": 290, "MAX_PERMI": 458, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.575, "MIN_BBXMAX": 101.891667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 2.708333, "MIN_BBYMAX": 3.041194, "MAX_BBYMAX": 3.041194, "MEAN_BBXC": 101.716617, "MEAN_BBYC": 2.915909, "COMPARE": 0, "GN_ASCII": "Putrajaya", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 17, "GN_POP": 50000, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 2.899153 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Putrajaya", "DIFFASCII": 0, "NAMEASCII": "Putrajaya", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 2.91402, "LONGITUDE": 101.701947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 67964, "POP_MIN": 50000, "POP_OTHER": 956431, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 6697380, "LS_NAME": "Putrajaya", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 955607, "MAX_POP20": 964830, "MAX_POP50": 1651113, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 486, "MAX_AREAKM": 805, "MIN_AREAMI": 188, "MAX_AREAMI": 311, "MIN_PERKM": 467, "MAX_PERKM": 737, "MIN_PERMI": 290, "MAX_PERMI": 458, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.575, "MIN_BBXMAX": 101.891667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 2.708333, "MIN_BBYMAX": 3.041194, "MAX_BBYMAX": 3.041194, "MEAN_BBXC": 101.716617, "MEAN_BBYC": 2.915909, "COMPARE": 0, "GN_ASCII": "Putrajaya", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 17, "GN_POP": 50000, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 2.899153 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861, "MAX_POP20": 11120470, "MAX_POP50": 16510327, "MAX_POP300": 23647944, "MAX_POP310": 137121250, "MAX_NATSCA": 300, "MIN_AREAKM": 2512, "MAX_AREAKM": 118844, "MIN_AREAMI": 970, "MAX_AREAMI": 45886, "MIN_PERKM": 1837, "MAX_PERKM": 93615, "MIN_PERMI": 1141, "MAX_PERMI": 58169, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22, "GN_POP": 7480601, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331, "POP1955": 4628, "POP1960": 4945, "POP1965": 5284, "POP1970": 5646, "POP1975": 6034, "POP1980": 6448, "POP1985": 6890, "POP1990": 7362, "POP1995": 8486, "POP2000": 9782, "POP2005": 10717, "POP2010": 11106, "POP2015": 11741, "POP2020": 12842, "POP2025": 13807, "POP2050": 14545, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861, "MAX_POP20": 11120470, "MAX_POP50": 16510327, "MAX_POP300": 23647944, "MAX_POP310": 137121250, "MAX_NATSCA": 300, "MIN_AREAKM": 2512, "MAX_AREAKM": 118844, "MIN_AREAMI": 970, "MAX_AREAMI": 45886, "MIN_PERKM": 1837, "MAX_PERKM": 93615, "MIN_PERMI": 1141, "MAX_PERMI": 58169, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22, "GN_POP": 7480601, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331, "POP1955": 4628, "POP1960": 4945, "POP1965": 5284, "POP1970": 5646, "POP1975": 6034, "POP1980": 6448, "POP1985": 6890, "POP1990": 7362, "POP1995": 8486, "POP2000": 9782, "POP2005": 10717, "POP2010": 11106, "POP2015": 11741, "POP2020": 12842, "POP2025": 13807, "POP2050": 14545, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 region capital", "NAME": "Hong Kong", "DIFFASCII": 0, "NAMEASCII": "Hong Kong", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "Hong Kong S.A.R.", "ADM0_A3": "HKG", "ISO_A2": "HK", "LATITUDE": 22.304981, "LONGITUDE": 114.185009, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7206000, "POP_MIN": 4551579, "POP_OTHER": 4549026, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1819729, "MEGANAME": "Hong Kong", "LS_NAME": "Hong Kong", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4551579, "MAX_POP20": 15779579, "MAX_POP50": 16718429, "MAX_POP300": 16718429, "MAX_POP310": 42594594, "MAX_NATSCA": 300, "MIN_AREAKM": 202, "MAX_AREAKM": 10661, "MIN_AREAMI": 78, "MAX_AREAMI": 4116, "MIN_PERKM": 219, "MAX_PERKM": 7493, "MIN_PERMI": 136, "MAX_PERMI": 4656, "MIN_BBXMIN": 112.533333, "MAX_BBXMIN": 113.983333, "MIN_BBXMAX": 114.3, "MAX_BBXMAX": 114.775, "MIN_BBYMIN": 21.925, "MAX_BBYMIN": 22.2, "MIN_BBYMAX": 22.4, "MAX_BBYMAX": 24.033333, "MEAN_BBXC": 114.035195, "MEAN_BBYC": 22.679605, "COMPARE": 0, "GN_ASCII": "Hong Kong", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7012738, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Hong_Kong", "GEONAMESNO": "GeoNames match general.", "UN_FID": 210, "UN_ADM0": "China, Hong Kong Special Administrative Region", "UN_LAT": 22.27, "UN_LONG": 114.17, "POP1950": 1682, "POP1955": 2121, "POP1960": 2620, "POP1965": 3191, "POP1970": 3458, "POP1975": 3943, "POP1980": 4609, "POP1985": 5070, "POP1990": 5677, "POP1995": 6206, "POP2000": 6662, "POP2005": 7057, "POP2010": 7206, "POP2015": 7419, "POP2020": 7744, "POP2025": 8040, "POP2050": 8305, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 114.191895, 22.309426 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 region capital", "NAME": "Hong Kong", "DIFFASCII": 0, "NAMEASCII": "Hong Kong", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "Hong Kong S.A.R.", "ADM0_A3": "HKG", "ISO_A2": "HK", "LATITUDE": 22.304981, "LONGITUDE": 114.185009, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7206000, "POP_MIN": 4551579, "POP_OTHER": 4549026, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1819729, "MEGANAME": "Hong Kong", "LS_NAME": "Hong Kong", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4551579, "MAX_POP20": 15779579, "MAX_POP50": 16718429, "MAX_POP300": 16718429, "MAX_POP310": 42594594, "MAX_NATSCA": 300, "MIN_AREAKM": 202, "MAX_AREAKM": 10661, "MIN_AREAMI": 78, "MAX_AREAMI": 4116, "MIN_PERKM": 219, "MAX_PERKM": 7493, "MIN_PERMI": 136, "MAX_PERMI": 4656, "MIN_BBXMIN": 112.533333, "MAX_BBXMIN": 113.983333, "MIN_BBXMAX": 114.3, "MAX_BBXMAX": 114.775, "MIN_BBYMIN": 21.925, "MAX_BBYMIN": 22.2, "MIN_BBYMAX": 22.4, "MAX_BBYMAX": 24.033333, "MEAN_BBXC": 114.035195, "MEAN_BBYC": 22.679605, "COMPARE": 0, "GN_ASCII": "Hong Kong", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7012738, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Hong_Kong", "GEONAMESNO": "GeoNames match general.", "UN_FID": 210, "UN_ADM0": "China, Hong Kong Special Administrative Region", "UN_LAT": 22.27, "UN_LONG": 114.17, "POP1950": 1682, "POP1955": 2121, "POP1960": 2620, "POP1965": 3191, "POP1970": 3458, "POP1975": 3943, "POP1980": 4609, "POP1985": 5070, "POP1990": 5677, "POP1995": 6206, "POP2000": 6662, "POP2005": 7057, "POP2010": 7206, "POP2015": 7419, "POP2020": 7744, "POP2025": 8040, "POP2050": 8305, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 114.191895, 22.309426 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Shanghai", "DIFFASCII": 0, "NAMEASCII": "Shanghai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Shanghai", "ISO_A2": "CN", "LATITUDE": 31.216452, "LONGITUDE": 121.436505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 14987000, "POP_MIN": 14608512, "POP_OTHER": 16803572, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1796236, "MEGANAME": "Shanghai", "LS_NAME": "Shanghai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 16172884, "MAX_POP20": 16172884, "MAX_POP50": 26630672, "MAX_POP300": 26631586, "MAX_POP310": 40576904, "MAX_NATSCA": 300, "MIN_AREAKM": 3792, "MAX_AREAKM": 16400, "MIN_AREAMI": 1464, "MAX_AREAMI": 6332, "MIN_PERKM": 2219, "MAX_PERKM": 12342, "MIN_PERMI": 1379, "MAX_PERMI": 7669, "MIN_BBXMIN": 119.016667, "MAX_BBXMIN": 121.013757, "MIN_BBXMAX": 121.9, "MAX_BBXMAX": 121.9, "MIN_BBYMIN": 30.191667, "MAX_BBYMIN": 30.7, "MIN_BBYMAX": 31.65, "MAX_BBYMAX": 32.308333, "MEAN_BBXC": 121.053901, "MEAN_BBYC": 31.253289, "COMPARE": 0, "GN_ASCII": "Shanghai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 14608512, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Asia/Shanghai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 98, "UN_ADM0": "China", "UN_LAT": 31.24, "UN_LONG": 121.47, "POP1950": 6066, "POP1955": 6299, "POP1960": 6542, "POP1965": 6793, "POP1970": 7055, "POP1975": 7326, "POP1980": 7608, "POP1985": 7901, "POP1990": 8205, "POP1995": 10423, "POP2000": 13243, "POP2005": 14503, "POP2010": 14987, "POP2015": 15789, "POP2020": 17214, "POP2025": 18466, "POP2050": 19412, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 121.442871, 31.222197 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Shanghai", "DIFFASCII": 0, "NAMEASCII": "Shanghai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Shanghai", "ISO_A2": "CN", "LATITUDE": 31.216452, "LONGITUDE": 121.436505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 14987000, "POP_MIN": 14608512, "POP_OTHER": 16803572, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1796236, "MEGANAME": "Shanghai", "LS_NAME": "Shanghai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 16172884, "MAX_POP20": 16172884, "MAX_POP50": 26630672, "MAX_POP300": 26631586, "MAX_POP310": 40576904, "MAX_NATSCA": 300, "MIN_AREAKM": 3792, "MAX_AREAKM": 16400, "MIN_AREAMI": 1464, "MAX_AREAMI": 6332, "MIN_PERKM": 2219, "MAX_PERKM": 12342, "MIN_PERMI": 1379, "MAX_PERMI": 7669, "MIN_BBXMIN": 119.016667, "MAX_BBXMIN": 121.013757, "MIN_BBXMAX": 121.9, "MAX_BBXMAX": 121.9, "MIN_BBYMIN": 30.191667, "MAX_BBYMIN": 30.7, "MIN_BBYMAX": 31.65, "MAX_BBYMAX": 32.308333, "MEAN_BBXC": 121.053901, "MEAN_BBYC": 31.253289, "COMPARE": 0, "GN_ASCII": "Shanghai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 14608512, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Asia/Shanghai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 98, "UN_ADM0": "China", "UN_LAT": 31.24, "UN_LONG": 121.47, "POP1950": 6066, "POP1955": 6299, "POP1960": 6542, "POP1965": 6793, "POP1970": 7055, "POP1975": 7326, "POP1980": 7608, "POP1985": 7901, "POP1990": 8205, "POP1995": 10423, "POP2000": 13243, "POP2005": 14503, "POP2010": 14987, "POP2015": 15789, "POP2020": 17214, "POP2025": 18466, "POP2050": 19412, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 121.442871, 31.222197 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797, "MAX_POP20": 2498797, "MAX_POP50": 2498797, "MAX_POP300": 2498797, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 446, "MAX_AREAKM": 447, "MIN_AREAMI": 172, "MAX_AREAMI": 173, "MIN_PERKM": 510, "MAX_PERKM": 511, "MIN_PERMI": 317, "MAX_PERMI": 318, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 3222000, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516, "POP1955": 577, "POP1960": 646, "POP1965": 769, "POP1970": 987, "POP1975": 1348, "POP1980": 1842, "POP1985": 2195, "POP1990": 2526, "POP1995": 2838, "POP2000": 3117, "POP2005": 3265, "POP2010": 3300, "POP2015": 3346, "POP2020": 3434, "POP2025": 3537, "POP2050": 3630, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.010648 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797, "MAX_POP20": 2498797, "MAX_POP50": 2498797, "MAX_POP300": 2498797, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 446, "MAX_AREAKM": 447, "MIN_AREAMI": 172, "MAX_AREAMI": 173, "MIN_PERKM": 510, "MAX_PERKM": 511, "MIN_PERMI": 317, "MAX_PERMI": 318, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 3222000, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516, "POP1955": 577, "POP1960": 646, "POP1965": 769, "POP1970": 987, "POP1975": 1348, "POP1980": 1842, "POP1985": 2195, "POP1990": 2526, "POP1995": 2838, "POP2000": 3117, "POP2005": 3265, "POP2010": 3300, "POP2015": 3346, "POP2020": 3434, "POP2025": 3537, "POP2050": 3630, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.010648 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Seoul", "DIFFASCII": 0, "NAMEASCII": "Seoul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Korea, South", "SOV_A3": "KOR", "ADM0NAME": "South Korea", "ADM0_A3": "KOR", "ADM1NAME": "Seoul", "ISO_A2": "KR", "LATITUDE": 37.566349, "LONGITUDE": 126.999731, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9796000, "POP_MIN": 9796000, "POP_OTHER": 12018058, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1835848, "MEGANAME": "Seoul", "LS_NAME": "Seoul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12322855, "MAX_POP20": 13143622, "MAX_POP50": 21387676, "MAX_POP300": 21991959, "MAX_POP310": 21991959, "MAX_NATSCA": 300, "MIN_AREAKM": 971, "MAX_AREAKM": 2718, "MIN_AREAMI": 375, "MAX_AREAMI": 1049, "MIN_PERKM": 546, "MAX_PERKM": 1901, "MIN_PERMI": 340, "MAX_PERMI": 1181, "MIN_BBXMIN": 126.55, "MAX_BBXMIN": 126.767185, "MIN_BBXMAX": 127.266667, "MAX_BBXMAX": 127.325, "MIN_BBYMIN": 36.75, "MAX_BBYMIN": 37.412022, "MIN_BBYMAX": 37.791667, "MAX_BBYMAX": 37.875, "MEAN_BBXC": 126.971295, "MEAN_BBYC": 37.485925, "COMPARE": 0, "GN_ASCII": "Seoul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 10349312, "ELEVATION": 0, "GTOPO30": 46, "TIMEZONE": "Asia/Seoul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 336, "UN_ADM0": "Republic of Korea", "UN_LAT": 37.54, "UN_LONG": 126.93, "POP1950": 1021, "POP1955": 1553, "POP1960": 2361, "POP1965": 3452, "POP1970": 5312, "POP1975": 6808, "POP1980": 8258, "POP1985": 9547, "POP1990": 10544, "POP1995": 10256, "POP2000": 9917, "POP2005": 9825, "POP2010": 9796, "POP2015": 9762, "POP2020": 9740, "POP2025": 9738, "POP2050": 9738, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Baguio City", "DIFFASCII": 0, "NAMEASCII": "Baguio City", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Benguet", "ISO_A2": "PH", "LATITUDE": 16.429991, "LONGITUDE": 120.569943, "CHANGED": 40, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 447824, "POP_MIN": 272714, "POP_OTHER": 164877, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1728930, "LS_NAME": "Baguio City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 447824, "MAX_POP20": 447824, "MAX_POP50": 447824, "MAX_POP300": 447824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 120.541667, "MAX_BBXMIN": 120.541667, "MIN_BBXMAX": 120.65, "MAX_BBXMAX": 120.65, "MIN_BBYMIN": 16.358333, "MAX_BBYMIN": 16.358333, "MIN_BBYMAX": 16.483333, "MAX_BBYMAX": 16.483333, "MEAN_BBXC": 120.598765, "MEAN_BBYC": 16.421065, "COMPARE": 0, "GN_ASCII": "Baguio", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 272714, "ELEVATION": 0, "GTOPO30": 1448, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 120.585938, 16.425548 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Seoul", "DIFFASCII": 0, "NAMEASCII": "Seoul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Korea, South", "SOV_A3": "KOR", "ADM0NAME": "South Korea", "ADM0_A3": "KOR", "ADM1NAME": "Seoul", "ISO_A2": "KR", "LATITUDE": 37.566349, "LONGITUDE": 126.999731, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9796000, "POP_MIN": 9796000, "POP_OTHER": 12018058, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1835848, "MEGANAME": "Seoul", "LS_NAME": "Seoul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12322855, "MAX_POP20": 13143622, "MAX_POP50": 21387676, "MAX_POP300": 21991959, "MAX_POP310": 21991959, "MAX_NATSCA": 300, "MIN_AREAKM": 971, "MAX_AREAKM": 2718, "MIN_AREAMI": 375, "MAX_AREAMI": 1049, "MIN_PERKM": 546, "MAX_PERKM": 1901, "MIN_PERMI": 340, "MAX_PERMI": 1181, "MIN_BBXMIN": 126.55, "MAX_BBXMIN": 126.767185, "MIN_BBXMAX": 127.266667, "MAX_BBXMAX": 127.325, "MIN_BBYMIN": 36.75, "MAX_BBYMIN": 37.412022, "MIN_BBYMAX": 37.791667, "MAX_BBYMAX": 37.875, "MEAN_BBXC": 126.971295, "MEAN_BBYC": 37.485925, "COMPARE": 0, "GN_ASCII": "Seoul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 10349312, "ELEVATION": 0, "GTOPO30": 46, "TIMEZONE": "Asia/Seoul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 336, "UN_ADM0": "Republic of Korea", "UN_LAT": 37.54, "UN_LONG": 126.93, "POP1950": 1021, "POP1955": 1553, "POP1960": 2361, "POP1965": 3452, "POP1970": 5312, "POP1975": 6808, "POP1980": 8258, "POP1985": 9547, "POP1990": 10544, "POP1995": 10256, "POP2000": 9917, "POP2005": 9825, "POP2010": 9796, "POP2015": 9762, "POP2020": 9740, "POP2025": 9738, "POP2050": 9738, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 350, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 37.566349, "numnum:min:LATITUDE": 16.429991, "numnum:sum:LATITUDE": 53.996340000000007, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 126.999731, "numnum:min:LONGITUDE": 120.569943, "numnum:sum:LONGITUDE": 247.569674, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 40, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 40, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 9796000, "numnum:min:POP_MAX": 447824, "numnum:sum:POP_MAX": 10243824, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 9796000, "numnum:min:POP_MIN": 272714, "numnum:sum:POP_MIN": 10068714, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 12018058, "numnum:min:POP_OTHER": 164877, "numnum:sum:POP_OTHER": 12182935, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1835848, "numnum:min:GEONAMEID": 1728930, "numnum:sum:GEONAMEID": 3564778, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 12322855, "numnum:min:MAX_POP10": 447824, "numnum:sum:MAX_POP10": 12770679, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 13143622, "numnum:min:MAX_POP20": 447824, "numnum:sum:MAX_POP20": 13591446, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 21387676, "numnum:min:MAX_POP50": 447824, "numnum:sum:MAX_POP50": 21835500, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 21991959, "numnum:min:MAX_POP300": 447824, "numnum:sum:MAX_POP300": 22439783, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 21991959, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 21991959, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 971, "numnum:min:MIN_AREAKM": 89, "numnum:sum:MIN_AREAKM": 1060, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2718, "numnum:min:MAX_AREAKM": 89, "numnum:sum:MAX_AREAKM": 2807, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 375, "numnum:min:MIN_AREAMI": 34, "numnum:sum:MIN_AREAMI": 409, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1049, "numnum:min:MAX_AREAMI": 34, "numnum:sum:MAX_AREAMI": 1083, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 546, "numnum:min:MIN_PERKM": 78, "numnum:sum:MIN_PERKM": 624, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1901, "numnum:min:MAX_PERKM": 78, "numnum:sum:MAX_PERKM": 1979, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 340, "numnum:min:MIN_PERMI": 48, "numnum:sum:MIN_PERMI": 388, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1181, "numnum:min:MAX_PERMI": 48, "numnum:sum:MAX_PERMI": 1229, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 126.55, "numnum:min:MIN_BBXMIN": 120.541667, "numnum:sum:MIN_BBXMIN": 247.091667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 126.767185, "numnum:min:MAX_BBXMIN": 120.541667, "numnum:sum:MAX_BBXMIN": 247.308852, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 127.266667, "numnum:min:MIN_BBXMAX": 120.65, "numnum:sum:MIN_BBXMAX": 247.91666700000003, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 127.325, "numnum:min:MAX_BBXMAX": 120.65, "numnum:sum:MAX_BBXMAX": 247.97500000000003, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 36.75, "numnum:min:MIN_BBYMIN": 16.358333, "numnum:sum:MIN_BBYMIN": 53.108333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 37.412022, "numnum:min:MAX_BBYMIN": 16.358333, "numnum:sum:MAX_BBYMIN": 53.770354999999998, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 37.791667, "numnum:min:MIN_BBYMAX": 16.483333, "numnum:sum:MIN_BBYMAX": 54.27499999999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 37.875, "numnum:min:MAX_BBYMAX": 16.483333, "numnum:sum:MAX_BBYMAX": 54.358333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 126.971295, "numnum:min:MEAN_BBXC": 120.598765, "numnum:sum:MEAN_BBXC": 247.57006, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 37.485925, "numnum:min:MEAN_BBYC": 16.421065, "numnum:sum:MEAN_BBYC": 53.90699, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 10349312, "numnum:min:GN_POP": 272714, "numnum:sum:GN_POP": 10622026, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1448, "numnum:min:GTOPO30": 46, "numnum:sum:GTOPO30": 1494, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 336, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 336, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 37.54, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 37.54, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 126.93, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 126.93, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1021, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1021, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1553, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1553, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2361, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2361, "numnum:count:POP1965": 2, "numnum:max:POP1965": 3452, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3452, "numnum:count:POP1970": 2, "numnum:max:POP1970": 5312, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 5312, "numnum:count:POP1975": 2, "numnum:max:POP1975": 6808, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 6808, "numnum:count:POP1980": 2, "numnum:max:POP1980": 8258, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 8258, "numnum:count:POP1985": 2, "numnum:max:POP1985": 9547, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 9547, "numnum:count:POP1990": 2, "numnum:max:POP1990": 10544, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 10544, "numnum:count:POP1995": 2, "numnum:max:POP1995": 10256, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 10256, "numnum:count:POP2000": 2, "numnum:max:POP2000": 9917, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 9917, "numnum:count:POP2005": 2, "numnum:max:POP2005": 9825, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 9825, "numnum:count:POP2010": 2, "numnum:max:POP2010": 9796, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 9796, "numnum:count:POP2015": 2, "numnum:max:POP2015": 9762, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9762, "numnum:count:POP2020": 2, "numnum:max:POP2020": 9740, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 9740, "numnum:count:POP2025": 2, "numnum:max:POP2025": 9738, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 9738, "numnum:count:POP2050": 2, "numnum:max:POP2050": 9738, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 9738, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, de fa", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575, "MAX_POP20": 3077575, "MAX_POP50": 3077575, "MAX_POP300": 23366503, "MAX_POP310": 26749011, "MAX_NATSCA": 300, "MIN_AREAKM": 67, "MAX_AREAKM": 8820, "MIN_AREAMI": 26, "MAX_AREAMI": 3405, "MIN_PERKM": 46, "MAX_PERKM": 5298, "MIN_PERMI": 29, "MAX_PERMI": 3292, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 10444527, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544, "POP1955": 1872, "POP1960": 2274, "POP1965": 2829, "POP1970": 3534, "POP1975": 4999, "POP1980": 5955, "POP1985": 6888, "POP1990": 7973, "POP1995": 9401, "POP2000": 9958, "POP2005": 10761, "POP2010": 11100, "POP2015": 11662, "POP2020": 12786, "POP2025": 13892, "POP2050": 14808, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, de fa", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575, "MAX_POP20": 3077575, "MAX_POP50": 3077575, "MAX_POP300": 23366503, "MAX_POP310": 26749011, "MAX_NATSCA": 300, "MIN_AREAKM": 67, "MAX_AREAKM": 8820, "MIN_AREAMI": 26, "MAX_AREAMI": 3405, "MIN_PERKM": 46, "MAX_PERKM": 5298, "MIN_PERMI": 29, "MAX_PERMI": 3292, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 10444527, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544, "POP1955": 1872, "POP1960": 2274, "POP1965": 2829, "POP1970": 3534, "POP1975": 4999, "POP1980": 5955, "POP1985": 6888, "POP1990": 7973, "POP1995": 9401, "POP2000": 9958, "POP2005": 10761, "POP2010": 11100, "POP2015": 11662, "POP2020": 12786, "POP2025": 13892, "POP2050": 14808, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bandar Seri Begawan", "DIFFASCII": 0, "NAMEASCII": "Bandar Seri Begawan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Brunei", "SOV_A3": "BRN", "ADM0NAME": "Brunei", "ADM0_A3": "BRN", "ADM1NAME": "Brunei and Muara", "ISO_A2": "BN", "LATITUDE": 4.883331, "LONGITUDE": 114.933284, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 296500, "POP_MIN": 140000, "POP_OTHER": 222513, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1820906, "LS_NAME": "Bandar Seri Begawan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 219674, "MAX_POP20": 219674, "MAX_POP50": 219674, "MAX_POP300": 219674, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 155, "MAX_PERKM": 155, "MIN_PERMI": 96, "MAX_PERMI": 96, "MIN_BBXMIN": 114.825, "MAX_BBXMIN": 114.825, "MIN_BBXMAX": 114.991667, "MAX_BBXMAX": 114.991667, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 5.008333, "MAX_BBYMAX": 5.008333, "MEAN_BBXC": 114.908824, "MEAN_BBYC": 4.910245, "COMPARE": 0, "GN_ASCII": "Bandar Seri Begawan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 64409, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Brunei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 114.938965, 4.872048 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bandar Seri Begawan", "DIFFASCII": 0, "NAMEASCII": "Bandar Seri Begawan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Brunei", "SOV_A3": "BRN", "ADM0NAME": "Brunei", "ADM0_A3": "BRN", "ADM1NAME": "Brunei and Muara", "ISO_A2": "BN", "LATITUDE": 4.883331, "LONGITUDE": 114.933284, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 296500, "POP_MIN": 140000, "POP_OTHER": 222513, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1820906, "LS_NAME": "Bandar Seri Begawan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 219674, "MAX_POP20": 219674, "MAX_POP50": 219674, "MAX_POP300": 219674, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 155, "MAX_PERKM": 155, "MIN_PERMI": 96, "MAX_PERMI": 96, "MIN_BBXMIN": 114.825, "MAX_BBXMIN": 114.825, "MIN_BBXMAX": 114.991667, "MAX_BBXMAX": 114.991667, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 5.008333, "MAX_BBYMAX": 5.008333, "MEAN_BBXC": 114.908824, "MEAN_BBYC": 4.910245, "COMPARE": 0, "GN_ASCII": "Bandar Seri Begawan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 64409, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Brunei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 114.938965, 4.872048 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.471411 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.471411 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.741612 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.741612 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Kyoto", "DIFFASCII": 0, "NAMEASCII": "Kyoto", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Kyoto", "ISO_A2": "JP", "LATITUDE": 35.029992, "LONGITUDE": 135.749998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1459640, "POP_OTHER": 1827367, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1857910, "MEGANAME": "Kyoto", "LS_NAME": "Kyoto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1946052, "MAX_POP20": 2520813, "MAX_POP50": 2520813, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 340, "MAX_AREAKM": 486, "MIN_AREAMI": 131, "MAX_AREAMI": 188, "MIN_PERKM": 130, "MAX_PERKM": 218, "MIN_PERMI": 81, "MAX_PERMI": 135, "MIN_BBXMIN": 135.611529, "MAX_BBXMIN": 135.611529, "MIN_BBXMAX": 135.808333, "MAX_BBXMAX": 135.858333, "MIN_BBYMIN": 34.64506, "MAX_BBYMIN": 34.783333, "MIN_BBYMAX": 35.1, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.743212, "MEAN_BBYC": 34.913171, "COMPARE": 0, "GN_ASCII": "Kyoto", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 22, "GN_POP": 1459640, "ELEVATION": 0, "GTOPO30": 86, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 313, "UN_ADM0": "Japan", "UN_LAT": 35, "UN_LONG": 135.75, "POP1950": 1002, "POP1955": 1091, "POP1960": 1165, "POP1965": 1229, "POP1970": 1298, "POP1975": 1622, "POP1980": 1701, "POP1985": 1714, "POP1990": 1760, "POP1995": 1804, "POP2000": 1806, "POP2005": 1805, "POP2010": 1805, "POP2015": 1804, "POP2020": 1804, "POP2025": 1804, "POP2050": 1804, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 135.747070, 35.029996 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Kyoto", "DIFFASCII": 0, "NAMEASCII": "Kyoto", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Kyoto", "ISO_A2": "JP", "LATITUDE": 35.029992, "LONGITUDE": 135.749998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1459640, "POP_OTHER": 1827367, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1857910, "MEGANAME": "Kyoto", "LS_NAME": "Kyoto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1946052, "MAX_POP20": 2520813, "MAX_POP50": 2520813, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 340, "MAX_AREAKM": 486, "MIN_AREAMI": 131, "MAX_AREAMI": 188, "MIN_PERKM": 130, "MAX_PERKM": 218, "MIN_PERMI": 81, "MAX_PERMI": 135, "MIN_BBXMIN": 135.611529, "MAX_BBXMIN": 135.611529, "MIN_BBXMAX": 135.808333, "MAX_BBXMAX": 135.858333, "MIN_BBYMIN": 34.64506, "MAX_BBYMIN": 34.783333, "MIN_BBYMAX": 35.1, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.743212, "MEAN_BBYC": 34.913171, "COMPARE": 0, "GN_ASCII": "Kyoto", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 22, "GN_POP": 1459640, "ELEVATION": 0, "GTOPO30": 86, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 313, "UN_ADM0": "Japan", "UN_LAT": 35, "UN_LONG": 135.75, "POP1950": 1002, "POP1955": 1091, "POP1960": 1165, "POP1965": 1229, "POP1970": 1298, "POP1975": 1622, "POP1980": 1701, "POP1985": 1714, "POP1990": 1760, "POP1995": 1804, "POP2000": 1806, "POP2005": 1805, "POP2010": 1805, "POP2015": 1804, "POP2020": 1804, "POP2025": 1804, "POP2050": 1804, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 135.747070, 35.029996 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.904614 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.904614 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ISO_A2": "MH", "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084, "MAX_POP20": 2084, "MAX_POP50": 2084, "MAX_POP300": 2084, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 20500, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ISO_A2": "MH", "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084, "MAX_POP20": 2084, "MAX_POP50": 2084, "MAX_POP300": 2084, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 20500, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } , { "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Tarawa", "DIFFASCII": 0, "NAMEASCII": "Tarawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kiribati", "SOV_A3": "KIR", "ADM0NAME": "Kiribati", "ADM0_A3": "KIR", "ISO_A2": "KI", "LATITUDE": 1.338188, "LONGITUDE": 173.017571, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 28802, "POP_MIN": 22534, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2110079, "LS_NAME": "Tarawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 22534, "MAX_POP20": 22534, "MAX_POP50": 22534, "MAX_POP300": 22534, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 28, "MAX_PERKM": 28, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": 172.966667, "MAX_BBXMIN": 172.966667, "MIN_BBXMAX": 173.058333, "MAX_BBXMAX": 173.058333, "MIN_BBYMIN": 1.325, "MAX_BBYMIN": 1.325, "MIN_BBYMAX": 1.358333, "MAX_BBYMAX": 1.358333, "MEAN_BBXC": 173.015476, "MEAN_BBYC": 1.33869, "COMPARE": 0, "GN_ASCII": "Tarawa", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 28802, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Tarawa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 173.012695, 1.340210 ] } } ] } diff --git a/tests/ne_110m_populated_places/out/-z4_-yNAME_-c.%2ftests%2ffilter%2fremove.json b/tests/ne_110m_populated_places/out/-z4_-yNAME_-c.%2ftests%2ffilter%2fremove.json index f00dd5850..5a1e7ef45 100644 --- a/tests/ne_110m_populated_places/out/-z4_-yNAME_-c.%2ftests%2ffilter%2fremove.json +++ b/tests/ne_110m_populated_places/out/-z4_-yNAME_-c.%2ftests%2ffilter%2fremove.json @@ -9,7 +9,7 @@ "maxzoom": "4", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-z4_-yNAME_-c.%2ftests%2ffilter%2fremove.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":251},{\"dropped_by_rate\":216},{\"dropped_by_rate\":146},{}]", +"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":251},{\"dropped_by_rate\":217},{\"dropped_by_rate\":145},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,17 +17,17 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 145.019531, -37.788081 ] } } ] } ] } , @@ -43,11 +43,11 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.959961, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } ] } @@ -59,11 +59,9 @@ , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.336914, -4.346411 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.966054 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -71,21 +69,23 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.819818 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.321349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.936523, 6.882800 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.488781 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -99,9 +99,7 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } ] } ] } , @@ -109,7 +107,7 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.792254 ] } } ] } ] } , @@ -119,19 +117,19 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.140360 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.479609 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.624512, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.788574, 6.315299 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -141,13 +139,13 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.716788 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -155,39 +153,39 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.159668, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.824708 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.173340, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.557417 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -195,9 +193,9 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } +{ "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -205,21 +203,19 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.626465, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.130371, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.027719 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.145992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } ] } ] } , @@ -229,11 +225,9 @@ , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.179932, 33.988918 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.671236 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.615478 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -247,11 +241,11 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } +{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.619873, -33.045508 ] } } , { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } , { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.858890 ] } } ] } @@ -263,23 +257,23 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.003174, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.157486 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.530029, 8.971897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.380615, 15.294783 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.204834, 13.143678 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.498614 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.512451, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -291,7 +285,9 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -307,19 +303,17 @@ , { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.194580, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -335,21 +329,23 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.340574 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.335456 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.916013 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.821916 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.710837 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.322960 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } ] } @@ -361,31 +357,33 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.184326, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.120361, 13.517838 ] } } , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.515869, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.394775, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.256104, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.936279, 31.952162 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.358356 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.704834, 9.037003 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } ] } ] } , @@ -393,39 +391,39 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.755615, 59.916483 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.339600, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.247983 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.007080, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.816916 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } , -{ "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.436516 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } ] } ] } , @@ -433,7 +431,7 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -441,29 +439,31 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } +, { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.197998, 15.358356 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.319076 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.614329 ] } } +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.160158 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , @@ -473,15 +473,13 @@ , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.802819 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -489,23 +487,23 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.073486, 30.666266 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.968283 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.853271, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } +{ "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.431885, 31.212801 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.760498, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } , -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } ] } ] } , @@ -529,7 +527,7 @@ , { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.135412 ] } } , { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.302571 ] } } ] } @@ -539,9 +537,11 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } , +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } +, { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.757080, 35.684072 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.023682, 1.340210 ] } } ] } ] } , diff --git a/tests/nullisland/out/-b0_-z4.json b/tests/nullisland/out/-b0_-z4.json index 77e26dcc0..068df9ebb 100644 --- a/tests/nullisland/out/-b0_-z4.json +++ b/tests/nullisland/out/-b0_-z4.json @@ -9,7 +9,7 @@ "maxzoom": "4", "minzoom": "0", "name": "tests/nullisland/out/-b0_-z4.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":4},{\"dropped_by_rate\":8},{\"dropped_by_rate\":8},{\"dropped_by_rate\":3},{}]", +"strategies": "[{\"dropped_by_rate\":4},{\"dropped_by_rate\":8},{\"dropped_by_rate\":8},{\"dropped_by_rate\":5},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -168,8 +168,6 @@ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, -0.999705 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.999756, 0.000000 ] } } ] } ] } , @@ -184,8 +182,6 @@ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 0.999705 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.999756, 0.000000 ] } } ] } ] } , diff --git a/tests/nullisland/out/-b0_-z4_-ANullIsland.json b/tests/nullisland/out/-b0_-z4_-ANullIsland.json index 0cb05bc70..5a7fc41c9 100644 --- a/tests/nullisland/out/-b0_-z4_-ANullIsland.json +++ b/tests/nullisland/out/-b0_-z4_-ANullIsland.json @@ -10,7 +10,7 @@ "maxzoom": "4", "minzoom": "0", "name": "tests/nullisland/out/-b0_-z4_-ANullIsland.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":4},{\"dropped_by_rate\":8},{\"dropped_by_rate\":8},{\"dropped_by_rate\":3},{}]", +"strategies": "[{\"dropped_by_rate\":4},{\"dropped_by_rate\":8},{\"dropped_by_rate\":8},{\"dropped_by_rate\":5},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -169,8 +169,6 @@ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, -0.999705 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.999756, 0.000000 ] } } ] } ] } , @@ -185,8 +183,6 @@ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 0.999705 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.999756, 0.000000 ] } } ] } ] } , diff --git a/tests/nullisland/out/-b0_-z4_-NNullIsland.json b/tests/nullisland/out/-b0_-z4_-NNullIsland.json index f089939dc..a00316121 100644 --- a/tests/nullisland/out/-b0_-z4_-NNullIsland.json +++ b/tests/nullisland/out/-b0_-z4_-NNullIsland.json @@ -9,7 +9,7 @@ "maxzoom": "4", "minzoom": "0", "name": "tests/nullisland/out/-b0_-z4_-NNullIsland.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":4},{\"dropped_by_rate\":8},{\"dropped_by_rate\":8},{\"dropped_by_rate\":3},{}]", +"strategies": "[{\"dropped_by_rate\":4},{\"dropped_by_rate\":8},{\"dropped_by_rate\":8},{\"dropped_by_rate\":5},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -168,8 +168,6 @@ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, -0.999705 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.999756, 0.000000 ] } } ] } ] } , @@ -184,8 +182,6 @@ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 0.999705 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.999756, 0.000000 ] } } ] } ] } , diff --git a/tests/wineries/out/-zg_-rp.json b/tests/wineries/out/-zg_-rp.json index 4a0968f25..44e38fbaf 100644 --- a/tests/wineries/out/-zg_-rp.json +++ b/tests/wineries/out/-zg_-rp.json @@ -9,7 +9,7 @@ "maxzoom": "12", "minzoom": "0", "name": "tests/wineries/out/-zg_-rp.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":64},{\"dropped_by_rate\":63},{\"dropped_by_rate\":62},{\"dropped_by_rate\":60},{\"dropped_by_rate\":57},{\"dropped_by_rate\":55},{\"dropped_by_rate\":52},{\"dropped_by_rate\":47},{\"dropped_by_rate\":50},{\"dropped_by_rate\":35},{\"dropped_by_rate\":25},{\"dropped_by_rate\":14},{}]", +"strategies": "[{\"dropped_by_rate\":64},{\"dropped_by_rate\":63},{\"dropped_by_rate\":62},{\"dropped_by_rate\":60},{\"dropped_by_rate\":57},{\"dropped_by_rate\":54},{\"dropped_by_rate\":51},{\"dropped_by_rate\":46},{\"dropped_by_rate\":49},{\"dropped_by_rate\":34},{\"dropped_by_rate\":25},{\"dropped_by_rate\":14},{}]", "tippecanoe_decisions": "{\"basezoom\":12,\"droprate\":1.30026,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" @@ -18,9 +18,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.750000, 40.245992 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } ] } ] } , @@ -28,11 +28,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.750000, 40.245992 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21120", "USER_OWNER": "VOLEURS DE VIN, LLC", "USER_OPERA": "VOLEURS DE VIN", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Voleurs De Vin, Llc", "Oper_cln": "Voleurs De Vin" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } ] } ] } , @@ -40,13 +40,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.771973, 40.245992 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21120", "USER_OWNER": "VOLEURS DE VIN, LLC", "USER_OPERA": "VOLEURS DE VIN", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Voleurs De Vin, Llc", "Oper_cln": "Voleurs De Vin" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.822802 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.735969 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22069", "USER_OWNER": "RUSSE WINE PARTNERS, LLC", "USER_OPERA": "MONTAGNE RUSSE", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Russe Wine Partners, Llc", "Oper_cln": "Montagne Russe" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.735969 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.735969 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.735969 ] } } ] } ] } , @@ -54,17 +54,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.760986, 40.245992 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21120", "USER_OWNER": "VOLEURS DE VIN, LLC", "USER_OPERA": "VOLEURS DE VIN", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Voleurs De Vin, Llc", "Oper_cln": "Voleurs De Vin" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.822802 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17354", "USER_OWNER": "PUG WINE, LLC", "USER_OPERA": "PUG WINE", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pug Wine, Llc", "Oper_cln": "Pug Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.762030 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.822802 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.744657 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22069", "USER_OWNER": "RUSSE WINE PARTNERS, LLC", "USER_OPERA": "MONTAGNE RUSSE", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Russe Wine Partners, Llc", "Oper_cln": "Montagne Russe" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.744657 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.744657 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.744657 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17266", "USER_OWNER": "DAN BALDWIN", "USER_OPERA": "THE SAN FRANCISCO BAY WINERY", "USER_STREE": "2029 RESEARCH DR", "USER_CITY": "LIVERMORE", "USER_STATE": "CA", "USER_ZIP": 94550, "USER_COUNT": "ALAMEDA", "Owner_cln": "Dan Baldwin", "Oper_cln": "The San Francisco Bay Winery" }, "geometry": { "type": "Point", "coordinates": [ -121.717529, 37.675125 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.727280 ] } } ] } ] } , @@ -78,21 +78,21 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.766479, 40.245992 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17549", "USER_OWNER": "MORGAN FAMILY WINES LLC", "USER_OPERA": "MORGAN FAMILY WINES", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Morgan Family Wines Llc", "Oper_cln": "Morgan Family Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.827141 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.827141 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21120", "USER_OWNER": "VOLEURS DE VIN, LLC", "USER_OPERA": "VOLEURS DE VIN", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Voleurs De Vin, Llc", "Oper_cln": "Voleurs De Vin" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.775057 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.827141 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17354", "USER_OWNER": "PUG WINE, LLC", "USER_OPERA": "PUG WINE", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pug Wine, Llc", "Oper_cln": "Pug Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.757687 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.822802 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22069", "USER_OWNER": "RUSSE WINE PARTNERS, LLC", "USER_OPERA": "MONTAGNE RUSSE", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Russe Wine Partners, Llc", "Oper_cln": "Montagne Russe" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.775057 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15425", "USER_OWNER": "BARBARA J. GRATTA", "USER_OPERA": "GRATTA WINES", "USER_STREE": "1469 HUDSON AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barbara J. Gratta", "Oper_cln": "Gratta Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17266", "USER_OWNER": "DAN BALDWIN", "USER_OPERA": "THE SAN FRANCISCO BAY WINERY", "USER_STREE": "2029 RESEARCH DR", "USER_CITY": "LIVERMORE", "USER_STATE": "CA", "USER_ZIP": 94550, "USER_COUNT": "ALAMEDA", "Owner_cln": "Dan Baldwin", "Oper_cln": "The San Francisco Bay Winery" }, "geometry": { "type": "Point", "coordinates": [ -121.723022, 37.679473 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.727280 ] } } ] } ] } , @@ -112,25 +112,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.766479, 40.245992 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17549", "USER_OWNER": "MORGAN FAMILY WINES LLC", "USER_OPERA": "MORGAN FAMILY WINES", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Morgan Family Wines Llc", "Oper_cln": "Morgan Family Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.824972 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17548", "USER_OWNER": "HDC WINE COMPANY LLC", "USER_OPERA": "HDC WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hdc Wine Company Llc", "Oper_cln": "Hdc Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.824972 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.824972 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.824972 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.824972 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21120", "USER_OWNER": "VOLEURS DE VIN, LLC", "USER_OPERA": "VOLEURS DE VIN", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Voleurs De Vin, Llc", "Oper_cln": "Voleurs De Vin" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17354", "USER_OWNER": "PUG WINE, LLC", "USER_OPERA": "PUG WINE", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pug Wine, Llc", "Oper_cln": "Pug Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.759859 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21023", "USER_OWNER": "ARAN O. HEALY AND DAVID G. GREGA", "USER_OPERA": "CARLOTTA CELLARS", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Aran O. Healy And David G. Grega", "Oper_cln": "Carlotta Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.759859 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21774", "USER_OWNER": "HERSLY WINES LLC", "USER_OPERA": "HERSLY WINES", "USER_STREE": "540 BARNEVELD AVE STE K, L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hersly Wines Llc", "Oper_cln": "Hersly Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22069", "USER_OWNER": "RUSSE WINE PARTNERS, LLC", "USER_OPERA": "MONTAGNE RUSSE", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Russe Wine Partners, Llc", "Oper_cln": "Montagne Russe" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22595", "USER_OWNER": "JOHN DAVID LOUIS BRY", "USER_OPERA": "PERFUSION VINEYARD", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "John David Louis Bry", "Oper_cln": "Perfusion Vineyard" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15425", "USER_OWNER": "BARBARA J. GRATTA", "USER_OPERA": "GRATTA WINES", "USER_STREE": "1469 HUDSON AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barbara J. Gratta", "Oper_cln": "Gratta Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.738141 ] } } -, -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17266", "USER_OWNER": "DAN BALDWIN", "USER_OPERA": "THE SAN FRANCISCO BAY WINERY", "USER_STREE": "2029 RESEARCH DR", "USER_CITY": "LIVERMORE", "USER_STATE": "CA", "USER_ZIP": 94550, "USER_COUNT": "ALAMEDA", "Owner_cln": "Dan Baldwin", "Oper_cln": "The San Francisco Bay Winery" }, "geometry": { "type": "Point", "coordinates": [ -121.720276, 37.679473 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.727280 ] } } ] } ] } , @@ -150,31 +152,33 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.765106, 40.247040 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17549", "USER_OWNER": "MORGAN FAMILY WINES LLC", "USER_OPERA": "MORGAN FAMILY WINES", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Morgan Family Wines Llc", "Oper_cln": "Morgan Family Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.826057 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16651", "USER_OWNER": "PB WINES, INC.", "USER_STREE": "1080 AVENUE M UNIT C", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pb Wines, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.829311 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.823887 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17548", "USER_OWNER": "HDC WINE COMPANY LLC", "USER_OPERA": "HDC WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hdc Wine Company Llc", "Oper_cln": "Hdc Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.826057 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22828", "USER_OWNER": "SURFACE AREA, LLC", "USER_OPERA": "WOODS BEER CO.", "USER_STREE": "422 CLIPPER COVE WAY", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "Owner_cln": "Surface Area, Llc", "Oper_cln": "Woods Beer Co." }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.817378 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.826057 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21120", "USER_OWNER": "VOLEURS DE VIN, LLC", "USER_OPERA": "VOLEURS DE VIN", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Voleurs De Vin, Llc", "Oper_cln": "Voleurs De Vin" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.776142 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.826057 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17354", "USER_OWNER": "PUG WINE, LLC", "USER_OPERA": "PUG WINE", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pug Wine, Llc", "Oper_cln": "Pug Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.758773 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.823887 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21023", "USER_OWNER": "ARAN O. HEALY AND DAVID G. GREGA", "USER_OPERA": "CARLOTTA CELLARS", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Aran O. Healy And David G. Grega", "Oper_cln": "Carlotta Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.758773 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15734", "USER_OWNER": "CARL E. & SHARON H. SUTTON", "USER_OPERA": "SUTTON CELLARS", "USER_STREE": "601 22ND ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Carl E. & Sharon H. Sutton", "Oper_cln": "Sutton Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.756601 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.776142 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17719", "USER_OWNER": "CHRISTOPHER VON HOLT AND PAMELA VON HOLT", "USER_OPERA": "VON HOLT WINES", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Christopher Von Holt And Pamela Von Holt", "Oper_cln": "Von Holt Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.754430 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22069", "USER_OWNER": "RUSSE WINE PARTNERS, LLC", "USER_OPERA": "MONTAGNE RUSSE", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Russe Wine Partners, Llc", "Oper_cln": "Montagne Russe" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21774", "USER_OWNER": "HERSLY WINES LLC", "USER_OPERA": "HERSLY WINES", "USER_STREE": "540 BARNEVELD AVE STE K, L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hersly Wines Llc", "Oper_cln": "Hersly Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23518", "USER_OWNER": "BAREBOTTLE BREWING COMPANY, INC.", "USER_OPERA": "BAREBOTTLE BREWING COMPANY", "USER_STREE": "1525 CORTLAND AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94110, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barebottle Brewing Company, Inc.", "Oper_cln": "Barebottle Brewing Company" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22454", "USER_OWNER": "ESS EFF WINES, LLC", "USER_OPERA": "ESS EFF WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCCO", "Owner_cln": "Ess Eff Wines, Llc", "Oper_cln": "Ess Eff Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.740313 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15425", "USER_OWNER": "BARBARA J. GRATTA", "USER_OPERA": "GRATTA WINES", "USER_STREE": "1469 HUDSON AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barbara J. Gratta", "Oper_cln": "Gratta Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738141 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22595", "USER_OWNER": "JOHN DAVID LOUIS BRY", "USER_OPERA": "PERFUSION VINEYARD", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "John David Louis Bry", "Oper_cln": "Perfusion Vineyard" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.740313 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17266", "USER_OWNER": "DAN BALDWIN", "USER_OPERA": "THE SAN FRANCISCO BAY WINERY", "USER_STREE": "2029 RESEARCH DR", "USER_CITY": "LIVERMORE", "USER_STATE": "CA", "USER_ZIP": 94550, "USER_COUNT": "ALAMEDA", "Owner_cln": "Dan Baldwin", "Oper_cln": "The San Francisco Bay Winery" }, "geometry": { "type": "Point", "coordinates": [ -121.721649, 37.679473 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.727280 ] } } ] } ] } , @@ -196,37 +200,39 @@ , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17255", "USER_OWNER": "MORNINGWOOD VINEYARDS AND WINERY, INC.", "USER_STREE": "NOT PROVIDED", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 0, "USER_COUNT": "Geocoded_city_Center", "Owner_cln": "Morningwood Vineyards And Winery, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.373276, 37.824430 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17549", "USER_OWNER": "MORGAN FAMILY WINES LLC", "USER_OPERA": "MORGAN FAMILY WINES", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Morgan Family Wines Llc", "Oper_cln": "Morgan Family Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.825514 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16651", "USER_OWNER": "PB WINES, INC.", "USER_STREE": "1080 AVENUE M UNIT C", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pb Wines, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.829311 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.824430 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17548", "USER_OWNER": "HDC WINE COMPANY LLC", "USER_OPERA": "HDC WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hdc Wine Company Llc", "Oper_cln": "Hdc Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.825514 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22828", "USER_OWNER": "SURFACE AREA, LLC", "USER_OPERA": "WOODS BEER CO.", "USER_STREE": "422 CLIPPER COVE WAY", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "Owner_cln": "Surface Area, Llc", "Oper_cln": "Woods Beer Co." }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.816836 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.825514 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.776685 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.825514 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21120", "USER_OWNER": "VOLEURS DE VIN, LLC", "USER_OPERA": "VOLEURS DE VIN", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Voleurs De Vin, Llc", "Oper_cln": "Voleurs De Vin" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.776685 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.824430 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17354", "USER_OWNER": "PUG WINE, LLC", "USER_OPERA": "PUG WINE", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pug Wine, Llc", "Oper_cln": "Pug Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.759316 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21023", "USER_OWNER": "ARAN O. HEALY AND DAVID G. GREGA", "USER_OPERA": "CARLOTTA CELLARS", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Aran O. Healy And David G. Grega", "Oper_cln": "Carlotta Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.759316 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.776685 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15734", "USER_OWNER": "CARL E. & SHARON H. SUTTON", "USER_OPERA": "SUTTON CELLARS", "USER_STREE": "601 22ND ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Carl E. & Sharon H. Sutton", "Oper_cln": "Sutton Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.757144 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21217", "USER_OWNER": "LOOS FAMILY WINERY, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Loos Family Winery, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.759316 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-21743", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.754973 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17719", "USER_OWNER": "CHRISTOPHER VON HOLT AND PAMELA VON HOLT", "USER_OPERA": "VON HOLT WINES", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Christopher Von Holt And Pamela Von Holt", "Oper_cln": "Von Holt Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.754973 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22069", "USER_OWNER": "RUSSE WINE PARTNERS, LLC", "USER_OPERA": "MONTAGNE RUSSE", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Russe Wine Partners, Llc", "Oper_cln": "Montagne Russe" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21774", "USER_OWNER": "HERSLY WINES LLC", "USER_OPERA": "HERSLY WINES", "USER_STREE": "540 BARNEVELD AVE STE K, L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hersly Wines Llc", "Oper_cln": "Hersly Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.740313 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23518", "USER_OWNER": "BAREBOTTLE BREWING COMPANY, INC.", "USER_OPERA": "BAREBOTTLE BREWING COMPANY", "USER_STREE": "1525 CORTLAND AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94110, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barebottle Brewing Company, Inc.", "Oper_cln": "Barebottle Brewing Company" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.740313 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-22193", "USER_OWNER": "URBAN CELLARS LLC", "USER_OPERA": "URBAN CELLARS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Urban Cellars Llc", "Oper_cln": "Urban Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22454", "USER_OWNER": "ESS EFF WINES, LLC", "USER_OPERA": "ESS EFF WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCCO", "Owner_cln": "Ess Eff Wines, Llc", "Oper_cln": "Ess Eff Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15425", "USER_OWNER": "BARBARA J. GRATTA", "USER_OPERA": "GRATTA WINES", "USER_STREE": "1469 HUDSON AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barbara J. Gratta", "Oper_cln": "Gratta Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.738684 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22595", "USER_OWNER": "JOHN DAVID LOUIS BRY", "USER_OPERA": "PERFUSION VINEYARD", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "John David Louis Bry", "Oper_cln": "Perfusion Vineyard" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17266", "USER_OWNER": "DAN BALDWIN", "USER_OPERA": "THE SAN FRANCISCO BAY WINERY", "USER_STREE": "2029 RESEARCH DR", "USER_CITY": "LIVERMORE", "USER_STATE": "CA", "USER_ZIP": 94550, "USER_COUNT": "ALAMEDA", "Owner_cln": "Dan Baldwin", "Oper_cln": "The San Francisco Bay Winery" }, "geometry": { "type": "Point", "coordinates": [ -121.721649, 37.679473 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.726737 ] } } ] } ] } , @@ -252,7 +258,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "USER_PERMI": "CA-W-23518", "USER_OWNER": "BAREBOTTLE BREWING COMPANY, INC.", "USER_OPERA": "BAREBOTTLE BREWING COMPANY", "USER_STREE": "1525 CORTLAND AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94110, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barebottle Brewing Company, Inc.", "Oper_cln": "Barebottle Brewing Company" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.740042 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15425", "USER_OWNER": "BARBARA J. GRATTA", "USER_OPERA": "GRATTA WINES", "USER_STREE": "1469 HUDSON AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barbara J. Gratta", "Oper_cln": "Gratta Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.738413 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.726737 ] } } ] } ] } , @@ -262,45 +268,47 @@ , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17255", "USER_OWNER": "MORNINGWOOD VINEYARDS AND WINERY, INC.", "USER_STREE": "NOT PROVIDED", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 0, "USER_COUNT": "Geocoded_city_Center", "Owner_cln": "Morningwood Vineyards And Winery, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.824701 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24229", "USER_OWNER": "WILLIAM LANE WINE COMPANY LLC", "USER_OPERA": "WILLIAM LANE WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201/RM 104", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94103, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "William Lane Wine Company Llc", "Oper_cln": "William Lane Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.825786 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16651", "USER_OWNER": "PB WINES, INC.", "USER_STREE": "1080 AVENUE M UNIT C", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pb Wines, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.829040 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17549", "USER_OWNER": "MORGAN FAMILY WINES LLC", "USER_OPERA": "MORGAN FAMILY WINES", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Morgan Family Wines Llc", "Oper_cln": "Morgan Family Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.825786 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17548", "USER_OWNER": "HDC WINE COMPANY LLC", "USER_OPERA": "HDC WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hdc Wine Company Llc", "Oper_cln": "Hdc Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.825786 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.824430 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.825786 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22828", "USER_OWNER": "SURFACE AREA, LLC", "USER_OPERA": "WOODS BEER CO.", "USER_STREE": "422 CLIPPER COVE WAY", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "Owner_cln": "Surface Area, Llc", "Oper_cln": "Woods Beer Co." }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.816836 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.825786 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.776414 ] } } -, -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17487", "USER_OWNER": "WAIT CELLARS, LLC", "USER_OPERA": "WAIT CELLARS", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Wait Cellars, Llc", "Oper_cln": "Wait Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.776414 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.824430 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21120", "USER_OWNER": "VOLEURS DE VIN, LLC", "USER_OPERA": "VOLEURS DE VIN", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Voleurs De Vin, Llc", "Oper_cln": "Voleurs De Vin" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.776414 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.777499 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17354", "USER_OWNER": "PUG WINE, LLC", "USER_OPERA": "PUG WINE", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pug Wine, Llc", "Oper_cln": "Pug Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.759316 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.776414 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-22659", "USER_OWNER": "HACKBERRY HILL CELLARS, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hackberry Hill Cellars, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.759316 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-21023", "USER_OWNER": "ARAN O. HEALY AND DAVID G. GREGA", "USER_OPERA": "CARLOTTA CELLARS", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Aran O. Healy And David G. Grega", "Oper_cln": "Carlotta Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.759316 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15734", "USER_OWNER": "CARL E. & SHARON H. SUTTON", "USER_OPERA": "SUTTON CELLARS", "USER_STREE": "601 22ND ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Carl E. & Sharon H. Sutton", "Oper_cln": "Sutton Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.757144 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21217", "USER_OWNER": "LOOS FAMILY WINERY, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Loos Family Winery, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.759316 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-21743", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.754973 ] } } , +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17719", "USER_OWNER": "CHRISTOPHER VON HOLT AND PAMELA VON HOLT", "USER_OPERA": "VON HOLT WINES", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Christopher Von Holt And Pamela Von Holt", "Oper_cln": "Von Holt Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.754973 ] } } +, { "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.740585 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22069", "USER_OWNER": "RUSSE WINE PARTNERS, LLC", "USER_OPERA": "MONTAGNE RUSSE", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Russe Wine Partners, Llc", "Oper_cln": "Montagne Russe" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.740585 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21774", "USER_OWNER": "HERSLY WINES LLC", "USER_OPERA": "HERSLY WINES", "USER_STREE": "540 BARNEVELD AVE STE K, L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hersly Wines Llc", "Oper_cln": "Hersly Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.740585 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23518", "USER_OWNER": "BAREBOTTLE BREWING COMPANY, INC.", "USER_OPERA": "BAREBOTTLE BREWING COMPANY", "USER_STREE": "1525 CORTLAND AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94110, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barebottle Brewing Company, Inc.", "Oper_cln": "Barebottle Brewing Company" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.740042 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.740585 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23922", "USER_OWNER": "OTTAVINO WINES LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "Owner_cln": "Ottavino Wines Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17327", "USER_OWNER": "WAITS-MAST FAMILY CELLARS, LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Waits-mast Family Cellars, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-22193", "USER_OWNER": "URBAN CELLARS LLC", "USER_OPERA": "URBAN CELLARS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Urban Cellars Llc", "Oper_cln": "Urban Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23055", "USER_OWNER": "MANSFIELD-DUNNE WINES, LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Mansfield-dunne Wines, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22454", "USER_OWNER": "ESS EFF WINES, LLC", "USER_OPERA": "ESS EFF WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCCO", "Owner_cln": "Ess Eff Wines, Llc", "Oper_cln": "Ess Eff Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22595", "USER_OWNER": "JOHN DAVID LOUIS BRY", "USER_OPERA": "PERFUSION VINEYARD", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "John David Louis Bry", "Oper_cln": "Perfusion Vineyard" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15425", "USER_OWNER": "BARBARA J. GRATTA", "USER_OPERA": "GRATTA WINES", "USER_STREE": "1469 HUDSON AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barbara J. Gratta", "Oper_cln": "Gratta Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.738413 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.726737 ] } } ] } ] } , @@ -320,13 +328,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "USER_PERMI": "CA-W-16651", "USER_OWNER": "PB WINES, INC.", "USER_STREE": "1080 AVENUE M UNIT C", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pb Wines, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.829040 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24229", "USER_OWNER": "WILLIAM LANE WINE COMPANY LLC", "USER_OPERA": "WILLIAM LANE WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201/RM 104", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94103, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "William Lane Wine Company Llc", "Oper_cln": "William Lane Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.825786 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17548", "USER_OWNER": "HDC WINE COMPANY LLC", "USER_OPERA": "HDC WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hdc Wine Company Llc", "Oper_cln": "Hdc Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.825786 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17549", "USER_OWNER": "MORGAN FAMILY WINES LLC", "USER_OPERA": "MORGAN FAMILY WINES", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Morgan Family Wines Llc", "Oper_cln": "Morgan Family Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.825786 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.825786 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.824430 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.825786 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22828", "USER_OWNER": "SURFACE AREA, LLC", "USER_OPERA": "WOODS BEER CO.", "USER_STREE": "422 CLIPPER COVE WAY", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "Owner_cln": "Surface Area, Llc", "Oper_cln": "Woods Beer Co." }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.816836 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.824430 ] } } ] } ] } , @@ -351,6 +359,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 198 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "USER_PERMI": "CA-W-21066", "USER_OWNER": "THE SAN FRANCISCO MEAD COMPANY, LLC", "USER_OPERA": "THE SAN FRANCISCO MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "USA", "Owner_cln": "The San Francisco Mead Company, Llc", "Oper_cln": "The San Francisco Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.726737 ] } } ] } ] } , @@ -360,59 +370,59 @@ , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17255", "USER_OWNER": "MORNINGWOOD VINEYARDS AND WINERY, INC.", "USER_STREE": "NOT PROVIDED", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 0, "USER_COUNT": "Geocoded_city_Center", "Owner_cln": "Morningwood Vineyards And Winery, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.824565 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24229", "USER_OWNER": "WILLIAM LANE WINE COMPANY LLC", "USER_OPERA": "WILLIAM LANE WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201/RM 104", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94103, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "William Lane Wine Company Llc", "Oper_cln": "William Lane Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825786 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16651", "USER_OWNER": "PB WINES, INC.", "USER_STREE": "1080 AVENUE M UNIT C", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pb Wines, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.829175 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17548", "USER_OWNER": "HDC WINE COMPANY LLC", "USER_OPERA": "HDC WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hdc Wine Company Llc", "Oper_cln": "Hdc Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825786 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17549", "USER_OWNER": "MORGAN FAMILY WINES LLC", "USER_OPERA": "MORGAN FAMILY WINES", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Morgan Family Wines Llc", "Oper_cln": "Morgan Family Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825786 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825786 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825786 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.824294 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22828", "USER_OWNER": "SURFACE AREA, LLC", "USER_OPERA": "WOODS BEER CO.", "USER_STREE": "422 CLIPPER COVE WAY", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "Owner_cln": "Surface Area, Llc", "Oper_cln": "Woods Beer Co." }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.816836 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.777499 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.776549 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21516", "USER_OWNER": "WEBSTER GRANGER MARQUEZ", "USER_OPERA": "PEDRO GOMEZ INDUSTRIES", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "Owner_cln": "Webster Granger Marquez", "Oper_cln": "Pedro Gomez Industries" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.776549 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17487", "USER_OWNER": "WAIT CELLARS, LLC", "USER_OPERA": "WAIT CELLARS", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Wait Cellars, Llc", "Oper_cln": "Wait Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.776549 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17377", "USER_OWNER": "ALCHEMIST CELLARS LLC", "USER_OPERA": "ALCHEMIST CELLARS", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Alchemist Cellars Llc", "Oper_cln": "Alchemist Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.776549 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21120", "USER_OWNER": "VOLEURS DE VIN, LLC", "USER_OPERA": "VOLEURS DE VIN", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Voleurs De Vin, Llc", "Oper_cln": "Voleurs De Vin" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.776549 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.776549 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17354", "USER_OWNER": "PUG WINE, LLC", "USER_OPERA": "PUG WINE", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pug Wine, Llc", "Oper_cln": "Pug Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.759180 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21880", "USER_OWNER": "SMASHING GRAPES, LLC", "USER_OPERA": "TIMARK WINES", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Smashing Grapes, Llc", "Oper_cln": "Timark Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.759180 ] } } -, { "type": "Feature", "properties": { "USER_PERMI": "CA-W-22659", "USER_OWNER": "HACKBERRY HILL CELLARS, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hackberry Hill Cellars, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.759180 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21023", "USER_OWNER": "ARAN O. HEALY AND DAVID G. GREGA", "USER_OPERA": "CARLOTTA CELLARS", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Aran O. Healy And David G. Grega", "Oper_cln": "Carlotta Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.759180 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17609", "USER_OWNER": "SEAMUS WINES, LLC", "USER_OPERA": "SEAMUS WINES", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Seamus Wines, Llc", "Oper_cln": "Seamus Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.759180 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21253", "USER_OWNER": "WINEDOCTORS, LLC", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Winedoctors, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.759180 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21023", "USER_OWNER": "ARAN O. HEALY AND DAVID G. GREGA", "USER_OPERA": "CARLOTTA CELLARS", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Aran O. Healy And David G. Grega", "Oper_cln": "Carlotta Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.759180 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15734", "USER_OWNER": "CARL E. & SHARON H. SUTTON", "USER_OPERA": "SUTTON CELLARS", "USER_STREE": "601 22ND ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Carl E. & Sharon H. Sutton", "Oper_cln": "Sutton Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.757008 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21217", "USER_OWNER": "LOOS FAMILY WINERY, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Loos Family Winery, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.759180 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-21743", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.754973 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17424", "USER_OWNER": "FURTHERMORE, LLC", "USER_OPERA": "FURTHERMORE PINOT NOIR", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Furthermore, Llc", "Oper_cln": "Furthermore Pinot Noir" }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.754973 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17719", "USER_OWNER": "CHRISTOPHER VON HOLT AND PAMELA VON HOLT", "USER_OPERA": "VON HOLT WINES", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Christopher Von Holt And Pamela Von Holt", "Oper_cln": "Von Holt Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.754973 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.740585 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21933", "USER_OWNER": "PHILIP CUADRA", "USER_OPERA": "HIGHLAWN WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "Owner_cln": "Philip Cuadra", "Oper_cln": "Highlawn Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.740585 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22069", "USER_OWNER": "RUSSE WINE PARTNERS, LLC", "USER_OPERA": "MONTAGNE RUSSE", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Russe Wine Partners, Llc", "Oper_cln": "Montagne Russe" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.740585 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.740585 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23518", "USER_OWNER": "BAREBOTTLE BREWING COMPANY, INC.", "USER_OPERA": "BAREBOTTLE BREWING COMPANY", "USER_STREE": "1525 CORTLAND AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94110, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barebottle Brewing Company, Inc.", "Oper_cln": "Barebottle Brewing Company" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.740042 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21774", "USER_OWNER": "HERSLY WINES LLC", "USER_OPERA": "HERSLY WINES", "USER_STREE": "540 BARNEVELD AVE STE K, L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hersly Wines Llc", "Oper_cln": "Hersly Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.740585 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23922", "USER_OWNER": "OTTAVINO WINES LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "Owner_cln": "Ottavino Wines Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.740585 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-23463", "USER_OWNER": "LES AMERICAINES LLC", "USER_OPERA": "CLAIRE HILL WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Les Americaines Llc", "Oper_cln": "Claire Hill Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } , +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17327", "USER_OWNER": "WAITS-MAST FAMILY CELLARS, LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Waits-mast Family Cellars, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +, { "type": "Feature", "properties": { "USER_PERMI": "CA-W-22193", "USER_OWNER": "URBAN CELLARS LLC", "USER_OPERA": "URBAN CELLARS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Urban Cellars Llc", "Oper_cln": "Urban Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23055", "USER_OWNER": "MANSFIELD-DUNNE WINES, LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Mansfield-dunne Wines, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22454", "USER_OWNER": "ESS EFF WINES, LLC", "USER_OPERA": "ESS EFF WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCCO", "Owner_cln": "Ess Eff Wines, Llc", "Oper_cln": "Ess Eff Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22595", "USER_OWNER": "JOHN DAVID LOUIS BRY", "USER_OPERA": "PERFUSION VINEYARD", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "John David Louis Bry", "Oper_cln": "Perfusion Vineyard" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24286", "USER_OWNER": "OUROBOROS WINES LLC", "USER_OPERA": "OUROBOROS WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Ouroboros Wines Llc", "Oper_cln": "Ouroboros Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15425", "USER_OWNER": "BARBARA J. GRATTA", "USER_OPERA": "GRATTA WINES", "USER_STREE": "1469 HUDSON AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barbara J. Gratta", "Oper_cln": "Gratta Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.385807, 37.738413 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.726737 ] } } ] } ] } , @@ -452,39 +462,37 @@ , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17255", "USER_OWNER": "MORNINGWOOD VINEYARDS AND WINERY, INC.", "USER_STREE": "NOT PROVIDED", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 0, "USER_COUNT": "Geocoded_city_Center", "Owner_cln": "Morningwood Vineyards And Winery, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.824565 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24229", "USER_OWNER": "WILLIAM LANE WINE COMPANY LLC", "USER_OPERA": "WILLIAM LANE WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201/RM 104", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94103, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "William Lane Wine Company Llc", "Oper_cln": "William Lane Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825786 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16651", "USER_OWNER": "PB WINES, INC.", "USER_STREE": "1080 AVENUE M UNIT C", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pb Wines, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.829175 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17548", "USER_OWNER": "HDC WINE COMPANY LLC", "USER_OPERA": "HDC WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hdc Wine Company Llc", "Oper_cln": "Hdc Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825786 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17549", "USER_OWNER": "MORGAN FAMILY WINES LLC", "USER_OPERA": "MORGAN FAMILY WINES", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Morgan Family Wines Llc", "Oper_cln": "Morgan Family Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825786 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825786 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825786 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24193", "USER_OWNER": "DE VIN, LLC", "USER_STREE": "995 9TH ST BLDG 201 RM 104", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "De Vin, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825786 ] } } -, { "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.367182, 37.824294 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-22828", "USER_OWNER": "SURFACE AREA, LLC", "USER_OPERA": "WOODS BEER CO.", "USER_STREE": "422 CLIPPER COVE WAY", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "Owner_cln": "Surface Area, Llc", "Oper_cln": "Woods Beer Co." }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.816904 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-21050", "USER_OWNER": "TANK WINES LLC", "USER_OPERA": "TANK WINES", "USER_STREE": "18 DORE ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94117, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Tank Wines Llc", "Oper_cln": "Tank Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.774107 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.776481 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.777431 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17487", "USER_OWNER": "WAIT CELLARS, LLC", "USER_OPERA": "WAIT CELLARS", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Wait Cellars, Llc", "Oper_cln": "Wait Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.776481 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21516", "USER_OWNER": "WEBSTER GRANGER MARQUEZ", "USER_OPERA": "PEDRO GOMEZ INDUSTRIES", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "Owner_cln": "Webster Granger Marquez", "Oper_cln": "Pedro Gomez Industries" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.776481 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21120", "USER_OWNER": "VOLEURS DE VIN, LLC", "USER_OPERA": "VOLEURS DE VIN", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Voleurs De Vin, Llc", "Oper_cln": "Voleurs De Vin" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.776481 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17377", "USER_OWNER": "ALCHEMIST CELLARS LLC", "USER_OPERA": "ALCHEMIST CELLARS", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Alchemist Cellars Llc", "Oper_cln": "Alchemist Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.776481 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.776481 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17354", "USER_OWNER": "PUG WINE, LLC", "USER_OPERA": "PUG WINE", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pug Wine, Llc", "Oper_cln": "Pug Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.759248 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17398", "USER_OWNER": "MICHAEL JAMES WINES, INC.", "USER_OPERA": "MICHAEL JAMES WINES", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Michael James Wines, Inc.", "Oper_cln": "Michael James Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.759248 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21880", "USER_OWNER": "SMASHING GRAPES, LLC", "USER_OPERA": "TIMARK WINES", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Smashing Grapes, Llc", "Oper_cln": "Timark Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.759248 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17354", "USER_OWNER": "PUG WINE, LLC", "USER_OPERA": "PUG WINE", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pug Wine, Llc", "Oper_cln": "Pug Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.759248 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-22659", "USER_OWNER": "HACKBERRY HILL CELLARS, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hackberry Hill Cellars, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.759248 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21023", "USER_OWNER": "ARAN O. HEALY AND DAVID G. GREGA", "USER_OPERA": "CARLOTTA CELLARS", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Aran O. Healy And David G. Grega", "Oper_cln": "Carlotta Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.759248 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17609", "USER_OWNER": "SEAMUS WINES, LLC", "USER_OPERA": "SEAMUS WINES", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Seamus Wines, Llc", "Oper_cln": "Seamus Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.759248 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21253", "USER_OWNER": "WINEDOCTORS, LLC", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Winedoctors, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.759248 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21023", "USER_OWNER": "ARAN O. HEALY AND DAVID G. GREGA", "USER_OPERA": "CARLOTTA CELLARS", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Aran O. Healy And David G. Grega", "Oper_cln": "Carlotta Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.759248 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-21217", "USER_OWNER": "LOOS FAMILY WINERY, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Loos Family Winery, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.759248 ] } } , @@ -492,35 +500,37 @@ , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-21743", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -122.389498, 37.754973 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17424", "USER_OWNER": "FURTHERMORE, LLC", "USER_OPERA": "FURTHERMORE PINOT NOIR", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Furthermore, Llc", "Oper_cln": "Furthermore Pinot Noir" }, "geometry": { "type": "Point", "coordinates": [ -122.389498, 37.754973 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17719", "USER_OWNER": "CHRISTOPHER VON HOLT AND PAMELA VON HOLT", "USER_OPERA": "VON HOLT WINES", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Christopher Von Holt And Pamela Von Holt", "Oper_cln": "Von Holt Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.389498, 37.754973 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17319", "USER_OWNER": "ERISTAVI WINERY LLC", "USER_STREE": "1300 POTRERO AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94110, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Eristavi Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.751105 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740585 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21933", "USER_OWNER": "PHILIP CUADRA", "USER_OPERA": "HIGHLAWN WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "Owner_cln": "Philip Cuadra", "Oper_cln": "Highlawn Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740585 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22069", "USER_OWNER": "RUSSE WINE PARTNERS, LLC", "USER_OPERA": "MONTAGNE RUSSE", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Russe Wine Partners, Llc", "Oper_cln": "Montagne Russe" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740585 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740585 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21705", "USER_OWNER": "CATHERINE COCHRANE, COURTNEY COCHRANE, AND SEAN COCHRANE", "USER_OPERA": "RYAN COCHRANE WINES", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Catherine Cochrane, Courtney Cochrane, And Sean Cochrane", "Oper_cln": "Ryan Cochrane Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740585 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21774", "USER_OWNER": "HERSLY WINES LLC", "USER_OPERA": "HERSLY WINES", "USER_STREE": "540 BARNEVELD AVE STE K, L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hersly Wines Llc", "Oper_cln": "Hersly Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740585 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23518", "USER_OWNER": "BAREBOTTLE BREWING COMPANY, INC.", "USER_OPERA": "BAREBOTTLE BREWING COMPANY", "USER_STREE": "1525 CORTLAND AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94110, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barebottle Brewing Company, Inc.", "Oper_cln": "Barebottle Brewing Company" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.740110 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740585 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-23922", "USER_OWNER": "OTTAVINO WINES LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "Owner_cln": "Ottavino Wines Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-23463", "USER_OWNER": "LES AMERICAINES LLC", "USER_OPERA": "CLAIRE HILL WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Les Americaines Llc", "Oper_cln": "Claire Hill Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } , +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17327", "USER_OWNER": "WAITS-MAST FAMILY CELLARS, LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Waits-mast Family Cellars, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, { "type": "Feature", "properties": { "USER_PERMI": "CA-W-22193", "USER_OWNER": "URBAN CELLARS LLC", "USER_OPERA": "URBAN CELLARS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Urban Cellars Llc", "Oper_cln": "Urban Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23055", "USER_OWNER": "MANSFIELD-DUNNE WINES, LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Mansfield-dunne Wines, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22454", "USER_OWNER": "ESS EFF WINES, LLC", "USER_OPERA": "ESS EFF WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCCO", "Owner_cln": "Ess Eff Wines, Llc", "Oper_cln": "Ess Eff Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22247", "USER_OWNER": "CJM WINE GROUP LLC", "USER_OPERA": "FALLON PLACE WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cjm Wine Group Llc", "Oper_cln": "Fallon Place Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22595", "USER_OWNER": "JOHN DAVID LOUIS BRY", "USER_OPERA": "PERFUSION VINEYARD", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "John David Louis Bry", "Oper_cln": "Perfusion Vineyard" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24286", "USER_OWNER": "OUROBOROS WINES LLC", "USER_OPERA": "OUROBOROS WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Ouroboros Wines Llc", "Oper_cln": "Ouroboros Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } -, -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15425", "USER_OWNER": "BARBARA J. GRATTA", "USER_OPERA": "GRATTA WINES", "USER_STREE": "1469 HUDSON AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barbara J. Gratta", "Oper_cln": "Gratta Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.738481 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15292", "USER_OWNER": "BRYAN RULISON HARRINGTON", "USER_OPERA": "HARRINGTON WINES", "USER_STREE": "1559 CUSTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Bryan Rulison Harrington", "Oper_cln": "Harrington Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.745675 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-21066", "USER_OWNER": "THE SAN FRANCISCO MEAD COMPANY, LLC", "USER_OPERA": "THE SAN FRANCISCO MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "USA", "Owner_cln": "The San Francisco Mead Company, Llc", "Oper_cln": "The San Francisco Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.726805 ] } } ] } ] } , @@ -560,13 +570,13 @@ , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17255", "USER_OWNER": "MORNINGWOOD VINEYARDS AND WINERY, INC.", "USER_STREE": "NOT PROVIDED", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 0, "USER_COUNT": "Geocoded_city_Center", "Owner_cln": "Morningwood Vineyards And Winery, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.372975, 37.824565 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24229", "USER_OWNER": "WILLIAM LANE WINE COMPANY LLC", "USER_OPERA": "WILLIAM LANE WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201/RM 104", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94103, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "William Lane Wine Company Llc", "Oper_cln": "William Lane Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825752 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16651", "USER_OWNER": "PB WINES, INC.", "USER_STREE": "1080 AVENUE M UNIT C", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pb Wines, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.368855, 37.829141 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17548", "USER_OWNER": "HDC WINE COMPANY LLC", "USER_OPERA": "HDC WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hdc Wine Company Llc", "Oper_cln": "Hdc Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825752 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-24253", "USER_OWNER": "MAYEAUX GRAPE CLINIC LLC", "USER_OPERA": "STAGIAIRE WINE", "USER_STREE": "995 9TH ST BLDG 201 RM 104", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Mayeaux Grape Clinic Llc", "Oper_cln": "Stagiaire Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825752 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17549", "USER_OWNER": "MORGAN FAMILY WINES LLC", "USER_OPERA": "MORGAN FAMILY WINES", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Morgan Family Wines Llc", "Oper_cln": "Morgan Family Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825752 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825752 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825752 ] } } , @@ -580,29 +590,29 @@ , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-21050", "USER_OWNER": "TANK WINES LLC", "USER_OPERA": "TANK WINES", "USER_STREE": "18 DORE ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94117, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Tank Wines Llc", "Oper_cln": "Tank Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.774107 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396836, 37.776481 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.777431 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-21516", "USER_OWNER": "WEBSTER GRANGER MARQUEZ", "USER_OPERA": "PEDRO GOMEZ INDUSTRIES", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "Owner_cln": "Webster Granger Marquez", "Oper_cln": "Pedro Gomez Industries" }, "geometry": { "type": "Point", "coordinates": [ -122.396836, 37.776481 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17487", "USER_OWNER": "WAIT CELLARS, LLC", "USER_OPERA": "WAIT CELLARS", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Wait Cellars, Llc", "Oper_cln": "Wait Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.396836, 37.776481 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21120", "USER_OWNER": "VOLEURS DE VIN, LLC", "USER_OPERA": "VOLEURS DE VIN", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Voleurs De Vin, Llc", "Oper_cln": "Voleurs De Vin" }, "geometry": { "type": "Point", "coordinates": [ -122.396836, 37.776481 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17377", "USER_OWNER": "ALCHEMIST CELLARS LLC", "USER_OPERA": "ALCHEMIST CELLARS", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Alchemist Cellars Llc", "Oper_cln": "Alchemist Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.396836, 37.776481 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396836, 37.776481 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-21396", "USER_OWNER": "KYLE ROEMER AND SAMANTHA ROEMER", "USER_OPERA": "NICHOLAS & RAE WINERY", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "Owner_cln": "Kyle Roemer And Samantha Roemer", "Oper_cln": "Nicholas & Rae Winery" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17354", "USER_OWNER": "PUG WINE, LLC", "USER_OPERA": "PUG WINE", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pug Wine, Llc", "Oper_cln": "Pug Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17398", "USER_OWNER": "MICHAEL JAMES WINES, INC.", "USER_OPERA": "MICHAEL JAMES WINES", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Michael James Wines, Inc.", "Oper_cln": "Michael James Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21880", "USER_OWNER": "SMASHING GRAPES, LLC", "USER_OPERA": "TIMARK WINES", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Smashing Grapes, Llc", "Oper_cln": "Timark Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17354", "USER_OWNER": "PUG WINE, LLC", "USER_OPERA": "PUG WINE", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pug Wine, Llc", "Oper_cln": "Pug Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-22659", "USER_OWNER": "HACKBERRY HILL CELLARS, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hackberry Hill Cellars, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-21270", "USER_OWNER": "HARDBALL CELLARS INC.", "USER_OPERA": "HARDBALL CELLARS", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hardball Cellars Inc.", "Oper_cln": "Hardball Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21023", "USER_OWNER": "ARAN O. HEALY AND DAVID G. GREGA", "USER_OPERA": "CARLOTTA CELLARS", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Aran O. Healy And David G. Grega", "Oper_cln": "Carlotta Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17609", "USER_OWNER": "SEAMUS WINES, LLC", "USER_OPERA": "SEAMUS WINES", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Seamus Wines, Llc", "Oper_cln": "Seamus Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21253", "USER_OWNER": "WINEDOCTORS, LLC", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Winedoctors, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21023", "USER_OWNER": "ARAN O. HEALY AND DAVID G. GREGA", "USER_OPERA": "CARLOTTA CELLARS", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Aran O. Healy And David G. Grega", "Oper_cln": "Carlotta Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-21217", "USER_OWNER": "LOOS FAMILY WINERY, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Loos Family Winery, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } , @@ -612,7 +622,7 @@ , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-21743", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.754939 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17424", "USER_OWNER": "FURTHERMORE, LLC", "USER_OPERA": "FURTHERMORE PINOT NOIR", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Furthermore, Llc", "Oper_cln": "Furthermore Pinot Noir" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.754939 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17719", "USER_OWNER": "CHRISTOPHER VON HOLT AND PAMELA VON HOLT", "USER_OPERA": "VON HOLT WINES", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Christopher Von Holt And Pamela Von Holt", "Oper_cln": "Von Holt Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.754939 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-17319", "USER_OWNER": "ERISTAVI WINERY LLC", "USER_STREE": "1300 POTRERO AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94110, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Eristavi Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.751138 ] } } , @@ -620,7 +630,7 @@ , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740551 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22069", "USER_OWNER": "RUSSE WINE PARTNERS, LLC", "USER_OPERA": "MONTAGNE RUSSE", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Russe Wine Partners, Llc", "Oper_cln": "Montagne Russe" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740551 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21774", "USER_OWNER": "HERSLY WINES LLC", "USER_OPERA": "HERSLY WINES", "USER_STREE": "540 BARNEVELD AVE STE K, L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hersly Wines Llc", "Oper_cln": "Hersly Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740551 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-21705", "USER_OWNER": "CATHERINE COCHRANE, COURTNEY COCHRANE, AND SEAN COCHRANE", "USER_OPERA": "RYAN COCHRANE WINES", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Catherine Cochrane, Courtney Cochrane, And Sean Cochrane", "Oper_cln": "Ryan Cochrane Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740551 ] } } , @@ -632,21 +642,21 @@ , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-23463", "USER_OWNER": "LES AMERICAINES LLC", "USER_OPERA": "CLAIRE HILL WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Les Americaines Llc", "Oper_cln": "Claire Hill Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } , +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17327", "USER_OWNER": "WAITS-MAST FAMILY CELLARS, LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Waits-mast Family Cellars, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, { "type": "Feature", "properties": { "USER_PERMI": "CA-W-22193", "USER_OWNER": "URBAN CELLARS LLC", "USER_OPERA": "URBAN CELLARS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Urban Cellars Llc", "Oper_cln": "Urban Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-22454", "USER_OWNER": "ESS EFF WINES, LLC", "USER_OPERA": "ESS EFF WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCCO", "Owner_cln": "Ess Eff Wines, Llc", "Oper_cln": "Ess Eff Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23055", "USER_OWNER": "MANSFIELD-DUNNE WINES, LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Mansfield-dunne Wines, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } -, { "type": "Feature", "properties": { "USER_PERMI": "CA-W-22247", "USER_OWNER": "CJM WINE GROUP LLC", "USER_OPERA": "FALLON PLACE WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cjm Wine Group Llc", "Oper_cln": "Fallon Place Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22595", "USER_OWNER": "JOHN DAVID LOUIS BRY", "USER_OPERA": "PERFUSION VINEYARD", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "John David Louis Bry", "Oper_cln": "Perfusion Vineyard" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17490", "USER_OWNER": "33RD STREET CELLARS, LLC", "USER_OPERA": "CELLARS 33", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "33rd Street Cellars, Llc", "Oper_cln": "Cellars 33" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-24286", "USER_OWNER": "OUROBOROS WINES LLC", "USER_OPERA": "OUROBOROS WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Ouroboros Wines Llc", "Oper_cln": "Ouroboros Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } , -{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15425", "USER_OWNER": "BARBARA J. GRATTA", "USER_OPERA": "GRATTA WINES", "USER_STREE": "1469 HUDSON AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barbara J. Gratta", "Oper_cln": "Gratta Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.738481 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15292", "USER_OWNER": "BRYAN RULISON HARRINGTON", "USER_OPERA": "HARRINGTON WINES", "USER_STREE": "1559 CUSTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Bryan Rulison Harrington", "Oper_cln": "Harrington Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.745675 ] } } , { "type": "Feature", "properties": { "USER_PERMI": "CA-W-21066", "USER_OWNER": "THE SAN FRANCISCO MEAD COMPANY, LLC", "USER_OPERA": "THE SAN FRANCISCO MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "USA", "Owner_cln": "The San Francisco Mead Company, Llc", "Oper_cln": "The San Francisco Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.726771 ] } } , diff --git a/unit.cpp b/unit.cpp index c8f364914..9cc7a0082 100644 --- a/unit.cpp +++ b/unit.cpp @@ -8,6 +8,11 @@ #include "geometry.hpp" #include #include +#include "drop.hpp" +#include "geometry.hpp" +#include "projection.hpp" + +unsigned int additional[256] = {0}; TEST_CASE("UTF-8 enforcement", "[utf8]") { REQUIRE(check_utf8("") == std::string("")); @@ -152,3 +157,121 @@ TEST_CASE("mvt_geometry bbox") { REQUIRE(start == 0x1c84fc0000000000); REQUIRE(end == 0x1c84ffffffffffff); } + +TEST_CASE("index structure packing", "[index]") { + REQUIRE(sizeof(struct index) == 32); +} + +TEST_CASE("prep drop states", "[prep_drop_state]") { + struct drop_state ds[25]; + + prep_drop_states(ds, 24, 16, 2); + REQUIRE(ds[24].interval == 1); + REQUIRE(ds[17].interval == 1); + REQUIRE(ds[16].interval == 1); + REQUIRE(ds[15].interval == 2); + REQUIRE(ds[14].interval == 4); + REQUIRE(ds[0].interval == 65536); +} + +TEST_CASE("select minzoom", "[calc_feature_minzoom]") { + const int maxzoom = 3; + + struct drop_state ds[maxzoom + 1]; + struct index ix; + long long wx, wy; + int minzoom; + + prep_drop_states(ds, maxzoom, maxzoom, 2); + ix.t = VT_POINT; + + lonlat2tile(-87.635236553223379, 41.84796128336411, 32, &wx, &wy); // Chicago + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Chicago %d\n", ix.ix, minzoom); + + lonlat2tile(-122.31532231603904, 47.600423319460475, 32, &wx, &wy); // Seattle + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Seattle %d\n", ix.ix, minzoom); + + lonlat2tile(-122.6819359, 45.5219697, 32, &wx, &wy); // Portland + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Portland %d\n", ix.ix, minzoom); + + lonlat2tile(-87.635236553223379, 41.84796128336411, 32, &wx, &wy); // Chicago + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Chicago %d\n", ix.ix, minzoom); + + lonlat2tile(-122.31532231603904, 47.600423319460475, 32, &wx, &wy); // Seattle + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Seattle %d\n", ix.ix, minzoom); + + lonlat2tile(-122.6819359, 45.5219697, 32, &wx, &wy); // Portland + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Portland %d\n", ix.ix, minzoom); + + lonlat2tile(-87.635236553223379, 41.84796128336411, 32, &wx, &wy); // Chicago + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Chicago %d\n", ix.ix, minzoom); + + lonlat2tile(-122.31532231603904, 47.600423319460475, 32, &wx, &wy); // Seattle + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Seattle %d\n", ix.ix, minzoom); + + lonlat2tile(-122.6819359, 45.5219697, 32, &wx, &wy); // Portland + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Portland %d\n", ix.ix, minzoom); + + lonlat2tile(-87.635236553223379, 41.84796128336411, 32, &wx, &wy); // Chicago + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Chicago %d\n", ix.ix, minzoom); + + lonlat2tile(-122.31532231603904, 47.600423319460475, 32, &wx, &wy); // Seattle + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Seattle %d\n", ix.ix, minzoom); + + lonlat2tile(-122.6819359, 45.5219697, 32, &wx, &wy); // Portland + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Portland %d\n", ix.ix, minzoom); + + lonlat2tile(-87.635236553223379, 41.84796128336411, 32, &wx, &wy); // Chicago + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Chicago %d\n", ix.ix, minzoom); + + lonlat2tile(-122.31532231603904, 47.600423319460475, 32, &wx, &wy); // Seattle + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Seattle %d\n", ix.ix, minzoom); + + lonlat2tile(-122.6819359, 45.5219697, 32, &wx, &wy); // Portland + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Portland %d\n", ix.ix, minzoom); + + lonlat2tile(-87.635236553223379, 41.84796128336411, 32, &wx, &wy); // Chicago + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Chicago %d\n", ix.ix, minzoom); + + lonlat2tile(-122.31532231603904, 47.600423319460475, 32, &wx, &wy); // Seattle + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Seattle %d\n", ix.ix, minzoom); + + lonlat2tile(-122.6819359, 45.5219697, 32, &wx, &wy); // Portland + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Portland %d\n", ix.ix, minzoom); +}